/* Promotional banner: centered on desktop, compact on mobile. */
.ak-promo-banner {
    --promo-accent: #e7a920;
    --promo-surface: #181a19;
    --promo-border: rgba(255, 255, 255, .12);
    background:
        linear-gradient(135deg, rgba(231, 169, 32, .16), rgba(255, 255, 255, 0) 42%),
        var(--promo-surface);
    border: 1px solid var(--promo-border);
    border-left: 4px solid var(--promo-accent);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .42);
    box-sizing: border-box;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    left: 50%;
    max-width: 560px;
    min-height: 138px;
    overflow: hidden;
    padding: 34px 72px 34px 38px;
    position: fixed;
    right: auto;
    text-align: left;
    top: 50%;
    transform: translate(-50%, -50%) scale(.96);
    width: min(560px, calc(100vw - 48px));
    z-index: 1035;
    animation: promoBannerInDesktop .34s ease forwards;
}

.ak-promo-banner::after {
    background: linear-gradient(90deg, var(--promo-accent), rgba(231, 169, 32, 0));
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 100%;
}

.ak-promo-banner.is-dismissed {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(.96);
    transition: opacity .2s ease, transform .2s ease;
}

.ak-promo-banner__title {
    color: #fff;
    display: block;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.18;
    overflow-wrap: anywhere;
    text-transform: uppercase;
}

.ak-promo-banner__subtitle {
    color: #d8d8d8;
    display: block;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.55;
    margin-top: 9px;
    overflow-wrap: anywhere;
}

.ak-promo-banner__close {
    align-items: center;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    color: #f5f5f5;
    cursor: pointer;
    display: inline-flex;
    font-size: 24px;
    height: 38px;
    justify-content: center;
    line-height: 1;
    padding: 0;
    position: absolute;
    right: 14px;
    top: 14px;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
    width: 38px;
}

.ak-promo-banner__close:hover,
.ak-promo-banner__close:focus-visible {
    background: var(--promo-accent);
    border-color: var(--promo-accent);
    color: #1d1d1f;
    outline: none;
}

@keyframes promoBannerInDesktop {
    from {
        opacity: 0;
        transform: translate(-50%, calc(-50% - 18px)) scale(.96);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@media (max-width: 767.98px) {
    .ak-promo-banner {
        left: 14px;
        max-width: none;
        min-height: 96px;
        padding: 18px 52px 18px 18px;
        right: 14px;
        top: 78px;
        transform: translateY(-10px);
        width: auto;
        animation: promoBannerInMobile .32s ease forwards;
    }

    .ak-promo-banner.is-dismissed {
        transform: translateY(-14px);
    }

    .ak-promo-banner__title {
        font-size: 20px;
        line-height: 1.22;
    }

    .ak-promo-banner__subtitle {
        font-size: 13px;
    }
}

@media (max-width: 380px) {
    .ak-promo-banner__title {
        font-size: 18px;
    }
}

@keyframes promoBannerInMobile {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
