

.cqb {
    position: relative;
    height: var(--cq-banner-h, 300px);
    overflow: hidden;
    border-radius: 0;
    isolation: isolate;
}

.cqb__slide {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .7s ease, visibility .7s;
}

.cqb__slide.is-on {
    opacity: 1;
    visibility: visible;
}

.cqb__bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
}

.cqb__veil {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-image: radial-gradient(rgba(255, 255, 255, .10) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: .6;
}

.cqb__slide.is-on .cqb__veil {
    animation: cqbDrift 26s linear infinite;
}

.cqb__glow {
    position: absolute;
    top: -25%;
    right: -10%;
    z-index: 1;
    width: 60%;
    aspect-ratio: 1;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .5;
}

.cqb__slide.is-on .cqb__glow {
    animation: cqbBreathe 9s ease-in-out infinite;
}

.cqb__body {
    display: flex;
    position: relative;
    z-index: 2;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 0 clamp(24px, 6vw, 110px);
}

.cqb__body--right {
    align-items: flex-end;
    text-align: right;
}

.cqb-up {
    opacity: 0;
    transform: translateY(14px);
}

.cqb__slide.is-on .cqb-up {
    animation: cqbUp .7s cubic-bezier(.2, .7, .3, 1) forwards;
}

.cqb__slide.is-on .cqb-d1 { animation-delay: .10s; }

.cqb__slide.is-on .cqb-d2 { animation-delay: .22s; }

.cqb__slide.is-on .cqb-d3 { animation-delay: .34s; }

.cqb__slide.is-on .cqb-d4 { animation-delay: .46s; }

.cqb__ad {
    display: inline-flex;
    align-items: center;
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 4;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(15, 25, 35, .42);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    color: rgba(255, 255, 255, .95);
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    line-height: 1;
}

.cqb__ad--dark {
    background: rgba(15, 25, 35, .14);
    color: rgba(20, 33, 46, .75);
}

.cqb__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 11px 20px;
    border-radius: 999px;
    background: var(--cq-surface);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .16);
    color: var(--cq-text);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease;
}

.cqb__cta:hover,
.cqb__cta:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .22);
    color: var(--cq-text);
    text-decoration: none;
}

.cqb__cta i {
    font-style: normal;
    transition: transform .18s ease;
}

.cqb__cta:hover i {
    transform: translateX(3px);
}

.cqb__cta--ink {
    background: var(--cq-dark);
    color: #ffffff;
}

.cqb__cta--ink:hover,
.cqb__cta--ink:focus {
    color: #ffffff;
}

.cqb__dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    position: absolute;
    right: 0;
    bottom: 12px;
    left: 0;
    z-index: 4;
}

.cqb__dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .55);
    box-shadow: 0 0 0 1px rgba(20, 33, 46, .14);
    cursor: pointer;
    transition: width .25s ease, background .25s ease;
}

.cqb__dot.is-on {
    width: 22px;
    border-radius: 999px;
    background: var(--cq-surface);
}

.cqb__bar {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 4;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, .2);
}

.cqb__bar i {
    display: block;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, .9);
}

.cqb.is-playing .cqb__bar i {
    animation: cqbBar 6s linear forwards;
}

.cqb__nav {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(15, 25, 35, .32);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    color: #ffffff;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    opacity: 0;
    transform: translateY(-50%);
    transition: opacity .2s ease;
}

.cqb:hover .cqb__nav {
    opacity: 1;
}

.cqb__nav--prev { left: 10px; }

.cqb__nav--next { right: 10px; }

.cqb--leaf .cqb__bg { background: linear-gradient(135deg, var(--cq-green) 0%, var(--cq-green) 100%); }

.cqb--leaf .cqb__glow { background: var(--cq-green); }

.cqb--teal .cqb__bg { background: linear-gradient(135deg, var(--cq-green) 0%, var(--cq-green) 100%); }

.cqb--teal .cqb__glow { background: var(--cq-green); }

