/* ============================================================================
   Quwa Editor Blocks — shared CTA + marquee styles
   Loaded for both Plus CTA and Pro CTA blocks.
   ============================================================================ */

.qeb-cta {
    --qeb-gold:        #D4A84B;
    --qeb-gold-dark:   #BC9333;
    --qeb-gold-darker: #8A6719;
    --qeb-gold-soft:   #FFD580;
    --qeb-teal:        #1F9CAC;
    --qeb-teal-dark:   #177A87;
    --qeb-teal-darker: #115F6A;
    --qeb-teal-soft:   #E8F6F8;
    --qeb-ink:         #1A1A2E;
    --qeb-ink-2:       #2A2A42;
    --qeb-ink-light:   #3D3D56;
    --qeb-ink-muted:   #6B6B80;
    --qeb-surface:     #FAFBFC;
    --qeb-surface-2:   #F2F4F8;
    --qeb-border:      #E2E4E8;
    --qeb-white:       #FFFFFF;
    --qeb-ease:        cubic-bezier(0.22, 0.61, 0.36, 1);

    --qeb-font-heading: 'Geist', 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --qeb-font-ui:      'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --qeb-font-body:    'Source Serif 4', Georgia, serif;

    position: relative;
    overflow: hidden;
    isolation: isolate;
    container-type: inline-size;
    container-name: qeb-cta;
    margin: 36px auto;
    padding: 32px 28px 0;
    border-radius: 12px;
    background: var(--qeb-white);
    color: var(--qeb-teal-dark);
    border: 1px solid var(--qeb-border);
    box-shadow: 0 4px 24px -12px rgba(23, 122, 135, 0.12);
}

/* Wide containers (WP post "wide" align or a roomy layout) — more generous spacing */
@container qeb-cta (min-width: 720px) {
    .qeb-cta {
        padding: 48px 48px 0;
        margin: 48px auto;
        border-radius: 14px;
    }
}

/* Tier accent stripe — left border hints at tier without overwhelming the card */
.qeb-cta--plus { border-left: 4px solid var(--qeb-teal); }
.qeb-cta--pro  { border-left: 4px solid var(--qeb-gold); }

.qeb-cta__grid {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
}

.qeb-cta__content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 32px;
}

.qeb-cta__buttons {
    justify-content: center !important;
}

.qeb-cta .qeb-cta__kicker {
    font-family: var(--qeb-font-body);
    font-style: italic;
    font-weight: 400;
    font-size: 1.25rem;
    color: var(--qeb-teal-dark) !important;
    margin: 0 0 14px;
    line-height: 1.3;
}

.qeb-cta .qeb-cta__heading {
    font-family: var(--qeb-font-heading);
    font-weight: 700;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.12;
    letter-spacing: -0.025em;
    margin: 0 0 16px;
    color: var(--qeb-teal-darker) !important;     /* #115F6A — AAA 7.28:1 on white */
}

.qeb-cta .qeb-cta__sub {
    font-family: var(--qeb-font-ui);
    font-size: 1.125rem;
    line-height: 1.55;
    color: var(--qeb-teal-dark) !important;        /* #177A87 — AA 5.9:1 on white */
    margin: 0 auto 28px;
    max-width: 580px;
}

.qeb-cta__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

/* ── Buttons ── */
.qeb-btn,
.qeb-btn:link,
.qeb-btn:visited,
.qeb-btn:hover,
.qeb-btn:active {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    min-height: 52px;
    font-family: var(--qeb-font-ui);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none !important;     /* defeat theme `a { text-decoration: underline }` */
    box-shadow: none;
    transition: transform 0.28s var(--qeb-ease), background 0.28s var(--qeb-ease), border-color 0.28s var(--qeb-ease);
}
.qeb-btn__arrow { transition: transform 0.25s var(--qeb-ease); }
.qeb-btn:hover .qeb-btn__arrow { transform: translateX(3px); }

