/* Niyat quiz series — shared engine styles.
   Loaded AFTER /assets/styles.css on every /quizzes/* page, so it inherits
   --bg, --bg-elevated, --bg-card, --emerald, --cream, --cream-dim, --gold,
   --gold-soft, --line, --serif, --sans from the site shell. Every var() below
   carries a literal fallback so a page can render this file alone (the
   preview exemplars still load styles.css too, but this keeps the engine
   self-sufficient).

   Signature element: the result screen renders as an "ijazah" card, a small
   certificate of completion in the spirit of the scholarly transmission
   certificate, not a badge or confetti burst. Dignified gamification.

   Namespace: every class is prefixed qz- to avoid collision with site
   classes. Feedback colors are deliberately muted (sage / soft terracotta),
   never a harsh red, per the spec's dignity rule. */

.qz-root{
  --qz-correct:#3f6b4a;--qz-correct-bg:rgba(63,107,74,.10);--qz-correct-line:rgba(63,107,74,.35);
  --qz-incorrect:#9c4b3c;--qz-incorrect-bg:rgba(156,75,60,.08);--qz-incorrect-line:rgba(156,75,60,.30);
  max-width:600px;margin:0 auto;
}
/* The page's #quiz-engine mount sits under a sticky nav (~68px); engine.js
   scrolls it into view on start/next/try-again, so give it scroll-margin
   rather than relying on every template to remember. */
#quiz-engine{scroll-margin-top:88px}