.cqb--cam .cqb__bg { background: linear-gradient(135deg, #ff8f3d 0%, #e8590c 100%); }

.cqb--cam .cqb__glow { background: #ffbd85; }

.cqb--sgl .cqb__bg { background: linear-gradient(135deg, #f5c518 0%, #e0ac00 100%); }

.cqb--sgl .cqb__glow { background: #fff08a; }

.cqb--sgl .cqb__veil {
    background-image: radial-gradient(rgba(20, 33, 46, .10) 1px, transparent 1px);
    opacity: .45;
}

.cqb__t1 {
    margin: 0;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(34px, 6vw, 58px);
    font-weight: 400;
    line-height: 1;
}

.cqb__t2 {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, .92);
    font-size: clamp(13px, 1.7vw, 19px);
    font-style: italic;
}

.cqb__t3 {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, .72);
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
}

.cqb__t1s {
    margin: 0;
    color: rgba(255, 255, 255, .9);
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(10px, 1.4vw, 15px);
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.cqb__t2b {
    margin: 4px 0 0;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(22px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.05;
}

.cqb__t2b em {
    color: #f5b731;
    font-style: normal;
}

.cqb__t3g {
    margin: 4px 0 0;
    color: #f5b731;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(12px, 1.6vw, 17px);
    font-weight: 700;
}

.cqb--sgl .cqb__t1 {
    color: var(--cq-text);
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(32px, 5.5vw, 56px);
    font-weight: 300;
    letter-spacing: .08em;
}

.cqb__t2s {
    margin: 7px 0 0;
    color: rgba(42, 34, 5, .72);
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(9px, 1.2vw, 13px);
    font-weight: 600;
    letter-spacing: .34em;
    text-transform: uppercase;
}

.cqb--sgl .cqb__t3 {
    color: rgba(42, 34, 5, .6);
    font-weight: 600;
}

@media (max-width: 1279px) {
    .cqb__body {
        padding-top: 34px;
        padding-bottom: 24px;
    }
    .cqb__ad {
        top: 10px;
        left: 10px;
    }

    .cqb__t3 {
        display: none;
    }
    .cqb__t1 {
        font-size: 30px;
    }
    .cqb--sgl .cqb__t1 {
        font-size: 30px;
    }
    .cqb__t2b {
        font-size: 21px;
    }
    .cqb__t2,
    .cqb__t2s {
        margin-top: 5px;
    }
    .cqb__cta {
        margin-top: 10px;
        padding: 9px 15px;
        font-size: 12px;
    }

    .cqb__dots {
        top: 13px;
        right: 12px;
        bottom: auto;
        left: auto;
        justify-content: flex-end;
    }
    .cqb__body {
        padding-bottom: 14px;
    }
}

.profile-menu ul li > a,
.profile-menu ul li > .Button {
    display: flex !important;
    align-items: center;
    gap: 10px;
}
.profile-menu ul li > a > svg.cq-ic,
.profile-menu ul li > a > .cq-ic,
.profile-menu ul li > .Button svg.cq-ic {
    order: -1;
    flex: 0 0 auto;
}

@media (min-width: 768px) {
    .profile-menu ul li.show-mobi { display: none !important; }
}

@keyframes cqbDrift {
    to { background-position: 180px 90px; }
}

@keyframes cqbBreathe {
    0%, 100% { transform: scale(1); opacity: .42; }
    50% { transform: scale(1.18); opacity: .62; }
}

@keyframes cqbUp {
    to { opacity: 1; transform: none; }
}

@keyframes cqbBar {
    to { width: 100%; }
}

.cqb--gold .cqb__bg {
    background: linear-gradient(135deg, #f5c518 0%, #e0ac00 100%);
}

.cqb--gold .cqb__glow {
    background: #fff08a;
}

.cqb--gold .cqb__veil {
    background-image: radial-gradient(rgba(20, 33, 46, .10) 1px, transparent 1px);
    opacity: .45;
}

.cqb--gold .cqb__t1 {
    color: #2a2205;
}

.cqb--gold .cqb__t3 {
    color: rgba(42, 34, 5, .6);
    font-weight: 600;
}

.cqb--navy .cqb__bg {
    background: linear-gradient(135deg, #1b2a38 0%, #33556b 100%);
}

.cqb--navy .cqb__glow {
    background: #5f87a3;
}

.wrap-banner-main,
.wrap-banner-full,
.mag-banner,
.nv-banner {
    margin-left: calc(-1 * var(--cq-gutter));
    margin-right: calc(-1 * var(--cq-gutter));
    padding-left: 0;
    padding-right: 0;
}
