.promo-banner {
    position: relative;
    z-index: 5;
    margin-top: 70px;
    padding: 14px 20px;
    background: #f8fafc;
    border-bottom: 1px solid rgba(15, 118, 110, 0.14);
}

.promo-chevron-right {
    transform: rotate(-90deg);
}

.promo-banner__container {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.promo-banner__link {
    width: 100%;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    min-height: 76px;
    padding: 15px 18px;
    overflow: hidden;
    border: 1px solid rgba(180, 125, 20, 0.36);
    border-radius: 8px;
    background: linear-gradient(105deg, #fff9e8 0%, #ffffff 48%, #edf9f4 100%);
    color: #172033;
    font: inherit;
    text-align: left;
    box-shadow: 0 10px 30px rgba(54, 42, 12, 0.09);
    cursor: pointer;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.promo-banner__link:hover {
    border-color: rgba(161, 105, 0, 0.58);
    box-shadow: 0 14px 34px rgba(54, 42, 12, 0.14);
    transform: translateY(-1px);
}

.promo-banner__link:focus-visible {
    outline: 3px solid #0f766e;
    outline-offset: 3px;
}

.promo-banner__badge,
.promo-banner__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    white-space: nowrap;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
}

.promo-banner__badge {
    padding: 0 17px;
    border-radius: 6px;
    background: #a46600;
    color: #ffffff;
    box-shadow: 0 7px 18px rgba(164, 102, 0, 0.2);
    text-transform: uppercase;
}

.promo-banner__text {
    min-width: 0;
    font-size: 16px;
    font-weight: 650;
    line-height: 1.48;
}

.promo-banner__action {
    padding: 0 16px;
    border: 1px solid rgba(15, 118, 110, 0.3);
    border-radius: 6px;
    background: #ffffff;
    color: #075e57;
}

.promo-modal[hidden] {
    display: none;
}

.promo-modal {
    position: fixed;
    inset: 0;
    z-index: 4000;
    display: grid;
    place-items: center;
    padding: 24px;
    overflow: hidden;
    overscroll-behavior: none;
}

.promo-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 18, 20, 0.72);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 180ms ease;
}

.promo-modal__dialog {
    position: relative;
    width: min(920px, 100%);
    max-height: calc(100vh - 48px);
    max-height: calc(100dvh - 48px);
    overflow: hidden;
    border: 1px solid rgba(180, 125, 20, 0.38);
    border-radius: 8px;
    background: #ffffff;
    color: #172033;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
    opacity: 0;
    transform: translateY(18px) scale(0.985);
    transition: opacity 180ms ease, transform 180ms ease;
}

.promo-modal__scroll {
    max-height: calc(100vh - 48px);
    max-height: calc(100dvh - 48px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
    -webkit-overflow-scrolling: touch;
}

.promo-modal.is-open .promo-modal__backdrop,
.promo-modal.is-open .promo-modal__dialog {
    opacity: 1;
}

.promo-modal.is-open .promo-modal__dialog {
    transform: translateY(0) scale(1);
}

.promo-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(15, 23, 42, 0.14);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.94);
    color: #172033;
    font: 32px/1 Arial, sans-serif;
    cursor: pointer;
}

.promo-modal__close:hover,
.promo-modal__close:focus-visible {
    background: #f2f7f5;
    outline: 3px solid rgba(15, 118, 110, 0.25);
}

.promo-modal__media {
    display: grid;
    place-items: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
    background: #eef4f1;
}

.promo-modal__media img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 650px;
    object-fit: contain;
}

.promo-modal__content {
    padding: 28px 32px 32px;
}

.promo-modal__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 13px;
    border-radius: 5px;
    background: #a46600;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.promo-modal__content h2 {
    margin: 16px 0 12px;
    color: #17372f;
    font-size: 30px;
    line-height: 1.18;
    letter-spacing: 0;
}

.promo-modal__content p {
    margin: 0;
    color: #33433f;
    font-size: 17px;
    line-height: 1.66;
}