.qeb-btn--primary,
.qeb-btn--primary:link,
.qeb-btn--primary:visited,
.qeb-btn--primary:active {
    background: var(--qeb-teal-dark);
    color: var(--qeb-white) !important;
    box-shadow: 0 10px 28px -10px rgba(23, 122, 135, 0.4);
}
.qeb-btn--primary:hover {
    background: var(--qeb-teal-darker);
    transform: translateY(-1px);
    color: var(--qeb-white) !important;
}
.qeb-btn--ghost {
    background: transparent;
    color: var(--qeb-teal-dark) !important;
    border: 1.5px solid var(--qeb-teal-dark);
}
.qeb-btn--ghost:hover {
    background: var(--qeb-teal-dark);
    color: var(--qeb-white) !important;
    border-color: var(--qeb-teal-dark);
}
.qeb-btn--gold {
    background: var(--qeb-teal-dark);
    color: var(--qeb-white) !important;
}
.qeb-btn--gold:hover {
    background: var(--qeb-teal-darker);
    color: var(--qeb-white) !important;
}

/* ── Dispatch signup form (hidden until toggle) ── */
.qeb-dispatch-form {
    max-width: 520px;
    margin: 8px auto 0;
    padding: 20px;
    background: var(--qeb-teal-soft);
    border: 1px solid rgba(23, 122, 135, 0.18);
    border-radius: 10px;
    animation: qeb-dispatch-in 0.28s var(--qeb-ease);
    text-align: left;
}
@keyframes qeb-dispatch-in {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}
.qeb-dispatch-form__label {
    display: block;
    font-family: var(--qeb-font-ui);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--qeb-teal-dark);
    margin: 0 0 10px;
}
.qeb-dispatch-form__row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.qeb-dispatch-form__input {
    flex: 1 1 200px;
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid rgba(23, 122, 135, 0.3);
    background: var(--qeb-white);
    color: var(--qeb-teal-darker);
    font-family: var(--qeb-font-ui);
    font-size: 1rem;
    min-height: 48px;
}
.qeb-dispatch-form__input::placeholder { color: rgba(23, 122, 135, 0.5); }
.qeb-dispatch-form__input:focus {
    outline: 2px solid var(--qeb-teal-dark);
    outline-offset: 2px;
}
.qeb-dispatch-form__submit { flex: 0 0 auto; }
.qeb-dispatch-form__hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}
.qeb-dispatch-form__fineprint {
    margin: 10px 0 0;
    font-size: 0.8125rem;
    color: var(--qeb-teal-dark);
    opacity: 0.78;
}
.qeb-dispatch-form__message {
    margin: 8px 0 0;
    font-size: 0.9375rem;
    min-height: 1.2em;
}
.qeb-dispatch-form__message.is-success { color: var(--qeb-teal-darker); font-weight: 600; }
.qeb-dispatch-form__message.is-error   { color: #C23843; }

/* ── "Featured & Trusted By" label above the marquee ── */
.qeb-cta__marquee-label {
    text-align: center;
    font-family: var(--qeb-font-ui);
    font-size: 0.8125rem !important;  /* 13px — chrome; exempt from body size scale */
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--qeb-teal-dark) !important;
    opacity: 0.7;
    margin: 12px 0 16px !important;
    border-top: 1px solid var(--qeb-border);
    padding-top: 24px;
    position: relative;
}
.qeb-cta__marquee-label::before,
.qeb-cta__marquee-label::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--qeb-teal-dark);
    opacity: 0.35;
    vertical-align: middle;
    margin: 0 12px 3px;
}

/* ── Horizontal marquee ── */
.qeb-cta__marquee {
    position: relative;
    height: 80px;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.qeb-marquee {
    position: absolute;
    inset: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.qeb-marquee__track {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 64px;
    padding: 0 32px;
    white-space: nowrap;
    animation: qeb-marquee-scroll 42s linear infinite;
    will-change: transform;
}
.qeb-cta:hover .qeb-marquee__track { animation-play-state: paused; }
@keyframes qeb-marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .qeb-marquee__track { animation: none; }
}

.qeb-marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 56px;
    width: auto;
    filter: grayscale(1) contrast(1.05);
    opacity: 0.65;
    transition: filter 0.3s var(--qeb-ease), opacity 0.3s var(--qeb-ease);
}
.qeb-marquee-item:hover {
    filter: grayscale(0) contrast(1);
    opacity: 1;
}
.qeb-marquee-item img {
    max-height: 36px;
    max-width: 180px;
    width: auto; height: auto;
    object-fit: contain;
    display: block;
}

