.promo-banner-section {
    padding: 24px 0 0;
}

.promo-banner {
    display: flex;
    align-items: center;
    gap: 12px 20px;
    width: 100%;
    min-height: 96px;
    padding: 20px 28px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(17, 96, 76, 0.05);
}

.promo-banner__icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    color: var(--color-main, #2C9A78);
    background: rgba(44, 154, 120, 0.1);
    border-radius: 50%;
}

.promo-banner__icon--special {
    background: none;
}

.promo-banner__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.promo-banner__text {
    flex: 0 1 auto;
    min-width: 0;
}

.promo-banner__title {
    color: var(--color-main, #2C9A78);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 2px;
}

.promo-banner__subtitle {
    color: #6b6b6b;
    font-size: 1.6rem;
    line-height: 1.3;
}

.promo-banner__timer {
    display: flex;
    align-items: flex-end;
    gap: 9px;
    flex: 0 0 auto;
    margin: 0 auto;
}

.promo-banner__unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.promo-banner__label {
    color: #a0a0a0;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 2px;
}

.promo-banner__value {
    color: var(--color-main, #2C9A78);
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.promo-banner__sep {
    color: var(--color-main, #2C9A78);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1;
}

.promo-banner__btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 11px 26px;
    border: 1.5px solid var(--color-main, #2C9A78);
    border-radius: 999px;
    color: var(--color-main, #2C9A78);
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.promo-banner__btn:hover,
.promo-banner__btn:focus {
    background: var(--color-main, #2C9A78);
    color: #fff;
    text-decoration: none;
}

.promo-page__subtitle {
    color: #6b6b6b;
    font-size: 1.8rem;
    margin: 0 0 24px;
}

@media (max-width: 1199.98px) {
    .promo-banner__timer {
        margin: 0 0 0 auto;
    }
}

@media (max-width: 991.98px) {
    .promo-banner {
        flex-wrap: wrap;
    }

    .promo-banner__text {
        flex: 1 1 auto;
    }

    .promo-banner__timer {
        margin: 0;
    }

    .promo-banner__btn {
        margin-left: auto;
    }
}

@media (max-width: 767.98px) {
    .promo-banner-section {
        padding: 16px 0 0;
    }

    .promo-banner {
        padding: 14px 16px;
        min-height: 0;
        border-radius: 12px;
        gap: 14px 14px;
    }

    .promo-banner__icon {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
    }

    .promo-banner__title {
        font-size: 1.7rem;
    }

    .promo-banner__subtitle {
        font-size: 1.3rem;
    }

    .promo-banner__text {
        flex: 1 1 calc(100% - 56px);
    }

    .promo-banner__timer {
        width: 100%;
        justify-content: space-between;
        gap: 2px;
    }

    .promo-banner__unit {
        min-width: 0;
        flex: 1 1 auto;
    }

    .promo-banner__label {
        font-size: 1.1rem;
    }

    .promo-banner__value {
        font-size: 2.4rem;
    }

    .promo-banner__sep {
        font-size: 2.2rem;
    }

    .promo-banner__btn {
        width: 100%;
        margin-left: 0;
    }
}