.promo-modal__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    margin-top: 24px;
    padding: 11px 20px;
    border-radius: 6px;
    background: #0f766e;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
}

html[data-effective-theme] body .promo-modal__cta,
html[data-effective-theme] body .promo-modal__cta:hover,
html[data-effective-theme] body .promo-modal__cta:focus-visible {
    color: #ffffff !important;
}

.promo-modal__cta:hover {
    background: #0a5f59;
}

.promo-modal__cta:focus-visible {
    outline: 3px solid rgba(15, 118, 110, 0.3);
    outline-offset: 3px;
}

html.promo-modal-open {
    overflow: hidden !important;
    overscroll-behavior: none;
}

body.promo-modal-open {
    position: fixed !important;
    top: var(--promo-scroll-lock-top, 0) !important;
    right: 0;
    left: 0;
    width: 100%;
    overflow: hidden !important;
    overscroll-behavior: none;
}

html[data-effective-theme="dark"] .promo-banner {
    background: #101820;
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

html[data-effective-theme="dark"] .promo-banner__link {
    border-color: rgba(232, 184, 75, 0.38);
    background: linear-gradient(105deg, #302817 0%, #192128 48%, #12332d 100%);
    color: #f8fafc;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
}

html[data-effective-theme="dark"] .promo-banner__action {
    border-color: rgba(94, 234, 212, 0.25);
    background: rgba(255, 255, 255, 0.07);
    color: #99f6e4;
}

html[data-effective-theme="dark"] .promo-modal__dialog {
    border-color: rgba(232, 184, 75, 0.36);
    background: #182128;
    color: #f8fafc;
}

html[data-effective-theme="dark"] .promo-modal__close {
    border-color: rgba(255, 255, 255, 0.13);
    background: rgba(24, 33, 40, 0.94);
    color: #f8fafc;
}

html[data-effective-theme="dark"] .promo-modal__media {
    border-bottom-color: rgba(255, 255, 255, 0.08);
    background: #101820;
}

html[data-effective-theme="dark"] .promo-modal__content h2 {
    color: #f8fafc;
}

html[data-effective-theme="dark"] .promo-modal__content p {
    color: #d4dfdc;
}

@media (max-width: 820px) {
    .promo-banner {
        padding: 10px 12px;
    }

    .promo-banner__link {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 10px 12px;
        min-height: 0;
        padding: 13px;
    }

    .promo-banner__badge {
        align-self: start;
    }

    .promo-banner__text {
        font-size: 14px;
        line-height: 1.5;
    }

    .promo-banner__action {
        grid-column: 2;
        justify-self: start;
        min-height: 38px;
        padding-inline: 13px;
        font-size: 14px;
    }
}

@media (min-width: 769px) and (max-width: 1060px) {
    .promo-banner {
        margin-top: 80px;
    }
}

@media (max-width: 768px) {
    .promo-banner {
        margin-top: 62px;
    }
}

@media (max-width: 520px) {
    .promo-banner__link {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .promo-banner__badge,
    .promo-banner__action {
        align-self: flex-start;
    }

    .promo-banner__text {
        font-size: 14px;
    }

    .promo-modal {
        align-items: end;
        padding: 10px;
    }

    .promo-modal__dialog {
        max-height: calc(100vh - 20px);
        max-height: calc(100dvh - 20px);
    }

    .promo-modal__scroll {
        max-height: calc(100vh - 20px);
        max-height: calc(100dvh - 20px);
    }

    .promo-modal__content {
        padding: 22px 18px 24px;
    }

    .promo-modal__content h2 {
        padding-right: 42px;
        font-size: 24px;
    }

    .promo-modal__content p {
        font-size: 15px;
        line-height: 1.58;
    }

    .promo-modal__cta {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .promo-banner__link {
        transition: none;
    }

    .promo-modal__backdrop,
    .promo-modal__dialog {
        transition: none;
    }
}