/* ---------- meta chips + start button (static header) ---------- */
.qz-chips{display:flex;flex-wrap:wrap;gap:10px;margin:22px 0 32px;max-width:100%}
.qz-chip{display:inline-flex;align-items:center;gap:7px;padding:8px 14px;border-radius:100px;
  border:1px solid var(--line,rgba(18,51,33,.12));background:var(--bg-card,#fffdf8);
  font-family:var(--sans,Manrope,sans-serif);font-size:12.5px;font-weight:600;letter-spacing:.02em;
  color:var(--cream-dim,#42564a)}
.qz-chip .qz-chip-dot{width:5px;height:5px;border-radius:50%;background:var(--gold,#a1782f);flex-shrink:0}

.qz-start-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:16px 30px;border-radius:100px;border:0;cursor:pointer;
  background:var(--emerald,#0d2818);color:#f5f1e8;
  font-family:var(--sans,Manrope,sans-serif);font-weight:600;font-size:16px;letter-spacing:.01em;
  box-shadow:0 10px 26px -12px rgba(13,40,24,.45);
  transition:transform .2s ease,box-shadow .2s ease;
}
.qz-start-btn:hover{transform:translateY(-2px);box-shadow:0 14px 32px -12px rgba(13,40,24,.5)}
.qz-start-btn:active{transform:translateY(0)}
.qz-start-btn svg{width:16px;height:16px;transition:transform .2s ease}
.qz-start-btn:hover svg{transform:translateX(3px)}
.qz-start-btn[hidden]{display:none}

/* ---------- progress ---------- */
.qz-progress-row{display:flex;align-items:center;gap:12px;margin-bottom:28px}
.qz-progress-track{flex:1;height:3px;border-radius:3px;background:var(--line,rgba(18,51,33,.12));overflow:hidden}
.qz-progress-fill{height:100%;border-radius:3px;background:var(--gold,#a1782f);width:0;transition:width .4s cubic-bezier(.22,.61,.36,1)}
.qz-progress-label{flex-shrink:0;font-family:var(--sans,Manrope,sans-serif);font-size:12.5px;font-weight:700;
  letter-spacing:.04em;color:var(--cream-muted,#77857a);font-variant-numeric:tabular-nums}
.qz-score-live{flex-shrink:0;font-family:var(--sans,Manrope,sans-serif);font-size:12.5px;font-weight:700;
  color:var(--gold,#a1782f);font-variant-numeric:tabular-nums}

/* ---------- question card ---------- */
.qz-question-wrap{animation:qzIn .4s cubic-bezier(.22,.61,.36,1) both}
@keyframes qzIn{from{opacity:0;transform:translateY(12px)}to{opacity:1;transform:none}}
.qz-eyebrow{font-family:var(--sans,Manrope,sans-serif);font-size:11.5px;font-weight:700;letter-spacing:.18em;
  text-transform:uppercase;color:var(--gold,#a1782f);margin:0 0 14px}
.qz-question{font-family:var(--serif,Newsreader,Georgia,serif);font-weight:400;
  font-size:clamp(22px,5.6vw,30px);line-height:1.22;letter-spacing:-.01em;color:var(--cream,#123321);
  margin:0 0 28px;text-wrap:balance}

.qz-options{list-style:none;margin:0 0 4px;padding:0;display:flex;flex-direction:column;gap:12px}
.qz-option{
  display:flex;align-items:center;gap:14px;width:100%;text-align:left;
  padding:16px 18px;border-radius:14px;border:1px solid var(--line,rgba(18,51,33,.12));
  border-left:3px solid var(--line,rgba(18,51,33,.12));background:var(--bg-card,#fffdf8);
  font-family:var(--sans,Manrope,sans-serif);font-size:15.5px;font-weight:600;color:var(--cream-dim,#42564a);
  cursor:pointer;min-height:44px;
  transition:border-color .18s ease,background .18s ease,transform .18s ease,box-shadow .18s ease;
}
.qz-option:hover:not(:disabled){border-color:var(--gold-soft,#b89154);transform:translateY(-1px)}
.qz-option:active:not(:disabled){transform:translateY(0)}
.qz-option:focus-visible{outline:2px solid var(--gold,#a1782f);outline-offset:2px}
.qz-option-badge{flex-shrink:0;width:26px;height:26px;border-radius:50%;display:grid;place-items:center;
  font-family:var(--sans,Manrope,sans-serif);font-size:12px;font-weight:700;
  background:var(--bg-elevated,#f4ecdd);color:var(--cream-muted,#77857a);
  transition:background .18s ease,color .18s ease}
.qz-option-text{flex:1;line-height:1.4}
.qz-option-icon{flex-shrink:0;width:20px;height:20px;opacity:0;transform:scale(.6);transition:opacity .18s ease,transform .18s ease}

.qz-option.is-selected{border-left-color:var(--gold,#a1782f)}
.qz-option:disabled{cursor:default}
.qz-option.is-dim:disabled{opacity:.5}
.qz-option.is-correct{border-color:var(--qz-correct-line);border-left-color:var(--qz-correct);background:var(--qz-correct-bg);color:var(--cream,#123321)}
.qz-option.is-correct .qz-option-badge{background:var(--qz-correct);color:#fff}
.qz-option.is-correct .qz-option-icon.qz-icon-check{opacity:1;transform:scale(1);color:var(--qz-correct)}
.qz-option.is-incorrect{border-color:var(--qz-incorrect-line);border-left-color:var(--qz-incorrect);background:var(--qz-incorrect-bg);color:var(--cream,#123321)}
.qz-option.is-incorrect .qz-option-badge{background:var(--qz-incorrect);color:#fff}
.qz-option.is-incorrect .qz-option-icon.qz-icon-cross{opacity:1;transform:scale(1);color:var(--qz-incorrect)}

/* ---------- feedback + explanation ---------- */
.qz-feedback{margin-top:20px}
.qz-feedback-card{padding:18px 20px;border-radius:14px;background:var(--bg-elevated,#f4ecdd);
  border:1px solid var(--line,rgba(18,51,33,.12));animation:qzCardIn .35s cubic-bezier(.22,.61,.36,1) both}
@keyframes qzCardIn{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}
.qz-feedback-badge{display:inline-flex;align-items:center;gap:7px;font-family:var(--sans,Manrope,sans-serif);
  font-size:11.5px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;margin-bottom:10px}
.qz-feedback-card.is-correct .qz-feedback-badge{color:var(--qz-correct)}
.qz-feedback-card.is-incorrect .qz-feedback-badge{color:var(--qz-incorrect)}
.qz-explanation{font-family:var(--sans,Manrope,sans-serif);font-size:15px;line-height:1.6;color:var(--cream-dim,#42564a);margin:0}
.qz-source{display:block;margin-top:10px;font-family:var(--serif,Newsreader,Georgia,serif);font-style:italic;
  font-size:13.5px;color:var(--cream-muted,#77857a)}

.qz-next-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;width:100%;margin-top:20px;
  padding:16px 24px;border-radius:100px;border:0;cursor:pointer;
  background:var(--emerald,#0d2818);color:#f5f1e8;
  font-family:var(--sans,Manrope,sans-serif);font-weight:600;font-size:16px;letter-spacing:.01em;
  box-shadow:0 10px 26px -12px rgba(13,40,24,.4);
  transition:transform .2s ease,box-shadow .2s ease;
}
.qz-next-btn:hover{transform:translateY(-2px)}
.qz-next-btn:active{transform:translateY(0)}
.qz-next-btn svg{width:15px;height:15px}

/* ---------- result: the ijazah certificate ---------- */
.qz-result{animation:qzIn .45s cubic-bezier(.22,.61,.36,1) both}
.qz-cert{
  position:relative;margin:8px 0 28px;padding:44px 30px 36px;text-align:center;
  border-radius:20px;background:var(--bg-card,#fffdf8);
  box-shadow:0 24px 60px -32px rgba(13,40,24,.35);
}
.qz-cert::before{ /* outer hairline */
  content:"";position:absolute;inset:10px;border:1px solid var(--gold-soft,#b89154);border-radius:14px;pointer-events:none}
.qz-cert::after{ /* inner hairline, the double-rule of a certificate */
  content:"";position:absolute;inset:15px;border:1px solid var(--line,rgba(18,51,33,.12));border-radius:11px;pointer-events:none}
.qz-cert-seal{position:relative;width:52px;height:52px;margin:0 auto 18px;border-radius:50%;
  background:radial-gradient(circle at 32% 28%,var(--gold-soft,#b89154),var(--gold,#a1782f) 70%);
  display:grid;place-items:center;box-shadow:0 8px 18px -6px rgba(161,120,47,.5)}
.qz-cert-seal svg{width:24px;height:24px;color:#fffdf8}
.qz-cert-eyebrow{position:relative;font-family:var(--sans,Manrope,sans-serif);font-size:11px;font-weight:700;
  letter-spacing:.2em;text-transform:uppercase;color:var(--gold,#a1782f);margin:0 0 10px}
.qz-cert-score{position:relative;font-family:var(--serif,Newsreader,Georgia,serif);font-weight:400;
  font-size:clamp(38px,8vw,52px);line-height:1;letter-spacing:-.02em;color:var(--cream,#123321);margin:0 0 6px}
.qz-cert-score span{font-size:.42em;color:var(--cream-muted,#77857a);font-family:var(--sans,Manrope,sans-serif);font-weight:600;letter-spacing:.02em}
.qz-cert-tier{position:relative;font-family:var(--serif,Newsreader,Georgia,serif);font-style:italic;font-weight:400;
  font-size:clamp(20px,3.6vw,26px);color:var(--gold,#a1782f);margin:0 0 14px;text-wrap:balance}
.qz-cert-divider{position:relative;width:44px;height:1px;background:var(--gold-soft,#b89154);margin:0 auto 14px;opacity:.7}
.qz-cert-message{position:relative;font-family:var(--sans,Manrope,sans-serif);font-size:15px;line-height:1.6;
  color:var(--cream-dim,#42564a);max-width:38ch;margin:0 auto}

.qz-result-actions{display:flex;flex-direction:column;gap:12px;margin-bottom:8px}
.qz-btn-primary,.qz-btn-secondary,.qz-btn-ghost{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;width:100%;
  padding:16px 24px;border-radius:100px;font-family:var(--sans,Manrope,sans-serif);font-weight:600;
  font-size:15.5px;letter-spacing:.01em;cursor:pointer;text-decoration:none;border:0;
  transition:transform .2s ease,box-shadow .2s ease;
}
.qz-btn-primary{background:var(--emerald,#0d2818);color:#f5f1e8;box-shadow:0 10px 26px -12px rgba(13,40,24,.4)}
.qz-btn-primary:hover{transform:translateY(-2px)}
.qz-btn-secondary{background:var(--gold,#a1782f);color:#fffdf8;box-shadow:0 10px 26px -12px rgba(161,120,47,.35)}
.qz-btn-secondary:hover{transform:translateY(-2px)}
.qz-btn-ghost{background:transparent;color:var(--cream,#123321);box-shadow:inset 0 0 0 1px var(--line-strong,rgba(18,51,33,.20))}
.qz-btn-ghost:hover{box-shadow:inset 0 0 0 1px var(--gold,#a1782f)}
.qz-btn-primary:active,.qz-btn-secondary:active,.qz-btn-ghost:active{transform:translateY(0)}
.qz-btn-primary svg,.qz-btn-secondary svg,.qz-btn-ghost svg{width:16px;height:16px;flex-shrink:0}

/* WhatsApp is the proven one-tap share channel for this audience; it leads
   the result-screen actions, styled with WhatsApp's own green so it reads
   instantly, but kept to the same pill/weight system as the other buttons
   rather than a jarring brand insert. */
.qz-btn-whatsapp{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;width:100%;
  padding:16px 24px;border-radius:100px;border:0;cursor:pointer;text-decoration:none;
  background:#25995a;color:#fff;
  font-family:var(--sans,Manrope,sans-serif);font-weight:700;font-size:16px;letter-spacing:.01em;
  box-shadow:0 10px 26px -12px rgba(37,153,90,.45);
  transition:transform .2s ease,box-shadow .2s ease;
}
.qz-btn-whatsapp:hover{transform:translateY(-2px)}
.qz-btn-whatsapp:active{transform:translateY(0)}
.qz-btn-whatsapp svg{width:19px;height:19px;flex-shrink:0}

.qz-btn-share-alt{
  display:inline-flex;align-items:center;justify-content:center;width:100%;
  padding:10px 16px;border:0;background:none;cursor:pointer;
  font-family:var(--sans,Manrope,sans-serif);font-weight:600;font-size:13.5px;
  letter-spacing:.02em;color:var(--cream-muted,#77857a);
  transition:color .18s ease;
}
.qz-btn-share-alt:hover{color:var(--gold,#a1782f)}
.qz-share-note{text-align:center;font-size:12.5px;color:var(--cream-muted,#77857a);min-height:16px;margin:-2px 0 8px}

.qz-related-jump{display:block;text-align:center;margin-top:6px;font-family:var(--sans,Manrope,sans-serif);
  font-size:13.5px;font-weight:600;color:var(--gold,#a1782f)}
.qz-related-jump:hover{color:var(--gold-soft,#b89154)}

/* ---------- static "every question and answer" review section ---------- */
.qz-review{border-top:1px solid var(--line,rgba(18,51,33,.12));padding-top:8px}
.qz-review-item{border-top:1px solid var(--line,rgba(18,51,33,.12));padding:20px 0}
.qz-review-item:last-child{border-bottom:1px solid var(--line,rgba(18,51,33,.12))}
.qz-review-item summary{cursor:pointer;list-style:none;display:flex;justify-content:space-between;
  align-items:baseline;gap:16px;font-family:var(--serif,Newsreader,Georgia,serif);font-size:18px;
  font-weight:400;line-height:1.35;color:var(--cream,#123321)}
.qz-review-item summary::-webkit-details-marker{display:none}
.qz-review-item summary::after{content:"+";flex-shrink:0;font-family:var(--sans,Manrope,sans-serif);
  font-size:18px;color:var(--gold,#a1782f)}
.qz-review-item[open] summary::after{content:"\2013"}
.qz-review-answer{margin-top:12px;font-family:var(--sans,Manrope,sans-serif);font-size:14.5px;font-weight:700;
  color:var(--emerald,#0d2818)}
.qz-review-explanation{margin-top:6px;font-family:var(--sans,Manrope,sans-serif);font-size:14.5px;
  line-height:1.6;color:var(--cream-dim,#42564a)}
.qz-review-source{display:block;margin-top:6px;font-family:var(--serif,Newsreader,Georgia,serif);
  font-style:italic;font-size:13px;color:var(--cream-muted,#77857a)}

/* ---------- related quizzes cards (score page + related section) ---------- */
.qz-related-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
@media (max-width:720px){.qz-related-grid{grid-template-columns:1fr}}
.qz-related-card{display:block;padding:22px;border:1px solid var(--line,rgba(18,51,33,.12));
  border-radius:14px;background:var(--bg-card,#fffdf8);transition:border-color .2s ease,transform .2s ease}
.qz-related-card:hover{border-color:var(--gold,#a1782f);transform:translateY(-2px)}
.qz-related-card .qz-tag{display:block;font-size:11px;letter-spacing:.16em;text-transform:uppercase;
  color:var(--gold,#a1782f);margin-bottom:8px;font-family:var(--sans,Manrope,sans-serif);font-weight:700}
.qz-related-card h3{font-family:var(--serif,Newsreader,Georgia,serif);font-weight:400;font-size:19px;
  line-height:1.25;color:var(--cream,#123321);margin:0 0 6px}
.qz-related-card p{font-family:var(--sans,Manrope,sans-serif);font-size:13.5px;line-height:1.5;
  color:var(--cream-dim,#42564a);margin:0}

.qz-visually-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;
  clip:rect(0,0,0,0);white-space:nowrap;border:0}

@media (prefers-reduced-motion:reduce){
  .qz-question-wrap,.qz-feedback-card,.qz-result{animation:none}
  .qz-option,.qz-start-btn,.qz-next-btn,.qz-btn-primary,.qz-btn-secondary,.qz-btn-ghost{transition:none}
}

/* ==========================================================================
   Redesign (2026-08-31): emblem system + instant-engagement hero + hub.
   Goal: a first-time visitor on a 360-390px phone sees identity + a big
   Start within one viewport, near zero reading required. Intro prose moved
   out of the hero into #qz-about below the review section (still real,
   crawlable HTML — see quiz_page_template.html / build_quiz_pages.py).
   ========================================================================== */

/* ---------- emblem: shared by hero, hub cards, related cards ---------- */
.qz-emblem-svg{display:block;width:100%;height:100%}

/* ---------- quiz-page hero ---------- */
.qz-hero{margin:8px 0 4px;text-align:center;display:flex;flex-direction:column;align-items:center}
.qz-hero .eyebrow{justify-content:center}
.qz-emblem{width:76px;height:76px;margin:4px 0 18px;animation:qzIn .5s cubic-bezier(.22,.61,.36,1) both}
.qz-hero-h1{font-size:clamp(26px,6.2vw,42px);max-width:22ch}
.qz-chips-center{justify-content:center}
.qz-hero .qz-start-btn{margin-top:26px}
@media (prefers-reduced-motion:reduce){.qz-emblem{animation:none}}

/* ---------- About this quiz (former hero prose, relocated) ---------- */
.qz-about p.lead{margin:0 0 14px}
.qz-about p.lead:last-child{margin-bottom:0}

/* ---------- related-card emblem (quiz page + hub grid reuse this card) ---------- */
.qz-related-emblem{display:block;width:34px;height:34px;margin-bottom:12px}

/* ---------- hub: compact scanning grid ---------- */
.qz-hub-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
@media (max-width:900px){.qz-hub-grid{grid-template-columns:repeat(3,1fr)}}
@media (max-width:640px){.qz-hub-grid{grid-template-columns:repeat(2,1fr)}}
.qz-hub-card{
  display:flex;flex-direction:column;align-items:flex-start;gap:2px;
  padding:18px 16px;border:1px solid var(--line,rgba(18,51,33,.12));border-radius:14px;
  background:var(--bg-card,#fffdf8);min-height:44px;
  transition:border-color .2s ease,transform .2s ease;
}
.qz-hub-card:hover{border-color:var(--gold,#a1782f);transform:translateY(-2px)}
.qz-hub-card:focus-visible{outline:2px solid var(--gold,#a1782f);outline-offset:2px}
.qz-hub-card-emblem{display:block;width:40px;height:40px;margin-bottom:10px}
.qz-hub-card h3{font-family:var(--serif,Newsreader,Georgia,serif);font-weight:400;font-size:16.5px;
  line-height:1.25;color:var(--cream,#123321);margin:0}
.qz-hub-card-meta{font-family:var(--sans,Manrope,sans-serif);font-size:12px;font-weight:600;
  color:var(--cream-muted,#77857a);margin-top:4px}

/* ---------- hub: "Start here" featured card ---------- */
.qz-hub-featured{
  display:flex;align-items:center;gap:24px;padding:28px;border-radius:20px;
  background:var(--bg-card,#fffdf8);border:1px solid var(--line,rgba(18,51,33,.12));
  box-shadow:0 20px 48px -28px rgba(13,40,24,.3);
  transition:transform .2s ease,box-shadow .2s ease;
}
.qz-hub-featured:hover{transform:translateY(-2px);box-shadow:0 24px 56px -28px rgba(13,40,24,.38)}
.qz-hub-featured:focus-visible{outline:2px solid var(--gold,#a1782f);outline-offset:3px}
.qz-hub-featured-emblem{flex-shrink:0;display:block;width:84px;height:84px}
.qz-hub-featured-body{display:flex;flex-direction:column;align-items:flex-start;gap:6px}
.qz-hub-featured-body h2{font-family:var(--serif,Newsreader,Georgia,serif);font-weight:400;
  font-size:clamp(22px,3vw,28px);line-height:1.2;color:var(--cream,#123321);margin:0}
.qz-hub-featured .qz-hub-card-meta{margin-top:0}
.qz-hub-featured-btn{margin-top:10px;width:auto}
@media (max-width:560px){
  .qz-hub-featured{flex-direction:column;align-items:flex-start;text-align:left;padding:24px}
  .qz-hub-featured-emblem{width:64px;height:64px}
  .qz-hub-featured-btn{width:100%}
}

/* ---------- hub: legacy funnel strip, quieted ---------- */
.qz-legacy-label{font-family:var(--sans,Manrope,sans-serif);font-size:11.5px;font-weight:700;
  letter-spacing:.14em;text-transform:uppercase;color:var(--cream-muted,#77857a);margin:0 0 14px}
.qz-legacy-links{display:flex;flex-wrap:wrap;gap:8px 20px;padding-bottom:8px}
.qz-legacy-links a{font-family:var(--sans,Manrope,sans-serif);font-size:13.5px;font-weight:600;
  color:var(--cream-dim,#42564a);text-decoration:none;min-height:44px;display:inline-flex;align-items:center}
.qz-legacy-links a:hover{color:var(--gold,#a1782f)}

/* ==========================================================================
   Addendum (2026-08-31): hero artwork.
   Category-level AI art lands at assets/images/quiz/bg-<key>.jpg (dark
   emerald/gold, ~3:2), plus bg-hub.jpg for the hub. build_quiz_pages.py only
   emits the .qz-heroimg modifier class + the --qz-hero-bg custom property
   when the file exists on disk (build_hero_bg()); with no file, the element
   keeps its plain .qz-hero / .qz-hub-hero / .qz-hub-featured solid-color
   rules above, completely unaffected by anything below. So this block is
   additive and safe to ship before the art lands.
   ========================================================================== */
.qz-hub-hero{max-width:640px;margin:32px 0 32px}

.qz-hero.qz-heroimg,.qz-hub-hero.qz-heroimg,.qz-hub-featured.qz-heroimg{
  /* Local overrides: the emblem SVGs read var(--emerald)/var(--gold) for
     their line-art + roundel ring (see quiz_emblems.py), so scoping these
     three custom properties here re-colors every emblem inside a dark
     hero to a light/gold treatment with no changes to that file. */
  --emerald:#f4ecdd;--gold:#d9b878;--gold-soft:#e6c98f;
  background:
    linear-gradient(180deg,rgba(8,20,14,.70),rgba(8,20,14,.88)),
    var(--qz-hero-bg) center/cover no-repeat,
    #0d2818;
  color:#faf6ee;
}
.qz-hero.qz-heroimg .eyebrow,.qz-hub-hero.qz-heroimg .eyebrow{color:var(--gold);justify-content:center}
.qz-hub-hero.qz-heroimg .eyebrow{justify-content:flex-start}
.qz-hero.qz-heroimg .qz-hero-h1,.qz-hub-hero.qz-heroimg h1{color:#faf6ee}
.qz-hero.qz-heroimg .qz-chip{background:rgba(250,246,238,.09);border-color:rgba(250,246,238,.24);color:rgba(250,246,238,.82)}
.qz-hero.qz-heroimg .qz-chip-dot{background:var(--gold)}
.qz-hero.qz-heroimg .qz-start-btn,.qz-hub-featured.qz-heroimg .qz-hub-featured-btn{
  background:var(--gold);color:#1c1206;box-shadow:0 10px 26px -12px rgba(0,0,0,.5)}
.qz-hero.qz-heroimg .qz-start-btn:hover,.qz-hub-featured.qz-heroimg .qz-hub-featured-btn:hover{
  box-shadow:0 14px 32px -12px rgba(0,0,0,.55)}
.qz-hub-featured.qz-heroimg h2{color:#faf6ee}
.qz-hub-featured.qz-heroimg .qz-hub-card-meta{color:rgba(250,246,238,.78)}
.qz-hub-featured.qz-heroimg .qz-eyebrow{color:var(--gold)}

/* per-element chrome: padding/radius stay with the element that owns them */
.qz-hero.qz-heroimg{padding:48px 24px 44px;border-radius:24px}
.qz-hub-hero.qz-heroimg{padding:40px 32px;border-radius:24px}
.qz-hub-featured.qz-heroimg{border-color:transparent;box-shadow:0 24px 56px -30px rgba(0,0,0,.55)}
