section.blocco-contatori .row:has(.col-contatore) {
    --bs-gutter-x: 2px;
    row-gap: 2px;
    position: relative;
}
section.blocco-contatori .row:has(.col-contatore):after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 4px;
    background-color: #fff;
}
section.blocco-contatori .col-contatore {
    position: relative;
}
section.blocco-contatori .col-contatore:after {
    content: "";
    width: calc(100% + 2px);
    height: 100%;
    background-color: #DAE2F2;
    position: absolute;
    left: -1px;
    bottom: -2px;
    z-index: -1;
    border-radius: 20px;
}
section.blocco-contatori .col-contatore .inner {
    background-color: #fff;
    height: 100%;
    padding: 32px;
}

section.blocco-contatori .col-contatore .top {
    display: flex;
    gap: 16px;
    align-items: center;
	margin-bottom: 8px;
}
section.blocco-contatori .col-contatore img.ico {
    width: 60px;
    height: 60px;
    object-fit: contain;
}
section.blocco-contatori .col-contatore .cont {
    font-family: var(--fontTesto);
    font-size: 64px;
    font-weight: 600;
    line-height: 75px;
    color: var(--eti-color-two);
    display: flex;
    align-items: baseline;
}
section.blocco-contatori .col-contatore .cont .unit {
	font-size: 28px;
    line-height: 32px;
}

@media (max-width: 991px){
	section.blocco-contatori .col-contatore .cont { font-size: 48px; }
	section.blocco-contatori .col-contatore .cont .unit { font-size: 24px; }
	section.blocco-contatori .col-contatore .inner {
		padding: 12px 32px;
	}
}