/* ========================================
   Counters Section Styles
   ======================================== */

/* Desktop Styles */
.counters-section {
    padding: 150px 0 80px 0;
    background: #F8F7EC;
}

.counters-container {
    max-width: 1184px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

.counter-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 19px;
}

.counter-number {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    width: 100%;
}

.counter-number .number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1;
    color: #1F1F1F;
}

.counter-number .plus {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1;
    color: #FFCC29;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #1F1F1F;
    text-align: center;
    width: 100%;
    margin: 0;
}

/* Separator */
.counter-separator {
    width: 1px;
    height: 103px;
    background: linear-gradient(to bottom, transparent, #CBCBD0, transparent);
    flex-shrink: 0;
}

/* Mobile Styles */
@media (max-width: 480px) {
    .counters-section {
        padding: 150px 16px 40px 16px;
    }

    .counters-container {
        flex-direction: column;
        gap: 48px;
        padding: 0;
        max-width: 100%;
    }

    .counter-item {
        align-items: center;
        width: 100%;
    }

    .counter-number {
        justify-content: center;
    }

    .counter-label {
        text-align: center;
    }

    /* Mobile separator - horizontal line */
    .counter-separator {
        width: 100%;
        height: 1px;
        background: #CBCBD0;
    }
}
