/* Editorial-style landing page template
   - Inspired by modern magazine layouts (header/nav, article, right rail).
   - Use your own branding; do not copy trademarks/logos.
*/

:root{
  --bg: #ffffff;
  --text: #111111;
  --muted: #555;
  --line: #e8e8e8;
  --soft: #f6f6f6;
  --soft2: #f2f2f2;
  --brand: #e10600; /* tweak this */
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --radius: 16px;
  --radius2: 22px;
  --container: 1160px;
  --serif: "Merriweather", ui-serif, Georgia, serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

/* Utility bar */
.utility{
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.utility__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 12px;
}
.utility__left{ display: flex; gap: 14px; flex-wrap: wrap; }
.utility__link{
  font-size: 13px;
  color: var(--muted);
}
.utility__right{ display: flex; gap: 10px; }

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .08s ease, background .12s ease, border-color .12s ease;
  font-size: 14px;
}
.btn:active{ transform: translateY(1px); }
.btn--solid{ background: var(--brand); color: #fff; }
.btn--solid:hover{ filter: brightness(.95); text-decoration: none; }
.btn--ghost{ background: transparent; border-color: var(--line); }
.btn--ghost:hover{ background: var(--soft); text-decoration: none; }
.btn--sm{ padding: 8px 12px; font-size: 13px; }
.btn--full{ width: 100%; }

/* Progress bar */
.progress{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  z-index: 9999;
}
.progress__bar{
  height: 100%;
  width: 0%;
  background: var(--brand);
}

/* Header */
.siteHeader{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__row{
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
}
.iconBtn{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.iconBtn:hover{ background: var(--soft); }
.iconBtn svg{ fill: currentColor; }
.header__actions{ display: flex; gap: 10px; align-items: center; }

.burger{
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
  display: block;
}
.burger::before,.burger::after{
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
}
.burger::before{ top: -6px; }
.burger::after{ top: 6px; }

.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: center;
}
.brand__mark{
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #111;
  color: #fff;
  font-weight: 800;
  letter-spacing: .5px;
}
.brand__text{
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .2px;
}
.topNav{
  border-top: 1px solid var(--line);
}
.topNav__inner{
  display: flex;
  gap: 18px;
  overflow: auto;
  padding: 10px 0;
  scrollbar-width: none;
}
.topNav__inner::-webkit-scrollbar{ display: none; }
.topNav__link{
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .9px;
  white-space: nowrap;
  color: #222;
}
.topNav__link:hover{ color: var(--brand); text-decoration: none; }

/* Drawer */
.overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 1500;
}
.drawer{
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: min(360px, 92vw);
  background: #fff;
  z-index: 1600;
  transform: translateX(-105%);
  transition: transform .18s ease;
  border-right: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 14px;
  display: flex;
  flex-direction: column;
}
.drawer.isOpen{ transform: translateX(0); }
.drawer__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.drawer__brand{ display: inline-flex; align-items: center; gap: 10px; }
.drawer__content{ padding: 12px 0; overflow: auto; }
.drawer__label{
  margin: 10px 0 8px;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .8px;
}
.drawer__link{
  display: block;
  padding: 10px 10px;
  border-radius: 12px;
  font-weight: 600;
}
.drawer__link:hover{ background: var(--soft); text-decoration: none; }
.drawer__hr{
  border: 0;
  border-top: 1px solid var(--line);
  margin: 12px 0;
}

/* Search */
.search{
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.search__inner{ padding: 12px 0; }
.search__form{
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
}
.search__input{
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
}
.search__input:focus{ border-color: #bbb; }

/* Main grid */
.mainGrid{
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 34px;
  padding: 28px 0 44px;
}

.article{ min-width: 0; }

/* Breadcrumbs */
.crumbs{
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 0 18px;
}
.crumbs__link{ color: var(--muted); font-size: 13px; }
.crumbs__current{ font-size: 13px; color: #222; font-weight: 600; }
.crumbs__sep{ color: #aaa; }

/* Article header */
.articleHeader__title{
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.8px;
}
.articleHeader__dek{
  margin: 12px 0 16px;
  font-size: 18px;
  color: #222;
  max-width: 56ch;
}
.meta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  margin-bottom: 18px;
}
.meta__byline{
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}
.meta__author{ font-weight: 700; color: #222; }
.meta__dot{ color: #bbb; }

.share{ position: relative; }
.share__btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  cursor: pointer;
}
.share__btn:hover{ background: var(--soft); }
.share__btn svg{ fill: currentColor; }

.shareMenu{
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.shareMenu__item{
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  color: #222;
}
.shareMenu__item:hover{ background: var(--soft); text-decoration: none; }

/* Hero */
.hero{ margin: 0 0 18px; }
.hero__img{
  width: 100%;
  border-radius: var(--radius2);
  aspect-ratio: 16/9;
  background:
    radial-gradient(1200px 400px at 30% 20%, rgba(225,6,0,.25), transparent 60%),
    radial-gradient(800px 300px at 70% 70%, rgba(0,0,0,.18), transparent 55%),
    linear-gradient(135deg, #fafafa, #f1f1f1);
  border: 1px solid var(--line);
}
.hero__cap{
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
}

/* TOC */
.toc{
  margin: 18px 0 22px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.toc__title{
  margin: 0 0 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .9px;
  color: var(--muted);
}
.toc__list{
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}
.toc__list a{
  font-weight: 600;
  color: #222;
}
.toc__list a:hover{ color: var(--brand); text-decoration: none; }

/* Prose */
.prose{
  font-family: var(--serif);
  font-size: 18px;
  color: #141414;
}
.prose p{ margin: 0 0 14px; }
.prose h2{
  font-family: var(--sans);
  font-size: 24px;
  margin: 26px 0 10px;
  letter-spacing: -0.2px;
}
.prose h3{
  font-family: var(--sans);
  font-size: 18px;
  margin: 20px 0 10px;
}
.prose ul{
  margin: 0 0 16px;
  padding-left: 22px;
}
.prose li{ margin: 6px 0; }

.inlineMedia{
  margin: 18px 0 22px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.inlineMedia__img{
  border-radius: 14px;
  aspect-ratio: 16/9;
  border: 1px solid var(--line);
  background:
    radial-gradient(900px 350px at 20% 30%, rgba(0,0,0,.16), transparent 60%),
    linear-gradient(135deg, #f7f7f7, #eeeeee);
}
.inlineMedia__cap{
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--muted);
  font-family: var(--sans);
}

/* Callout / related */
.callout{
  border-left: 4px solid var(--brand);
  background: var(--soft);
  padding: 14px 14px 14px 12px;
  border-radius: 14px;
  margin: 18px 0 22px;
  font-family: var(--sans);
}
.callout__kicker{
  margin: 0 0 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .9px;
  color: var(--muted);
}
.callout__text{ margin: 0; font-weight: 600; color: #222; }

.related{
  border: 1px dashed #d8d8d8;
  background: #fff;
  border-radius: 14px;
  padding: 12px 12px;
  margin: 16px 0 22px;
  font-family: var(--sans);
}
.related__label{
  margin: 0 0 6px;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .9px;
}
.related__link{
  font-weight: 800;
  color: #111;
}
.related__link:hover{ color: var(--brand); text-decoration: none; }

/* Quote */
.quote{
  border-left: 3px solid #111;
  padding-left: 14px;
  margin: 18px 0 22px;
  font-family: var(--serif);
}
.quote p{ margin: 0 0 6px; font-size: 20px; }
.quote cite{ font-style: normal; color: var(--muted); font-size: 14px; }

/* Ad placeholder */
.ad{
  margin: 24px 0 18px;
  font-family: var(--sans);
}
.ad__label{
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: #777;
}
.ad__box{
  height: 180px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: repeating-linear-gradient(
    45deg,
    var(--soft2),
    var(--soft2) 10px,
    #fff 10px,
    #fff 20px
  );
}

/* CTA */
.cta{
  margin: 24px 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  background: #111;
  color: #fff;
  padding: 18px;
  font-family: var(--sans);
}
.cta__title{
  margin: 0 0 6px;
  font-size: 22px;
  letter-spacing: -0.2px;
}
.cta__text{ margin: 0 0 14px; color: rgba(255,255,255,.86); }
.cta__form{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
.cta__input{
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.10);
  padding: 12px 14px;
  color: #fff;
  outline: none;
}
.cta__input::placeholder{ color: rgba(255,255,255,.7); }
.cta__fineprint{
  margin: 0;
  font-size: 12px;
  color: rgba(255,255,255,.75);
}
.cta__fineprint a{ text-decoration: underline; }

/* Divider */
.divider{
  border: 0;
  border-top: 1px solid var(--line);
  margin: 22px 0;
}

/* More cards */
.more{ font-family: var(--sans); }
.more__title{
  margin: 0 0 12px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .9px;
  color: #222;
}
.cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.card{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  display: grid;
  grid-template-rows: 140px 1fr;
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: transform .12s ease, box-shadow .12s ease;
}
.card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  text-decoration: none;
}
.card__thumb{
  background:
    radial-gradient(900px 260px at 40% 30%, rgba(225,6,0,.18), transparent 55%),
    linear-gradient(135deg, #f6f6f6, #ececec);
}
.card__body{ padding: 12px; }
.card__kicker{
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: #777;
}
.card__title{
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.25;
}
.card__meta{
  margin: 0;
  font-size: 12px;
  color: #777;
}

/* Article footer */
.articleFooter__disclaimer{
  margin: 18px 0 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
}

/* Right rail */
.rail{ min-width: 0; }
.rail__sticky{
  position: sticky;
  top: 118px; /* adjust */
  display: grid;
  gap: 14px;
}
.railBox{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 14px;
}
.railBox--muted{ background: var(--soft); }
.railBox__title{
  margin: 0 0 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .9px;
  color: #333;
}
.railBox__text{
  margin: 0 0 12px;
  color: #444;
  font-size: 14px;
}
.railLink{
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-weight: 700;
  font-size: 14px;
  color: #222;
}
.railLink:first-of-type{ border-top: 0; }
.railLink span{
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: #111;
  color: #fff;
  font-size: 11px;
}
.railLink:hover{ color: var(--brand); text-decoration: none; }

/* Sponsor module */
.sponsor{ display: grid; gap: 10px; }
.sponsor__logo{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background:
    radial-gradient(800px 200px at 30% 30%, rgba(0,0,0,.18), transparent 55%),
    linear-gradient(135deg, #fff, #eaeaea);
}
.sponsor__text{ margin: 0; font-size: 14px; color: #333; }
.sponsor__cta{
  font-weight: 800;
  color: #111;
}
.sponsor__cta:hover{ color: var(--brand); text-decoration: none; }

/* Footer */
.siteFooter{
  border-top: 1px solid var(--line);
  background: #fff;
}
.siteFooter__inner{
  padding: 20px 0;
  display: grid;
  gap: 10px;
  align-items: center;
}
.siteFooter__brand{
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.siteFooter__links{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}
.siteFooter__copy{
  margin: 0;
  color: #777;
  font-size: 12px;
}

/* Back to top */
.toTop{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 1800;
}
.toTop:hover{ background: var(--soft); }
.toTop svg{ fill: currentColor; }

/* Accessibility helper */
.srOnly{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Responsive */
@media (max-width: 1020px){
  .mainGrid{ grid-template-columns: 1fr; }
  .rail{ order: 2; }
  .rail__sticky{ position: static; }
  .cards{ grid-template-columns: 1fr; }
}

@media (max-width: 640px){
  .utility__left{ display: none; }
  .header__actions .btn{ display: none; }
  .meta{ flex-direction: column; align-items: flex-start; }
  .cta__form{ grid-template-columns: 1fr; }
  .brand{ justify-self: start; }
}



/* =========================
   Quiz module (bottom of page) — clean
   ========================= */
.quizWrap{
  margin: 26px 0 0;
  padding: 22px 0 10px;
}

.quizCard{
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 0;
  overflow: hidden;
}

.quizHeader{
  padding: 16px 18px 14px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.quizHeader__eyebrow{
  margin: 0 0 8px;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  color: var(--muted);
}

.quizHeader__title{
  margin: 0 0 8px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2.1vw, 30px);
  line-height: 1.15;
  color: #111;
}

.quizHeader__pill{
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  border: 1px solid rgba(225,6,0,.30);
  background: rgba(225,6,0,.10);
  color: #111;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .2px;
  white-space: nowrap;
}

.quizHeader__sub{
  margin: 0;
  font-family: var(--sans);
  font-size: 14px;
  color: #333;
}

.quizHeader__muted{
  color: var(--muted);
  font-size: 13px;
  margin-left: 6px;
  white-space: nowrap;
}

.quizTop{
  padding: 12px 18px 0;
  display: grid;
  gap: 8px;
}

.quizTop__step{
  margin: 0;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
}

.quizProgress{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: min(260px, 100%);
}
.quizProgress__seg{
  height: 5px;
  border-radius: 999px;
  background: #e8e8e8;
}
.quizProgress__seg.isOn{ background: var(--brand); }

/* Question screen */
.quizScreen{
  padding: 6px 18px 18px;
}

.quizQ{
  margin: 10px 0 14px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.2;
  text-align: center;
  color: #111;
}

.quizYN{
  display: grid;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
}

.quizBtn{
  width: 100%;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .2px;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(0,0,0,.07);
  transition: transform .08s ease, filter .12s ease, box-shadow .12s ease;
}

.quizBtn--blue{
  background: #2e8fda;
  color: #fff;
}

.quizBtn:hover{
  filter: brightness(1.02);
  box-shadow: 0 10px 18px rgba(0,0,0,.09);
}
.quizBtn:active{ transform: translateY(1px); }
.quizBtn:focus{ outline: 3px solid rgba(46,143,218,.22); outline-offset: 2px; }

/* Loading / rotating text */
.quizLoading{
  padding: 22px 18px 18px;
  text-align: center;
}
.quizSpinner{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 3px solid #e7e7e7;
  border-top-color: var(--brand);
  margin: 0 auto 12px;
  animation: spin .8s linear infinite;
}
@keyframes spin{ to{ transform: rotate(360deg); } }

.quizLoading__text{
  margin: 0;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 15px;
  color: #111;
}
.quizLoading__text.isFade{ animation: fadeSwap .24s ease; }
@keyframes fadeSwap{
  from{ opacity: .35; transform: translateY(2px); }
  to{ opacity: 1; transform: translateY(0); }
}

/* Offer screen */
.quizOffer{
  padding: 10px 18px 18px;
  text-align: center;
}
.quizOffer__title{
  margin: 8px 0 6px;
  font-family: var(--sans);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: .9px;
  color: #1a7f37;
}
.quizOffer__sub{
  margin: 0 0 14px;
  font-family: var(--sans);
  color: #2a2a2a;
  font-size: 15px;
}

.offerBox{
  border: 1px solid #111;
  overflow: hidden;
  background: #fff;
  margin: 0 auto;
  max-width: 820px;
}
.offerBox__bar{
  background: #000;
  color: #fff;
  font-family: var(--sans);
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 14px;
  text-align: left;
  font-size: 17px;
}
.offerBox__inner{
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
}
.offerBox__img img{
  width: 100%;
  max-width: 210px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.offerBox__main{ text-align: center; }

.offerBox__cta{
  display: inline-block;
  background: linear-gradient(180deg, #45d029, #2fb81a);
  color: #fff;
  border-radius: 999px;
  padding: 12px 22px;
  font-family: var(--sans);
  font-weight: 900;
  letter-spacing: .4px;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0,0,0,.22);
  border: 2px solid rgba(255,255,255,.35);
}
.offerBox__cta:hover{ filter: brightness(1.03); }
.offerBox__cta:active{ transform: translateY(1px); }

.offerBox__ends{
  margin: 14px 0 6px;
  font-family: var(--sans);
  font-size: 14px;
  color: #111;
}
.offerBox__date{
  margin: 0;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 16px;
  color: #111;
}

.quizFineprint{
  margin: 10px 0 0;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  font-family: var(--sans);
}

@media (max-width: 780px){
  .offerBox__inner{ grid-template-columns: 1fr; padding: 16px; }
  .offerBox__bar{ font-size: 16px; }
  .quizQ{ font-size: 22px; }
  .quizHeader__muted{ display: inline-block; margin-left: 0; margin-top: 6px; white-space: normal; }
}

/* =========================
   Comments module
   ========================= */
.comments{
  margin: 28px 0 10px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-family: var(--sans);
}
.comments__head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.comments__title{
  margin: 0;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .9px;
  color: #222;
}
.comments__count{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* New comment form */
.commentForm{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  margin-bottom: 14px;
}
.commentForm__avatar{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .3px;
}
.commentForm__textarea{
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 12px;
  font-size: 14px;
  resize: vertical;
  outline: none;
}
.commentForm__textarea:focus{ border-color: #bbb; }
.commentForm__actions{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}
.commentForm__fine{
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

/* Comment list */
.commentList{
  display: grid;
  gap: 12px;
}
.comment{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.comment__avatar{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--soft);
  color: #111;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .3px;
}
.comment__meta{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 6px;
}
.comment__name{
  margin: 0;
  font-weight: 800;
  font-size: 14px;
  color: #111;
}
.comment__time{
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}
.comment__dot{ color: #bbb; }

.comment__text{
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 16px;
  color: #141414;
}
.comment__actions{
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Like + Reply buttons */
.comment__like,
.comment__replyToggle{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 700;
  font-size: 13px;
}
.comment__replyToggle{ padding: 8px 14px; }
.comment__like:hover,
.comment__replyToggle:hover{
  background: var(--soft);
}
.comment__like svg{
  fill: currentColor;
  opacity: .9;
}
.comment__likes{ min-width: 20px; text-align: left; }
.comment__like.isLiked{ border-color: rgba(225,6,0,.28); }
.comment__like.isLiked svg{ color: var(--brand); }

/* Reply preview */
.comment__replies{
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #dedede;
}
.replyItem{
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  align-items: start;
}
.replyItem__avatar{
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 11px;
}
.replyItem__meta{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}
.replyItem__name{
  margin: 0;
  font-weight: 800;
  font-size: 13px;
}
.replyItem__time{
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}
.replyItem__text{
  margin: 0;
  font-family: var(--serif);
  font-size: 15px;
  color: #141414;
}

/* Reply box (composer) */
.replyBox{
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.replyBox__textarea{
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 14px;
  resize: vertical;
  outline: none;
}
.replyBox__textarea:focus{ border-color: #bbb; }
.replyBox__actions{
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
}

/* Reply box nudge (reuses quizShake keyframes if present) */
.replyBox.isShake{ animation: quizShake .28s ease; }

/* Responsive */
@media (max-width: 640px){
  .commentForm{ grid-template-columns: 36px 1fr; }
  .commentForm__avatar,
  .comment__avatar{ width: 36px; height: 36px; }
  .comment{ grid-template-columns: 36px 1fr; }
  .comment__text{ font-size: 15px; }
}



/* =========================
   Testimonials
   ========================= */
.testimonials{
  margin: 26px 0 10px;
  padding: 18px 0 6px;
  border-top: 1px solid var(--line);
}
.testimonials__head{
  text-align: center;
  margin: 0 auto 14px;
  max-width: 70ch;
}
.testimonials__title{
  margin: 0 0 6px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.2px;
}
.testimonials__sub{
  margin: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 14px;
}

.tGrid{
  display: grid;
  gap: 14px;
}

.tCard{
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.tMedia{
  padding: 14px 14px 0;
}

.tShot{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f4f4f4;
}

.tImg{
  width: 100%;
  height: 240px;
  display: block;
  object-fit: cover;
}

.tBadge{
  position: absolute;
  left: 12px;
  top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.08);
  backdrop-filter: blur(6px);
  font-family: var(--sans);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .2px;
}
.tBadge__icon{ color: #1aa24a; display: inline-flex; }
.tBadge__text{ color: #111; }

.tBody{
  padding: 12px 14px 14px;
}

.tQuote{
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.45;
  color: #141414;
}

.tMeta{
  display: grid;
  gap: 2px;
}
.tName{
  margin: 0;
  font-weight: 800;
  font-family: var(--sans);
  font-size: 14px;
}
.tDetail{
  margin: 0;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
}

.tFine{
  margin: 10px auto 0;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  font-family: var(--sans);
  max-width: 70ch;
}

@media (max-width: 640px){
  .tImg{ height: 210px; }
  .testimonials__title{ font-size: 24px; }
  .tQuote{ font-size: 16px; }
}





/* =========================
   Quiz merged header
   ========================= */
.quizHero{
  text-align: left;
  margin: 0 auto 14px;
  max-width: 76ch;
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: radial-gradient(900px 420px at 18% 0%, rgba(225,6,0,.10), transparent 60%),
              linear-gradient(135deg, #0c0c0c, #1a1a1a);
  color: #fff;
  padding: 16px 16px;
}

.quizHero__eyebrow{
  margin: 0 0 8px;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  opacity: .85;
}

.quizHero__title{
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 32px);
  letter-spacing: -0.2px;
  margin: 0 0 8px;
  line-height: 1.12;
  color: #fff;
}

.quizHero__pill{
  display: inline-block;
  margin: 0 4px;
  padding: 2px 10px;
  border-radius: 999px;
  background: rgba(225,6,0,.22);
  border: 1px solid rgba(225,6,0,.38);
  font-weight: 700;
  font-family: var(--sans);
  letter-spacing: .2px;
  white-space: nowrap;
}

.quizHero__sub{
  margin: 0;
  font-family: var(--sans);
  font-size: 15px;
  color: rgba(255,255,255,.92);
}

.quizHero__muted{
  opacity: .75;
  font-size: 13px;
  margin-left: 6px;
  white-space: nowrap;
}

@media (max-width: 640px){
  .quizHero{
    padding: 14px 14px;
  }
  .quizHero__muted{
    display: inline-block;
    margin-left: 0;
    margin-top: 6px;
    white-space: normal;
  }
}


/* =========================
   Quiz emphasis (bigger + subtle pulse)
   ========================= */
.quizHeader{
  padding: 20px 22px 18px;
}
.quizHeader__title{
  font-size: clamp(24px, 2.6vw, 36px);
}
.quizHeader__sub{
  font-size: 15px;
  line-height: 1.5;
}
.quizTop{
  padding: 14px 22px 0;
}
.quizScreen{
  padding: 10px 22px 22px;
}
.quizQ{
  font-size: 30px;
  margin: 14px 0 16px;
}
.quizYN{
  max-width: 520px;
  gap: 14px;
}
.quizBtn{
  padding: 18px 20px;
  font-size: 18px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
  animation: quizPulse 1.6s ease-in-out infinite;
  transform-origin: center;
}
.quizBtn:hover{
  animation-play-state: paused;
}
.quizBtn:active{
  animation-play-state: paused;
}

@keyframes quizPulse{
  0%{ transform: scale(1); box-shadow: 0 10px 24px rgba(0,0,0,.10); }
  50%{ transform: scale(1.025); box-shadow: 0 14px 30px rgba(0,0,0,.14); }
  100%{ transform: scale(1); box-shadow: 0 10px 24px rgba(0,0,0,.10); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .quizBtn{ animation: none; }
}

@media (max-width: 640px){
  .quizHeader{ padding: 18px 16px 16px; }
  .quizTop{ padding: 12px 16px 0; }
  .quizScreen{ padding: 8px 16px 18px; }
  .quizQ{ font-size: 24px; }
  .quizBtn{ font-size: 17px; padding: 16px 18px; }
}

.quizBtn--noPulse{ animation: none !important; }


/* =========================
   Article template modules
   ========================= */
.placeholder{ color: #7a7a7a; }

.note{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: #fff;
  margin: 0 0 18px;
}
.note--disclaimer{
  background: linear-gradient(180deg, rgba(225,6,0,.04), rgba(0,0,0,0));
  border-color: rgba(225,6,0,.18);
}
.note__title{
  margin: 0 0 6px;
  font-family: var(--sans);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #111;
}
.note__text{
  margin: 0;
  font-family: var(--sans);
  color: #2d2d2d;
  font-size: 14px;
  line-height: 1.5;
}

.pullQuote{
  border-left: 4px solid var(--brand);
  padding: 12px 14px;
  background: var(--soft);
  border-radius: 14px;
  margin: 16px 0 18px;
}
.pullQuote__text{
  margin: 0;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.4;
  color: #141414;
}
.pullQuote__by{
  margin: 8px 0 0;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  font-weight: 800;
}

.callout--soft{
  background: #fff;
  border-style: dashed;
  border-color: rgba(0,0,0,.18);
}

.bullets{ padding-left: 18px; }
.bullets li{ margin: 8px 0; }

.disclosure{
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  border-radius: var(--radius);
  padding: 14px;
  margin: 18px 0;
}
.disclosure__title{
  margin: 0 0 10px;
  font-family: var(--sans);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .2px;
}
.disclosure__list{
  margin: 0;
  padding-left: 18px;
}
.disclosure__list li{
  margin: 8px 0;
  color: #333;
}

.faq{
  margin: 10px 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.faq__item{ border-bottom: 1px solid var(--line); }
.faq__item:last-child{ border-bottom: 0; }
.faq__q{
  cursor: pointer;
  padding: 12px 14px;
  font-family: var(--sans);
  font-weight: 900;
  font-size: 14px;
  list-style: none;
}
.faq__q::-webkit-details-marker{ display: none; }
.faq__a{ padding: 0 14px 14px; }
.faq__a p{ margin: 0; }

.inlineCta{
  border: 1px solid rgba(225,6,0,.20);
  background: linear-gradient(135deg, rgba(225,6,0,.06), rgba(0,0,0,0));
  border-radius: var(--radius2);
  padding: 14px;
  margin: 18px 0;
}
.inlineCta__kicker{
  margin: 0 0 6px;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  color: var(--muted);
}
.inlineCta__title{
  margin: 0 0 6px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
}
.inlineCta__text{
  margin: 0;
  font-family: var(--sans);
  color: #333;
  font-size: 14px;
}

.sources{
  border-top: 1px solid var(--line);
  margin-top: 18px;
  padding-top: 14px;
}
.sources__title{
  margin: 0 0 10px;
  font-family: var(--sans);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #111;
}
.sources__list{
  margin: 0;
  padding-left: 18px;
  color: #444;
}
.sources__list li{ margin: 6px 0; }

.footnote{
  margin: 14px 0 0;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--muted);
}


/* =========================
   Quiz border emphasis
   ========================= */
.quizWrap{
  position: relative;
}
.quizWrap::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  width: min(980px, 100%);
  height: calc(100% - 6px);
  border-radius: calc(var(--radius2) + 10px);
  background: rgba(225,6,0,.055);
  filter: blur(26px);
  z-index: 0;
}
.quizWrap > *{
  position: relative;
  z-index: 1;
}
.quizCard{
  background:
    linear-gradient(#fff,#fff) padding-box,
    linear-gradient(135deg, rgba(225,6,0,.35), rgba(225,6,0,.08), rgba(0,0,0,.08)) border-box;
  border: 2px solid transparent;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}


/* =========================
   Article title accent + credits
   ========================= */
.accentRed{
  color: var(--brand);
}

.credits{
  margin-top: 10px;
  padding-top: 2px;
}

.credits__row{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 6px 0;
}

.credits__icon{
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: #111;
  opacity: .9;
  margin-top: 1px;
}
.credits__icon svg path{
  fill: currentColor;
}

.credits__text{
  margin: 0;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.35;
}

.credits__name{
  color: #111;
  font-weight: 900;
}

.credits__value{
  color: #111;
  font-weight: 800;
}

.credits__role{
  color: var(--muted);
  letter-spacing: .02em;
  text-transform: none;
  margin-left: 8px;
  font-weight: 600;
}

.credits__spacer{
  display: inline-block;
  width: 10px;
}

@media (max-width: 640px){
  .credits__text{
    letter-spacing: .04em;
  }
  .credits__role{
    display: inline-block;
    margin-left: 0;
    margin-top: 4px;
  }
}


/* =========================
   Top utility bar
   ========================= */
.topBar{
  width: 100%;
  background: #000;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
}

.topBar__inner{
  max-width: 1080px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topBar__link{
  color: #fff;
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
  opacity: .95;
}

.topBar__link:hover{
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.topBar__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 14px;
  border-radius: 8px;
  background: #fff;
  color: var(--brand);
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
  border: 1px solid rgba(255,255,255,.55);
}

.topBar__btn:hover{
  filter: brightness(0.98);
}

@media (max-width: 480px){
  .topBar__inner{ padding: 10px 12px; }
  .topBar__btn{ height: 28px; padding: 0 12px; }
}


/* =========================
   Brand logo placeholder
   ========================= */
.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand__logo{
  height: 36px;
  width: auto;
  display: block;
}

/* =========================
   Comment avatars as images + media attachments
   ========================= */
.commentForm__avatar,
.comment__avatar,
.replyItem__avatar{
  display: block;
  object-fit: cover;
  border-radius: 999px;
}

.commentForm__avatar{
  background: #fff;
  border: 1px solid var(--line);
}

.comment__media{
  margin-top: 10px;
  max-width: 520px;
}
.comment__photo{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.replyItem__media{
  margin-top: 8px;
  max-width: 420px;
}
.replyItem__photo{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid var(--line);
}


/* =========================
   Square ALL images (override)
   ========================= */
img,
.hero__img,
.brand__logo,
.commentForm__avatar,
.comment__avatar,
.replyItem__avatar,
.comment__photo,
.replyItem__photo,
.testimonial__img,
.testimonial__photo{
  border-radius: 0 !important;
}

/* In case any image wrappers clip corners */
.hero__media,
.comment__media,
.replyItem__media,
.testimonialCard,
.testimonialMedia{
  border-radius: 0 !important;
  overflow: visible !important;
}


/* =========================
   Prevent image shrink + hero image supports background or <img>
   ========================= */
img{
  display: block;
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
}

/* Hero image: supports either a background-image on .hero__img OR an <img> nested inside */
.hero__img{
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Keep existing placeholder gradients as an overlay (won't affect your background image) */
.hero__img::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1200px 400px at 30% 20%, rgba(225,6,0,.18), transparent 60%),
    radial-gradient(800px 300px at 70% 70%, rgba(0,0,0,.12), transparent 55%);
}

/* If you use an <img> inside .hero__img, make it cover the area */
.hero__img > img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
