:root {
    --bg: #7e1020;
    --bg-deep: #65101b;
    --line: rgba(255, 255, 255, 0.14);
    --text: #fff6f4;
    --muted: rgba(255, 246, 244, 0.82);
    --accent: #ffd9d2;
    --shadow: 0 16px 42px rgba(47, 2, 10, 0.22);
}
.page__banner2 {
    position: sticky;
    display: none;
    top: 0;
    z-index: 100;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(135deg, var(--bg) 0%, var(--bg-deep) 100%);
    background-size: 36px 36px, auto;
    background-position: center;
}

.page__banner2 .page__banner_wrapper2 {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    align-items: center;
    gap: 16px;
    min-height: 88px;
    padding-top: 18px;
    padding-bottom: 18px;
}

.page__banner2 .page__banner_copy2 {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.page__banner2 .page__banner_title2 {
    font-size: clamp(1em, 1.15vw, 1.18em);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--text);
}

.page__banner2 .page__banner_text2 {
    max-width: 680px;
    font-size: 0.93em;
    line-height: 1.45;
    color: var(--muted);
    padding: 0;
}

.page__banner2 .page__banner_actions2 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.page__banner2 .page__banner_link2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
    text-decoration: none;
    font-size: 0.92em;
    font-weight: 700;
    letter-spacing: -0.02em;
    white-space: nowrap;
    transition: background-color 180ms ease, border-color 180ms ease;
}

.page__banner2 .page__banner_link2:hover {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.14);
}

.page__banner2 .page__banner_link2 svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.page__banner2 .page__banner_link2 svg.max_svg {
    width: 24px;
    height: 24px;
}

.page__banner2 .page__banner_close2 {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    cursor: pointer;
    transition: background-color 180ms ease, border-color 180ms ease;
}

.page__banner2 .page__banner_close2:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.24);
}

.page__banner2 .page__banner_close2 svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 1024px) {
    .page__banner2 .page__banner_wrapper2 {
        grid-template-columns: 1fr auto auto;
    }
}

@media (max-width: 768px) {
    .page__banner2 .container {
        padding: 0 16px;
    }

    .page__banner2 .page__banner_wrapper2 {
        grid-template-columns: 1fr auto;
        gap: 12px;
        min-height: auto;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .page__banner2 .page__banner_copy2,
    .page__banner2 .page__banner_actions2 {
        grid-column: 1 / 2;
    }

    .page__banner2 .page__banner_actions2 {
        width: 100%;
    }

    .page__banner2 .page__banner_link2 {
        width: 100%;
        justify-content: center;
    }

    .page__banner2 .page__banner_close2 {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        align-self: start;
    }
}

@media (max-width: 480px) {
    .page__banner2 .page__banner_title2 {
        font-size: 0.98em;
    }

    .page__banner2 .page__banner_text2 {
        font-size: 0.9em;
    }

    .page__banner2 .page__banner_link2 {
        min-height: 44px;
        padding: 0 14px;
        font-size: 0.9em;
    }

    .page__banner2 .page__banner_close2 {
        width: 40px;
        height: 40px;
        border-radius: 14px;
    }
}