/* ==========================================
   БЛОК БАННЕРОВ С ЦИФРАМИ (COUNT BANNERS)
   ========================================== */

.count-banners {
    margin: 30px 0px 50px 0px;
}

.count-banner-row {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 20px;
}

.count-banner-column {
    border-radius: 20px;
    background-color: #FCF9F7;
    text-align: center;
    padding: 50px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    
    /* Плавный переход для ховера */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                background-color 0.4s ease;
    will-change: transform, box-shadow;
}

.count-banner-column .cnt { 
    font-size: 75px;
    color: #ED5338;
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 10px;
    display: block;
    
    /* Плавное увеличение цифры */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.count-banner-column .text { 
    font-size: 24px;
    font-weight: 700;
    line-height: 130%;
    color: #231C1A;
}


/* ==========================================
   ЭФФЕКТЫ НАВЕДЕНИЯ (ТОЛЬКО ПК)
   ========================================== */

@media (hover: hover) and (pointer: fine) {
    .count-banner-column:hover {
        transform: translateY(-8px);
        background-color: #FFFFFF;
        box-shadow: 0 20px 40px rgba(35, 28, 26, 0.08);
    }

    .count-banner-column:hover .cnt {
        transform: scale(1.08);
    }
}


/* ==========================================
   АДАПТИВНОСТЬ
   ========================================== */

@media (max-width: 768px) {
    .count-banner-row {
        grid-template-columns: 1fr;
    }
    
    .count-banner-column {
        padding: 30px 20px;
    }

    .count-banner-column .cnt {
        font-size: 55px;
    }

    .count-banner-column .text {
        font-size: 18px;
        line-height: 130%;
    }
}