.qeb-marquee__vignette { display: none; }

/* ═══════════════════════════════════════════════════════════════════════
   Pro variant — gold accents instead of teal.
   Placed AFTER the base .qeb-cta rules so source-order lets these win
   when tier = pro (both rules have matching !important + specificity).
   ═══════════════════════════════════════════════════════════════════════ */
.qeb-cta--pro .qeb-cta__kicker        { color: var(--qeb-gold-dark) !important; }
.qeb-cta--pro .qeb-cta__heading       { color: var(--qeb-gold-darker) !important; }  /* #A88126 — AA 5.5:1 on white */
.qeb-cta--pro .qeb-cta__sub           { color: var(--qeb-gold-darker) !important; }
.qeb-cta--pro .qeb-cta__marquee-label { color: var(--qeb-gold-dark) !important; }
.qeb-cta--pro .qeb-cta__marquee-label::before,
.qeb-cta--pro .qeb-cta__marquee-label::after { background: var(--qeb-gold-dark); }

.qeb-cta--pro .qeb-btn--primary {
    background: var(--qeb-gold);
    color: var(--qeb-ink) !important;
    box-shadow: 0 10px 28px -10px rgba(212, 168, 75, 0.45);
}
.qeb-cta--pro .qeb-btn--primary:hover { background: var(--qeb-gold-dark); color: var(--qeb-ink) !important; }

.qeb-cta--pro .qeb-btn--ghost {
    color: var(--qeb-gold-dark) !important;
    border-color: var(--qeb-gold-dark);
}
.qeb-cta--pro .qeb-btn--ghost:hover {
    background: var(--qeb-gold-dark);
    color: var(--qeb-white) !important;
    border-color: var(--qeb-gold-dark);
}

.qeb-cta--pro .qeb-btn--gold {
    background: var(--qeb-gold);
    color: var(--qeb-ink) !important;
}
.qeb-cta--pro .qeb-btn--gold:hover { background: var(--qeb-gold-dark); color: var(--qeb-ink) !important; }

.qeb-cta--pro .qeb-dispatch-form {
    background: #FFF4D8;
    border-color: rgba(188, 147, 51, 0.25);
}
.qeb-cta--pro .qeb-dispatch-form__label { color: var(--qeb-gold-dark); }
.qeb-cta--pro .qeb-dispatch-form__input {
    border-color: rgba(188, 147, 51, 0.35);
    color: var(--qeb-gold-darker);
}
.qeb-cta--pro .qeb-dispatch-form__input::placeholder { color: rgba(188, 147, 51, 0.55); }
.qeb-cta--pro .qeb-dispatch-form__input:focus { outline-color: var(--qeb-gold-dark); }
.qeb-cta--pro .qeb-dispatch-form__fineprint { color: var(--qeb-gold-dark); }
.qeb-cta--pro .qeb-dispatch-form__message.is-success { color: var(--qeb-gold-darker); }

/* Per-logo sizing tuned for the dark marquee */
.qeb-logo--cnn img       { max-height: 28px; }
.qeb-logo--bbc img       { max-height: 32px; }
.qeb-logo--france img    { max-height: 52px; max-width: 52px; width: 52px !important; height: 52px !important; }
.qeb-logo--dawn img      { max-height: 26px; }
.qeb-logo--cfr img       { max-height: 34px; }
.qeb-logo--rusi img      { max-height: 36px; }
.qeb-logo--stimson img   { max-height: 32px; }
.qeb-logo--jamestown img { max-height: 40px; }
.qeb-logo--leonardo img  { max-height: 26px; }
.qeb-logo--thales img    { max-height: 24px; max-width: 170px; }
.qeb-logo--elt img       { max-height: 42px; }
.qeb-logo--norinco img   { max-height: 34px; }
.qeb-logo--polish-mod img{ max-height: 62px; width: auto; }
.qeb-logo--add img       { width: 84px !important; height: auto !important; max-height: 46px; }
.qeb-logo--usip img      { max-height: 54px; }

/* Responsive */
@media (max-width: 720px) {
    .qeb-cta { padding: 32px 24px 0; }
    .qeb-cta__marquee { height: 80px; }
    .qeb-marquee__track { gap: 48px; }
    .qeb-marquee-item { height: 48px; }
    .qeb-marquee-item img { max-height: 30px; max-width: 150px; }
}

/* ============================================================================
   Article Reference block — container-aware
   Default (narrow post columns): stacked card with image on top.
   Wide containers (700px+): horizontal split.
   ============================================================================ */
.qeb-article-ref {
    container-type: inline-size;
    container-name: qeb-ref;
    margin: 32px 0;
    border: 1px solid var(--qeb-border, #E2E4E8);
    border-radius: 12px;
    overflow: hidden;
    background: #FFFFFF;
    transition: transform 0.3s var(--qeb-ease), box-shadow 0.3s var(--qeb-ease), border-color 0.3s var(--qeb-ease);
}
.qeb-article-ref:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -16px rgba(26, 26, 46, 0.18);
    border-color: var(--qeb-teal-dark, #177A87);
}
.qeb-article-ref__link,
.qeb-article-ref__link:link,
.qeb-article-ref__link:visited,
.qeb-article-ref__link:hover,
.qeb-article-ref__link * {
    text-decoration: none !important;      /* defeat theme link underline cascade */
}
.qeb-article-ref__link {
    display: flex;
    flex-direction: column;
    color: var(--qeb-ink, #1A1A2E);
}
.qeb-article-ref__media {
    order: -1;                      /* image on top for stacked layout */
    aspect-ratio: 16 / 9;
    width: 100%;
    background: #F2F4F8;
    overflow: hidden;
    position: relative;
}
.qeb-article-ref__media img {
    width: 100%;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center;
    display: block;
    transform: scale(1.08);
    transition: transform 0.45s var(--qeb-ease);
}
.qeb-article-ref:hover .qeb-article-ref__media img { transform: scale(1.12); }

.qeb-article-ref__content { padding: 22px 24px; display: flex; flex-direction: column; justify-content: center; }
.qeb-article-ref__header { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.qeb-article-ref__tag {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--qeb-teal-dark, #177A87);
    background: rgba(31, 156, 172, 0.08);
    padding: 5px 12px;
    border-radius: 3px;
}
.qeb-article-ref__date {
    font-family: 'IBM Plex Mono', 'IBM Plex Sans', monospace, sans-serif;
    font-size: 0.8125rem;
    color: var(--qeb-ink-muted, #6B6B80);
    letter-spacing: 0.05em;
    white-space: nowrap;
}
.qeb-article-ref__title {
    font-family: 'Geist', 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 10px;
    color: var(--qeb-ink, #1A1A2E);
}
.qeb-article-ref__excerpt {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--qeb-ink-light, #3D3D56);
    margin: 0 0 14px;
}
.qeb-article-ref__more {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--qeb-teal-dark, #177A87);
}

/* Wide containers: horizontal split with image on the right, image absolutely fills its cell */
@container qeb-ref (min-width: 640px) {
    .qeb-article-ref__link {
        display: grid;
        grid-template-columns: 1.15fr 1fr;
        min-height: 260px;               /* gives the image a sensible floor even with short content */
    }
    .qeb-article-ref__media {
        order: 0;
        aspect-ratio: auto;              /* drop the 16:9 constraint so cell can stretch freely */
        align-self: stretch;             /* fill grid row height */
        height: auto;
        min-height: 260px;
        position: relative;
    }
    .qeb-article-ref__media img {
        position: absolute;              /* escape intrinsic sizing — fill whatever height parent gets */
        inset: 0;
        width: 100%;
        height: 100% !important;
        object-fit: cover !important;    /* crops, never stretches — no distortion */
        object-position: center center;
    }
    .qeb-article-ref__content {
        padding: 28px 32px;
    }
    .qeb-article-ref__title { font-size: 1.5rem; }
}

/* Fallback for browsers without container query support: use viewport breakpoint. */
@supports not (container-type: inline-size) {
    @media (min-width: 900px) {
        .qeb-article-ref__link { display: grid; grid-template-columns: 1.15fr 1fr; min-height: 260px; }
        .qeb-article-ref__media {
            order: 0; aspect-ratio: auto; align-self: stretch;
            height: auto; min-height: 260px; position: relative;
        }
        .qeb-article-ref__media img {
            position: absolute; inset: 0; width: 100%; height: 100% !important;
            object-fit: cover !important; object-position: center center;
        }
        .qeb-article-ref__content { padding: 28px 32px; }
        .qeb-article-ref__title { font-size: 1.5rem; }
    }
}

/* ============================================================================
   Related-by-Tag slider block
   ============================================================================ */
.qeb-slider {
    margin: 48px 0;
    max-width: 100%;
}
.qeb-slider__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 16px;
}
.qeb-slider__title {
    font-family: 'Geist', 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--qeb-ink, #1A1A2E);
    margin: 0;
    letter-spacing: -0.02em;
}
.qeb-slider__arrows { display: flex; gap: 8px; }
.qeb-slider__arrow {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid var(--qeb-border, #E2E4E8);
    background: #fff;
    color: var(--qeb-teal-dark, #177A87) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-family: 'IBM Plex Sans', Arial, sans-serif;
    font-weight: 700;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.25s var(--qeb-ease);
}
.qeb-slider__arrow:hover { border-color: var(--qeb-gold, #D4A84B); color: var(--qeb-gold-dark, #BC9333) !important; }
.qeb-slider__arrow:disabled { opacity: 0.55; cursor: not-allowed; color: var(--qeb-ink-muted, #6B6B80) !important; }

.qeb-slider__track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    scrollbar-width: none;
}
.qeb-slider__track::-webkit-scrollbar { display: none; }

.qeb-slider__card,
.qeb-slider__card:link,
.qeb-slider__card:visited,
.qeb-slider__card:hover,
.qeb-slider__card * {
    text-decoration: none !important;
}
.qeb-slider__card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    border: 1px solid var(--qeb-border, #E2E4E8);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    color: var(--qeb-ink, #1A1A2E);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s var(--qeb-ease), box-shadow 0.3s var(--qeb-ease), border-color 0.3s var(--qeb-ease);
}
.qeb-slider__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -18px rgba(26, 26, 46, 0.18);
    border-color: var(--qeb-gold, #D4A84B);
}
.qeb-slider__media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #F2F4F8;
}
.qeb-slider__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--qeb-ease);
}
.qeb-slider__card:hover .qeb-slider__media img { transform: scale(1.06); }
.qeb-slider__body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.qeb-slider__badge {
    align-self: flex-start;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--qeb-teal-dark, #177A87);
    background: rgba(31, 156, 172, 0.08);
    padding: 4px 10px;
    border-radius: 3px;
    margin-bottom: 12px;
}
.qeb-slider__cardtitle {
    font-family: 'Geist', 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin: 0 0 10px;
    color: var(--qeb-ink, #1A1A2E);
}
.qeb-slider__excerpt {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--qeb-ink-light, #3D3D56);
    margin: 0 0 14px;
    flex: 1;
}
.qeb-slider__more {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--qeb-gold-dark, #BC9333);
}

/* ============================================================================
   Editor-only styles (Gutenberg preview)
   ============================================================================ */
.qeb-edit {
    background: #0E0E1A;
    color: #fff;
    padding: 28px 32px;
    border-radius: 10px;
    border: 1px solid #30305A;
}
.qeb-edit__kicker { font-family: 'Source Serif 4', serif; font-style: italic; color: #FFD580; margin-bottom: 8px; font-size: 1.1rem; }
.qeb-edit__heading { font-family: 'Geist', sans-serif; font-weight: 700; font-size: 1.5rem; margin-bottom: 10px; letter-spacing: -0.02em; }
.qeb-edit__sub { font-size: 0.95rem; color: rgba(255,255,255,0.72); margin-bottom: 14px; }
.qeb-edit__preview-note {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.55);
    border-top: 1px dashed rgba(255,255,255,0.18);
    padding-top: 10px;
}
.qeb-notice {
    padding: 18px 22px;
    border: 1px dashed #E2E4E8;
    border-radius: 8px;
    color: #6B6B80;
    font-family: 'IBM Plex Sans', sans-serif;
}
