
/* ============================================================
   Base — reset, fonts & shared element defaults
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 1. Grundlegendes Reset für den gesamten Viewport */
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden; /* Verhindert ungewolltes horizontales Scrollen */
}

/* 2. Klasse für das Element, das die volle Breite erzwingen soll */
.full-width-section {
  width: 100vw; /* Nutzt 100% der sichtbaren Bildschirmbreite */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-primary);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

p {
  margin: 0;
}

/* Centered page wrapper — matches the 1440px Figma frame */
.page {
  max-width: var(--page-max);
  margin: 0 auto;
}

/* ============================================================
   CTA button — gold gradient pill used across listicle cards
   Figma: "Link - TRY RISK-FREE NOW" (e.g. 4001:179)
   ============================================================ */

.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 53px;
  box-sizing: border-box;
  padding: 8px 16px;
  border: 1px solid var(--btn-border);
  border-radius: 5px;
  background: linear-gradient(
    to bottom,
    var(--btn-grad-top),
    var(--btn-grad-bottom)
  );
  filter: drop-shadow(0 0 1.5px rgba(79, 79, 79, 0.35));
  font-family: var(--font-body);
  font-weight: 600; /* SemiBold */
  font-size: var(--fs-lead);
  line-height: 1.8;
  color: var(--color-text-primary);
  text-align: center;
  text-decoration: none;
}

/* ============================================================
   Product card — listicle comparison card
   Figma: 4001:151 (desktop, card #1 "{{BRAND}}")
   Reusable: cards #2–#5 reuse this with different data.
   ============================================================ */

.card {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  box-sizing: border-box;
  padding: 20px;
  background: var(--color-card-bg);
}

/* ---- Head: rank/name/subtitle + medal ---- */
.card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.card__titles {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  color: var(--color-text-primary);
}

.card__title {
  margin: 0;
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: var(--fs-h3);
  line-height: 1.3;
}

/* Winner card underlines its title */
.card--winner .card__title {
  text-decoration: underline;
}

.card__subtitle {
  margin: 0;
  font-family: var(--font-body);
  font-style: italic;
  font-weight: var(--fw-regular);
  font-size: var(--fs-lead);
  line-height: 1.5;
}

/* Grade line in the header — mobile only (desktop shows it as a stat column) */
.card__grade-line {
  display: none;
  margin: 0;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: var(--fs-h3);
  line-height: 26px;
  color: var(--color-text-primary);
}

/* ---- Body ---- */
.card__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

/* ---- Stats row: product image · grade · rating ---- */
.card__stats {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.card__stat {
  width: 256px;
  height: 256px;
  box-sizing: border-box;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card__stat--image {
  padding: 20px;
  overflow: hidden;
  box-shadow: 0 0 10px 0 var(--color-card-shadow);
}

.card__stat--grade,
.card__stat--rating {
  flex-direction: column;
  gap: 8px;
  filter: drop-shadow(0 0 5px var(--color-card-shadow));
}

.card__product {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card__stat-label {
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: var(--fs-h3);
  line-height: 26px;
  color: var(--color-text-primary);
  text-align: center;
  white-space: nowrap;
}

.card__grade {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-display);
  line-height: 72px;
  color: var(--color-text-primary);
}

.card__rating-score {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-h1);
  line-height: 50px;
  color: var(--color-text-primary);
  padding-top: 8px;
}

.card__stars {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-h3);
  line-height: 30px;
  color: var(--color-stars);
  padding-top: 8px;
  white-space: nowrap;
}

.card__stars-off {
  color: var(--color-star-off);
}

/* Winner card shows grade/rating in brand cyan; others stay dark */
.card--winner .card__stat-label,
.card--winner .card__grade,
.card--winner .card__rating-score,
.card--winner .card__grade-line {
  color: var(--color-cyan);
}

/* ---- White content panel ---- */
.card__panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  box-sizing: border-box;
  padding: 20px;
  background: var(--color-white);
  filter: drop-shadow(0 0 5px var(--color-card-shadow));
}

.card__desc {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--color-text-primary);
}
.card__desc p {
  margin: 0;
}

/* ---- "Why It's #1" list ---- */
.card__why {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: var(--font-body);
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--color-text-primary);
}
.card__why p {
  margin: 0;
}
.card__why-title {
  font-weight: var(--fw-bold);
}
.card__why-item strong {
  font-weight: var(--fw-bold);
}

/* ---- In-card hairline ---- */
.card__rule {
  width: 100%;
  height: 1px;
  margin: 0;
  border: 0;
  border-top: var(--stroke-weight-1) solid var(--color-rule);
}

/* ---- Score bars ---- */
.card__scores {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.score {
  display: flex;
  align-items: center;
  gap: 62px;
  width: 100%;
  box-sizing: border-box;
  padding: 0 32px;
}
.score__label {
  flex: 1 1 0;
  min-width: 0;
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--color-text-primary);
}
.score__meter {
  flex-shrink: 0;
  width: 420px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.score__track {
  width: 100%;
  background: var(--color-bar-track);
}
.score__fill {
  width: var(--fill, 97.6%);
  height: 24px;
  background: var(--color-bar-fill);
}
.score__value {
  padding: 0 48px;
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--color-text-primary);
}

/* ---- PROS / CONS ---- */
.card__verdict {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.card__pros,
.card__cons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card__verdict-title {
  margin: 0;
  padding-top: 24px;
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: var(--fs-lead);
  line-height: 1.5;
}
.card__pros .card__verdict-title {
  color: var(--color-pros);
}
.card__cons .card__verdict-title {
  color: var(--color-cons);
}
.card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card__list li {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--color-text-primary);
}
.card__bullet {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* ---- Our Experience / Bottom Line ---- */
.card__notes {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: var(--font-body);
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--color-text-primary);
}
.card__notes p {
  margin: 0;
}
.card__notes strong {
  font-weight: var(--fw-bold);
}

/* ============================================================
   Mobile (≤ 768px)
   - show "Overall Grade" as a header line
   - stats: 2 equal columns (image + rating), grade column hidden
   - score rows: label on top, bar + value inline below
   ============================================================ */
@media (max-width: 768px) {
  .card__grade-line {
    display: block;
  }

  /* Stats: two equal columns, 180px tall */
  .card__stats {
    gap: 20px;
  }
  .card__stat {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    height: 180px;
  }
  .card__stat--image {
    padding: 20px 8px;
  }
  .card__stat--grade {
    display: none; /* grade shown in header on mobile */
  }

  /* Rating column — smaller numerals */
  .card__stat-label {
    
    line-height: 20px;
  }
  .card__rating-score {
    
    line-height: 32px;
  }
  .card__stars {
    
  }

  /* Score rows reflow: label above, [bar + value] inline below */
  .score {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 0;
  }
  .score__meter {
    flex-direction: row;
    align-items: center;
    gap: 2px;
    width: 100%;
  }
  .score__track {
    flex: 1 1 0;
    min-width: 0;
  }
  .score__value {
    flex-shrink: 0;
    padding: 0;
    text-align: center;
  }
}

/* ============================================================
   Content — main article shell
   Figma: 4001:118 (desktop) / 4001:2089 (mobile)
   Full-bleed wrapper with a centered 850px article column.
   Individual blocks are added inside .content__inner one by one.
   ============================================================ */

.content {
  width: 100%;
}

.content__inner {
  max-width: var(--content-max); /* 850px article column */
  margin: 0 auto;
  padding-top: 20px;
  padding-bottom: 48px; /* gap before the footer (Figma Content frame) */
  /* Vertical rhythm between blocks is owned by each block;
     blocks are stacked in a single column. */
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

@media (max-width: 768px) {
  .content__inner {
    /* 375 âˆ’ 2Ã—16 = 343px column on mobile */
    padding-left: var(--header-pad-x-mobile);
    padding-right: var(--header-pad-x-mobile);
  }
}

/* ============================================================
   Criteria — the six scoring factors (bold label + description)
   Figma: 4001:141 (desktop) / 4001:2112 (mobile)
   ============================================================ */

.criteria {
  list-style: none;
  margin: 0;
  margin-top: var(--gap-block); /* 32px below the section heading */
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--color-text-primary);
}

/* Flush variant — no top margin (when it isn't following a section heading) */
.criteria--flush {
  margin-top: 0;
}

.criteria__item {
  margin: 0;
}

.criteria__item strong {
  font-weight: var(--fw-bold);
}

.section-heading--weighted {
  gap: 10px;
}

.section-heading--weighted .section-heading__title {
  color: var(--color-text-primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.section-heading--weighted .section-heading__lead {
  font-size: var(--fs-body);
  font-weight: 400;
}

.criteria--weighted {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 22px;
  border-top: 1px solid #b9b9b9;
  border-bottom: 1px solid #b9b9b9;
  background: #faf9f7;
}

.criteria--weighted .criteria__item {
  display: grid;
  grid-template-columns: 120px 205px minmax(0, 1fr);
  align-items: stretch;
  min-width: 0;
  padding: 0;
  border-top: 1px solid #d6d2cd;
}

.criteria--weighted .criteria__item:first-child {
  border-top: 0;
}

.criteria--weighted .criteria__weight {
  display: block;
  margin: 0;
  padding: 22px;
  color: #b51c25;
  font-family: var(--font-body);
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.035em;
  font-variant-numeric: tabular-nums;
}

.criteria--weighted .criteria__title {
  display: block;
  margin: 0;
  padding: 25px 22px;
  border-left: 1px solid #d6d2cd;
  font-size: var(--fs-body);
  line-height: 1.25;
}

.criteria--weighted .criteria__description {
  display: block;
  padding: 24px 22px;
  border-left: 1px solid #d6d2cd;
  font-size: var(--fs-small);
  line-height: 1.45;
}

.evaluation-baseline {
  margin-top: 18px;
  padding: 18px 20px;
  border-left: 3px solid #b51c25;
  background: #f3f0ec;
  color: #3d3d3d;
  font-size: var(--fs-body);
  line-height: 1.55;
}

.evaluation-baseline strong {
  color: #b51c25;
}

.criteria--benefits {
  margin-top: 16px;
}

.criteria--benefits .criteria__description {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.criteria--benefits .criteria__test {
  display: block;
}

.criteria--benefits .criteria__test strong {
  color: #2e2e2e;
}

.criteria-evidence-note {
  margin: 12px 0 0;
  color: #666;
  font-family: var(--font-body);
  font-size: var(--fs-caption);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .section-heading--weighted .section-heading__title {
    
  }

  .criteria--weighted {
    grid-template-columns: 1fr;
  }

  .criteria--weighted .criteria__item {
    grid-template-columns: 88px minmax(0, 1fr);
    padding: 0;
    border-top: 1px solid #d6d2cd;
  }

  .criteria--weighted .criteria__item:first-child {
    border-top: 0;
  }

  .criteria--weighted .criteria__weight {
    grid-column: 1;
    grid-row: 1 / 3;
    padding: 18px 12px 18px 16px;
    
  }

  .criteria--weighted .criteria__title {
    grid-column: 2;
    grid-row: 1;
    padding: 18px 14px 5px;
    border-left: 1px solid #d6d2cd;
    
  }

  .criteria--weighted .criteria__description {
    grid-column: 2;
    grid-row: 2;
    padding: 0 14px 18px;
    border-left: 1px solid #d6d2cd;
    
  }

  .evaluation-baseline {
    padding: 16px;
  }
}

/* ============================================================
   Divider — 2px full-width rule between sections
   Figma: div.inner-spacer
   ============================================================ */

.divider {
  align-self: stretch;
  height: var(--stroke-weight-2); /* 2px */
  margin: 0;
  margin-top: var(--gap-block); /* 32px above; next block adds 32px below */
  border: 0;
  border-top: var(--stroke-weight-2) solid var(--color-grey-93);
}

/* ============================================================
   Footer — brand + disclaimer + logo
   Figma: 4001:755 (desktop) / 4001:2682 (mobile)
   ============================================================ */

.site-footer {
  background: var(--color-footer-bg);
  
  /* Erzwingt die volle Bildschirmbreite */
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
}

.site-footer__inner {
  /* 1440 frame âˆ’ 2Ã—120 padding â‡’ 1200 content (disclaimer fits one line) */
  max-width: var(--page-max); /* 1440px */
  margin: 0 auto;
  box-sizing: border-box;
  padding: 40px var(--header-pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.site-footer__brand-row,
.site-footer__logo {
  display: flex;
  align-items: center;
  height: 44px;
}

.site-footer__logo {
  gap: 10px;
}

.site-footer__logo-mark {
  width: 32px;
  height: 18.489px;
  flex-shrink: 0;
}

.site-footer__logo-mark svg {
  width: 100%;
  height: 100%;
}

.site-footer__brand {
  font-family: var(--font-logo);
  font-weight: var(--fw-bold);
  font-size: var(--fs-logo); /* 18px */
  line-height: var(--lh-logo); /* 1.4 */
  color: var(--color-black);
  white-space: nowrap;
}

.site-footer__disclaimer {
  text-align: center;
}

.site-footer__disclaimer p {
  margin: 0;
  font-family: var(--font-body);
  font-style: italic;
  font-weight: var(--fw-regular);
  font-size: var(--fs-small); /* 14px */
  line-height: var(--lh-base); /* 1.5 */
  color: var(--color-footer-text);
}

.site-footer__link {
  color: var(--color-text-primary); /* #303030 */
  text-decoration: underline;
}

@media (max-width: 768px) {
  .site-footer__inner {
    padding: 40px var(--header-pad-x-mobile);
  }
}

/* ============================================================
   Why-details + Buying Guide
   Figma: 4001:695 (Frame 43)
   ============================================================ */

.why-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-top: var(--gap-block); /* 32px below the section heading */
}

/* ---- Buying guide group: title bar + good/bad boxes ---- */
.guide {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.guide__title {
  margin: 0;
  padding: 20px;
  background: var(--color-guide-title-bg);
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: var(--fs-h4);
  line-height: 1.4;
  color: var(--color-text-primary);
}

.guide__box {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 20px;
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--color-text-primary);
}

.guide__box--good {
  background: var(--color-guide-good-bg);
}

.guide__box--bad {
  background: var(--color-guide-bad-bg);
}

.guide__heading {
  margin: 0;
  font-weight: var(--fw-bold);
}

.guide__item {
  margin: 0;
}

.guide__item strong {
  font-weight: var(--fw-bold);
}

/* ============================================================
   Header — brand bar with logo + advertorial disclaimer link
   Figma: 4001:106 (desktop) / 4001:2077 (mobile)
   ============================================================ */

.site-header {
  background: var(--color-cyan-2);
  border-bottom: 1px solid var(--color-border);
  
  /* Erzwingt die volle Bildschirmbreite */
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
}
.site-header__logo-container{
  padding: 12px var(--header-pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  text-decoration: none;
}

.site-header__logo-mark {
  width: 32px;
  height: 18.489px;
  flex-shrink: 0;
}

.site-header__logo-mark svg {
  width: 100%;
  height: 100%;
}

.site-header__brand {
  font-family: var(--font-logo);
  font-weight: var(--fw-bold);
  font-size: var(--fs-logo);
  line-height: var(--lh-logo);
  color: var(--color-black);
  white-space: nowrap;
}

.site-header__disclaimer {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: var(--fs-tiny);
  line-height: var(--lh-base);
  color: var(--color-text-primary);
  text-decoration: underline;
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .site-header__logo-container {
    padding: 12px var(--header-pad-x-mobile);
  }
}

/* ============================================================
   Hero — article title, subtitle, author byline & lead image
   Figma: 4001:120 (desktop) / 4001:2091 (mobile)
   ============================================================ */

.hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

/* ---- Title + subtitle group (gap 12px) ---- */
.hero__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.hero__title {
  margin: 0;
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: var(--fs-h1); /* 40px */
  line-height: var(--lh-tight); /* 1.2 */
  color: var(--color-text-primary);
}

.hero__subtitle {
  margin: 0;
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: var(--fs-large); /* 20px */
  line-height: var(--lh-base); /* 1.5 */
  color: var(--color-text-primary);
}

/* ---- Author byline (gap 16px) ---- */
.hero__author {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.hero__avatar {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 999px;
  object-fit: cover;
}

.hero__author-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.hero__byline {
  margin: 0;
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: var(--fs-small); /* 14px */
  line-height: var(--lh-base);
  color: var(--color-text-primary);
  white-space: nowrap; /* desktop: single line */
}

.hero__byline strong {
  font-weight: var(--fw-bold);
}

.hero__byline-break {
  display: none; /* desktop: name + date on one line */
}

.hero__role {
  margin: 0;
  font-family: var(--font-body);
  font-style: italic;
  font-weight: var(--fw-regular);
  font-size: var(--fs-small); /* 14px */
  line-height: var(--lh-base);
  color: var(--color-text-primary);
}

/* ---- Lead media: bg composite + featured product overlay ---- */
.hero__media {
  position: relative;
  width: 100%;
  margin: 0;
  aspect-ratio: 850 / 364;
  overflow: hidden;
}

.hero__media-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* {{BRAND}} pouch blended into the empty centre slot */
.hero__media-overlay {
  display: none;
}

/* ============================================================
   Mobile (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  .hero__title {
     /* Heading/Mobile/H4 */
    line-height: var(--lh-logo); /* 1.4 */
  }

  .hero__subtitle {
     /* Text/Medium/Regular */
  }

  .hero__avatar {
    width: 48px;
    height: 48px;
  }

  .hero__byline {
    white-space: normal; /* allow wrap */
  }

  .hero__byline-break {
    display: inline; /* force break after the author name */
  }

  .hero__media {
    aspect-ratio: 343 / 142;
  }
}

/* ============================================================
   Intro — lead paragraphs introducing the comparison
   Figma: 4001:130 (desktop) / 4001:2101 (mobile)
   ============================================================ */

.intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin-top: var(--gap-block); /* 32px below the hero */
}

.intro__p {
  margin: 0;
  width: 100%;
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: var(--fs-lead); /* Text/Medium/Regular */
  line-height: 1.5;
  color: var(--color-text-primary);
}

/* Para 1 — Raleway + pure black, per Figma */
.intro__p--lead {
  font-family: var(--font-accent);
  color: var(--color-black);
}

/* Para 3 — emphasised */
.intro__p--bold {
  font-weight: var(--fw-bold);
}

.intro-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  padding: 22px 0;
  border-top: 1px solid #b9b9b9;
  border-bottom: 1px solid #b9b9b9;
  background: #faf9f7;
}

.intro-facts__item {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0 22px;
  border-left: 1px solid #d6d2cd;
}

.intro-facts__item:first-child {
  border-left: 0;
}

.intro-facts__value {
  margin-bottom: 7px;
  color: #a7191f;
  font-family: var(--font-body);
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.035em;
  font-variant-numeric: tabular-nums;
}

.intro-facts__label {
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  line-height: 1.35;
}

.intro-facts__source {
  width: fit-content;
  margin-top: 9px;
  color: #626262;
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.intro__citation {
  color: inherit;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

@media (max-width: 600px) {
  .intro-facts {
    padding: 17px 0;
  }

  .intro-facts__item {
    padding: 0 10px;
  }

  .intro-facts__value {
    margin-bottom: 6px;
    
  }

  .intro-facts__label {
    
    line-height: 1.3;
  }

  .intro-facts__source {
    margin-top: 7px;
    
  }
}

/* ============================================================
   Listicle — "Our Top 5…" title + the stack of product cards
   Figma: 4001:149 (Frame 12)
   ============================================================ */

.listicle {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: var(--gap-block); /* 32px below the divider */
}

.listicle__title {
  margin: 0;
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: var(--fs-h3);
  line-height: 1.3;
  color: var(--color-cyan);
}

@media (max-width: 768px) {
  .listicle__title {
    line-height: 1.2;
  }
}

/* ============================================================
   Offer — "Special Offer for Our Readers" CTA section
   Figma: 4001:721 (Frame 45)
   ============================================================ */

.offer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: var(--gap-block); /* 32px */
}

.offer__title {
  margin: 0;
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: var(--fs-h3);
  line-height: 1.3;
  color: var(--color-cyan);
}

.offer__text {
  margin: 0;
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--color-text-primary);
}

/* Tight 12px-gap benefits list, no bullets */
.offer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--color-text-primary);
}

.offer__list li {
  margin: 0;
}

.offer__list strong {
  font-weight: var(--fw-bold);
}

@media (max-width: 768px) {
  .offer__title {
    line-height: 1.2;
  }
}

/* ============================================================
   Section heading — cyan title + bold lead line
   Figma: 4001:138 (desktop) / 4001:2109 (mobile)
   Reusable block introducing a section.
   ============================================================ */

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-top: var(--gap-block); /* 32px */
}

.section-heading__title {
  margin: 0;
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: var(--fs-h3); /* Heading/H3–H4 */
  line-height: 1.3;
  color: var(--color-cyan);
}

.section-heading__lead {
  margin: 0;
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: var(--fs-lead); /* Text/Medium */
  line-height: 1.5;
  color: var(--color-text-primary);
}

/* Some section leads are regular weight rather than bold */
.section-heading__lead--regular {
  font-weight: var(--fw-regular);
}

@media (max-width: 768px) {
  .section-heading__title {
    line-height: 1.2;
  }
}

/* ============================================================
   Subsection — dark H5 heading + body paragraphs
   Figma: 4001:716 (Frame 44)
   ============================================================ */

.subsection {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-top: var(--gap-block); /* 32px */
}

.subsection__title {
  margin: 0;
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: var(--fs-h4); /* Heading/H5 */
  line-height: 1.4;
  color: var(--color-text-primary);
}

.subsection__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--color-text-primary);
}

.subsection__body p {
  margin: 0;
}

/* ============================================================
   Design Tokens — Client File | {{BRAND}} (Comparison Listicle)
   Single source of truth for colors, typography & spacing.
   ============================================================ */

:root {
  /* ---- Colors ---- */
  --color-text-primary: #303030; /* Mine Shaft — body/headings */
  --color-black: #000000;
  --color-cyan: #0197b2; /* Bondi Blue — brand accent */
  --color-cyan-2: rgba(1, 151, 178, 0.02); /* Bondi Blue 2% — header bg */
  --color-green: #01b26b; /* logo gradient start */
  --color-border: #dfdfdf; /* Alto — hairline borders */
  --color-grey-93: #ededed; /* divider line */
  --color-guide-title-bg: #efefef; /* buying-guide title bar */
  --color-guide-good-bg: #d9ead3; /* "Things to Look For" box */
  --color-guide-bad-bg: #f4cccc; /* Beauty Bush — "Red Flags" box */
  --color-toppick-bg: #fffced; /* Island Spice — "Our Top Pick" box */
  --color-toppick-border: #033167; /* Midnight Blue — dashed border */
  --color-footer-bg: #f0f0f0; /* footer background */
  --color-footer-text: #1e2538; /* footer disclaimer (navy) */
  --color-white: #ffffff;

  /* ---- Listicle card palette ---- */
  --color-card-bg: #e8e8e8; /* card background */
  --color-card-shadow: #c9c9c9; /* inner panel/box shadow */
  --color-rule: #cfcfcf; /* in-card hairline (Alto darker) */
  --color-stars: #f6bf58; /* Cream Can — rating stars (on) */
  --color-star-off: #c2c2c2; /* empty rating star */
  --color-bar-track: #eeeeee; /* Gallery — score bar track */
  --color-bar-fill: #6aa84f; /* Chelsea Cucumber — score bar fill */
  --color-pros: #14c649; /* Malachite — PROS heading */
  --color-cons: #d0021b; /* Monza — CONS heading */
  --btn-grad-top: #f3ce75;
  --btn-grad-bottom: #edb52f;
  --btn-border: #b6923e;

  /* ---- Strokes ---- */
  --stroke-weight-1: 1px;
  --stroke-weight-2: 2px;

  /* ---- Typography ---- */
  --font-body: "Albert Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --font-logo: var(--font-body);
  --font-accent: var(--font-body);
  --font-display: var(--font-body);

  /* Font sizes (px values mirror Figma type styles) */
  --fs-h1: 40px; /* Heading/Desktop/H3 — Bold 40/1.2 */
  --fs-large: 20px; /* Text/Large — 20/1.5 */
  --fs-logo: 18px; /* Logo wordmark — Helvetica Bold 18/1.4 */
  --fs-small: 14px; /* Text/Small — 14/1.5 */
  --fs-tiny: 12px; /* Text/Tiny — 12/1.5 */

  --lh-tight: 1.2;
  --lh-logo: 1.4;
  --lh-base: 1.5;

  --fw-regular: 400;
  --fw-bold: 700;

  /* ---- Layout ---- */
  --page-max: 1440px;
  --content-max: 850px; /* main article column */
  --header-pad-x: 120px; /* desktop horizontal padding */
  --header-pad-x-mobile: 16px;
  --gap-block: 32px; /* vertical gap between article blocks */
}

/* ============================================================
   Top Pick — dashed-border highlight box (image + checklist + CTA)
   Figma: 4001:730 (desktop) / 4001:2656 (mobile)
   ============================================================ */

.top-pick {
  display: flex;
  align-items: center;
  gap: 20px;
  box-sizing: border-box;
  padding: 20px;
  margin-top: var(--gap-block); /* 32px */
  background: var(--color-toppick-bg);
  border: 3px dashed var(--color-toppick-border);
}

.top-pick__image {
  flex-shrink: 0;
  width: 240px;
  height: 390px;
}

.top-pick__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-pick__content {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.top-pick__title {
  margin: 0;
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: var(--fs-h4); /* Heading/H5 */
  line-height: 1.4;
  color: var(--color-text-primary);
}

.top-pick__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.top-pick__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--color-text-primary);
}

.top-pick__check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

/* This CTA's long label can wrap on narrow widths — let the button grow
   instead of clipping the fixed-height pill. */
.top-pick .btn-cta {
  height: auto;
  min-height: 53px;
}

/* ============================================================
   Mobile (≤ 768px) — stack vertically, centered
   ============================================================ */
@media (max-width: 768px) {
  .top-pick {
    flex-direction: column;
    align-items: center;
  }
  .top-pick__image {
    height: 264px;
  }
  .top-pick__title {
    text-align: center;
  }
  /* Drop the button's side padding so the long label fits one line */
  .top-pick .btn-cta {
    padding-left: 0;
    padding-right: 0;
  }
}

.page-main { color:#252A32;font-family:var(--font-body);font-size: var(--fs-small);font-weight:400;font-style:normal;padding:0px 0px 0px 0px;background-color:#fff;background-repeat:no-repeat; }

.section-wrapper-main .section-row { max-width:1170px; } .section-wrapper-main { width:100%; } 
@media only screen and (min-width: 600px) and (max-width: 1024px) {  .section-wrapper-main { width:100%; } }@media only screen and (min-width: 0px) and (max-width: 600px) {  .section-wrapper-main { width:100%; } }@media only screen and (min-width: 600px) and (max-width: 1024px) {  .section-wrapper-main .section-row { max-width:1170px; } }@media only screen and (min-width: 0px) and (max-width: 600px) {  .section-wrapper-main .section-row { max-width:1170px; } }  .el-section-main  { display:inherit; }@media only screen and (min-width: 600px) and (max-width: 1024px) {  .el-section-main  { display:inherit; } }@media only screen and (min-width: 0px) and (max-width: 600px) {  .el-section-main  { display:inherit; } }

.el-section-main .el-row-main.section-row  { width:calc(100% - 0px); }@media only screen and (min-width: 600px) and (max-width: 1024px) { .el-section-main .el-row-main.section-row  { width:calc(100% - 0px); } }@media only screen and (min-width: 0px) and (max-width: 600px) { .el-section-main .el-row-main.section-row  { width:calc(100% - 0px); } } .el-section-main .el-row-main.section-row  { display:inherit;color:#303030;font-size: var(--fs-small);text-align:initial;font-weight:400;font-style:normal;margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;background-color:transparent;background-repeat:no-repeat;background-position:center top;background-size:100% auto;box-shadow:none;gap:0px; }.el-section-main .el-row-main.section-row  { flex-direction: row; } @media only screen and (min-width: 600px) and (max-width: 1024px) { .el-section-main .el-row-main.section-row  { display:inherit; }.el-section-main .el-row-main.section-row  { flex-direction: row; }  }@media only screen and (min-width: 0px) and (max-width: 600px) { .el-section-main .el-row-main.section-row  { display:inherit; }.el-section-main .el-row-main.section-row  { flex-direction: column; }  .el-section-main .el-row-main.section-row  > .row-column {
                              width: 100% !important;
                          }  }

.el-row-main .el-content-main  { display:inherit;margin:10px 0px 0px 0px;text-align:left; }@media only screen and (min-width: 600px) and (max-width: 1024px) { .el-row-main .el-content-main  { display:inherit; } }@media only screen and (min-width: 0px) and (max-width: 600px) { .el-row-main .el-content-main  { display:inherit; } }

/* Center the outer row on wide viewports — the page builder's removed runtime CSS used to do this; the per-page rule above sets margin:0. */
.el-section-main .el-row-main.section-row { margin: 0 auto; }

/* Better Wellness Journal masthead */
.sticky-masthead {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header {
  background: #fff;
  border-top: 0;
  border-bottom: 1px solid #111;
}

.site-header__logo-container {
  position: relative;
  justify-content: center;
  max-width: none;
  padding: 14px 24px;
}

.site-header__logo {
  width: 100%;
  height: auto;
  justify-content: center;
}

.site-header__logo-mark,
.site-header__brand {
  display: none;
}

.site-header__wordmark {
  display: block;
  width: min(100%, 680px);
  height: auto;
}

.site-header__disclaimer {
  position: absolute;
  top: 9px;
  right: max(24px, calc((100vw - 1200px) / 2));
  left: auto;
  height: auto;
  padding: 0;
  border: 0;
  display: block;
  font-size: var(--fs-micro);
  box-sizing: border-box;
}

.topic-ticker {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  overflow: hidden;
  background: #050505;
  color: #fff;
  border-bottom: 1px solid #050505;
}

.floating-ranking-cta {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: calc(100vw - 32px);
  padding: 14px 24px;
  border: 1px solid #7d1116;
  border-radius: 999px;
  background: #a7191f;
  box-shadow: 0 8px 28px rgba(61, 5, 9, .24);
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .015em;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%);
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease,
    background-color .18s ease;
}

.floating-ranking-cta:hover {
  background: #8f141a;
}

.floating-ranking-cta.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 14px);
}

#top-five-ranking {
  scroll-margin-top: 155px;
}

.topic-ticker__track {
  display: flex;
  width: max-content;
  animation: topic-ticker-scroll 57s linear infinite;
  will-change: transform;
}

.topic-ticker__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.topic-ticker__group span {
  display: flex;
  align-items: center;
  padding: 10px 18px 9px;
  font-family: var(--font-body);
  font-size: var(--fs-caption);
  font-weight: 700;
  line-height: 1;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.topic-ticker__group span::after {
  content: "•";
  margin-left: 36px;
  opacity: .75;
}

@keyframes topic-ticker-scroll {
  to {
    transform: translateX(-50%);
  }
}

.hero__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--fs-h1);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.025em;
}

@media (max-width: 1100px) {
  .site-header__disclaimer {
    display: none;
  }
}

@media (max-width: 768px) {
  .site-header__logo-container {
    padding: 12px 18px 11px;
  }

  .hero__title {
    
    line-height: 1.12;
  }

  .topic-ticker__track {
    animation-duration: 45s;
  }

  .topic-ticker__group span {
    padding: 9px 13px 8px;
    
  }

  .topic-ticker__group span::after {
    margin-left: 26px;
  }

  .floating-ranking-cta {
    bottom: max(12px, env(safe-area-inset-bottom));
    width: calc(100vw - 24px);
    max-width: 460px;
    padding: 13px 16px;
    
    white-space: normal;
  }

  #top-five-ranking {
    scroll-margin-top: 118px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .topic-ticker__track {
    animation: none;
  }

  .floating-ranking-cta {
    transition: none;
  }
}

/* ============================================================
   Editorial product rankings
   Matches the scoring-methodology system: paper background,
   hairline rules, red data accents and compact magazine type.
   ============================================================ */

.listicle {
  gap: 34px;
}

.listicle__title {
  color: var(--color-text-primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.card {
  gap: 0;
  padding: 0;
  overflow: hidden;
  border-top: 1px solid #b9b9b9;
  border-bottom: 1px solid #b9b9b9;
  background: #faf9f7;
}

.card--winner {
  border-top: 3px solid #a7191f;
}

.card__head {
  align-items: flex-start;
  gap: 24px;
  padding: 22px 24px;
  border-bottom: 1px solid #d6d2cd;
}

.card__titles {
  gap: 6px;
  text-align: left;
}

.card__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--fs-h3);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.018em;
}

.card--winner .card__title {
  text-decoration: none;
}

.card__rank {
  color: #b51c25;
  font-family: var(--font-body);
  font-size: .84em;
  font-weight: 700;
  letter-spacing: -.025em;
}

.card__subtitle {
  max-width: 650px;
  color: #585858;
  font-size: var(--fs-body);
  line-height: 1.4;
}

.card__body {
  gap: 0;
}

.card__stats {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  align-items: stretch;
  gap: 0;
  border-bottom: 1px solid #d6d2cd;
}

.card__stat {
  width: auto;
  height: 218px;
  border-left: 1px solid #d6d2cd;
  background: transparent;
}

.card__stat:first-child {
  border-left: 0;
}

.card__stat--image {
  padding: 18px 24px;
  box-shadow: none;
}

.card__stat--grade,
.card__stat--rating {
  gap: 9px;
  filter: none;
}

.card__stat-label,
.card--winner .card__stat-label {
  color: #646464;
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 700;
  line-height: 1;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.card__grade,
.card__rating-score,
.card--winner .card__grade,
.card--winner .card__rating-score,
.card--winner .card__grade-line {
  color: #b51c25;
  font-family: var(--font-body);
  font-variant-numeric: tabular-nums;
}

.card__grade {
  font-size: var(--fs-display);
  line-height: 1;
}

.card__rating-score {
  padding-top: 0;
  font-size: var(--fs-h2);
  line-height: 1;
}

.card__stars {
  padding-top: 2px;
  color: #b51c25;
  font-size: var(--fs-lead);
  line-height: 1;
  letter-spacing: .04em;
}

.card__stars-off {
  color: #c9c5c1;
}

.card__panel {
  gap: 0;
  padding: 0;
  background: transparent;
  filter: none;
}

.card__desc {
  gap: 16px;
  padding: 24px;
  font-size: var(--fs-body);
  line-height: 1.55;
}

.card .btn-cta {
  width: auto;
  min-width: 210px;
  padding: 13px 22px;
  border: 1px solid #7d1116;
  border-radius: 2px;
  background: #a7191f;
  box-shadow: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: .02em;
}

.card .btn-cta:hover {
  background: #8f141a;
}

.card__why {
  gap: 14px;
  padding: 24px;
  font-size: var(--fs-body);
  line-height: 1.5;
}

.card__why-title {
  color: #b51c25;
  font-family: var(--font-body);
  font-size: var(--fs-caption);
  letter-spacing: .09em;
  text-transform: uppercase;
}

.card__quality-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card__quality-badge {
  display: flex;
  min-height: 124px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 18px 12px;
  border: 1px solid #d9e1e9;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(31, 43, 57, .08);
  color: #263247;
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: .1em;
  text-align: center;
  text-transform: uppercase;
}

.card__quality-icon {
  width: 42px;
  height: 42px;
  color: #16a65a;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card__rule {
  border-top-color: #d6d2cd;
}

.card__scores {
  gap: 0;
  padding: 10px 24px;
}

.score {
  display: grid;
  grid-template-columns: 185px minmax(0, 1fr);
  gap: 20px;
  padding: 12px 0;
  border-top: 1px solid #e3dfdb;
}

.score:first-child {
  border-top: 0;
}

.score__label {
  font-size: var(--fs-small);
  line-height: 1.35;
}

.score__meter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 60px;
  align-items: center;
  gap: 14px;
  width: auto;
}

.score__track {
  height: 7px;
  overflow: hidden;
  background: #e1ddd8;
}

.score__fill {
  height: 7px;
  background: #b51c25;
}

.score__value {
  padding: 0;
  color: #b51c25;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.card__verdict {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #d6d2cd;
  border-bottom: 1px solid #d6d2cd;
}

.card__pros,
.card__cons {
  gap: 13px;
  padding: 0 24px 22px;
}

.card__cons {
  border-left: 1px solid #d6d2cd;
}

.card__verdict-title {
  padding-top: 20px;
  color: #2e2e2e !important;
  font-family: var(--font-body);
  font-size: var(--fs-label);
  line-height: 1;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.card__pros .card__verdict-title {
  color: #18794e !important;
}

.card__cons .card__verdict-title {
  color: #b51c25 !important;
}

.card__list {
  gap: 10px;
}

.card__list li {
  align-items: flex-start;
  gap: 10px;
  font-size: var(--fs-small);
  line-height: 1.45;
}

.card__list a {
  color: #a7191f;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.card__bullet {
  width: 19px;
  height: 19px;
  margin-top: 1px;
}

.card__notes {
  gap: 14px;
  margin: 22px 24px 24px;
  padding: 18px 20px;
  border-left: 3px solid #b51c25;
  background: #f3f0ec;
  font-size: var(--fs-body);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .listicle {
    gap: 28px;
  }

  .listicle__title {
    
  }

  .card__head {
    padding: 18px 16px;
  }

  .card__title {
    
  }

  .card__subtitle {
    
  }

  .card__grade-line {
    margin-top: 3px;
    color: #b51c25;
    font-family: var(--font-body);
    
    line-height: 1;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .card__stats {
    grid-template-columns: 1.15fr 1fr;
    gap: 0;
  }

  .card__stat {
    height: 164px;
  }

  .card__stat--image {
    padding: 16px 10px;
  }

  .card__stat-label {
    
  }

  .card__rating-score {
    
  }

  .card__stars {
    
  }

  .card__desc,
  .card__why {
    padding: 19px 16px;
  }

  .card .btn-cta {
    width: 100%;
  }

  .card__quality-badges {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .card__quality-badge {
    min-height: 0;
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
    padding: 13px 16px;
    text-align: left;
  }

  .card__quality-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
  }

  .card__scores {
    padding: 8px 16px;
  }

  .score {
    display: flex;
    gap: 7px;
    padding: 11px 0;
  }

  .score__label {
    
  }

  .score__meter {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 54px;
    gap: 10px;
  }

  .score__value {
    
  }

  .card__verdict {
    grid-template-columns: 1fr;
  }

  .card__pros,
  .card__cons {
    padding: 0 16px 18px;
  }

  .card__cons {
    border-top: 1px solid #d6d2cd;
    border-left: 0;
  }

  .card__notes {
    margin: 18px 16px 20px;
    padding: 16px;
    
  }
}

/* ============================================================
   Editorial article sections
   Extends the product-card visual language through the rest
   of the page without changing the underlying content order.
   ============================================================ */

.divider {
  height: 1px;
  border-top: 1px solid #b9b9b9;
}

.section-heading:not(.section-heading--weighted) {
  gap: 10px;
  padding-top: 25px;
  border-top: 1px solid #b9b9b9;
}

.section-heading:not(.section-heading--weighted) .section-heading__title,
.offer__title {
  color: var(--color-text-primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.section-heading:not(.section-heading--weighted) .section-heading__lead {
  color: #555;
  font-size: var(--fs-body);
  font-weight: 400;
}

.why-details {
  gap: 28px;
  margin-top: 22px;
}

.why-details > .criteria {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  border-top: 1px solid #b9b9b9;
  border-bottom: 1px solid #b9b9b9;
  background: #faf9f7;
}

.why-details > .criteria .criteria__item {
  min-width: 0;
  padding: 22px 24px;
  border-top: 1px solid #d6d2cd;
  border-left: 1px solid #d6d2cd;
  font-size: var(--fs-body);
  line-height: 1.5;
}

.why-details > .criteria .criteria__item:nth-child(-n + 2) {
  border-top: 0;
}

.why-details > .criteria .criteria__item:nth-child(odd) {
  border-left: 0;
}

.why-details > .criteria .criteria__item strong {
  display: inline-block;
  margin-bottom: 7px;
  color: #b51c25;
  font-family: var(--font-body);
  font-size: var(--fs-caption);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.guide {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid #b9b9b9;
  border-bottom: 1px solid #b9b9b9;
  background: #faf9f7;
}

.guide__title {
  grid-column: 1 / -1;
  padding: 21px 24px;
  border-bottom: 1px solid #b9b9b9;
  background: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--fs-h3);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.018em;
}

.guide__box {
  gap: 0;
  padding: 0 24px 22px;
  background: transparent;
  font-size: var(--fs-small);
  line-height: 1.5;
}

.guide__box--bad {
  border-left: 1px solid #d6d2cd;
}

.guide__heading {
  padding: 19px 0 15px;
  color: #b51c25;
  font-family: var(--font-body);
  font-size: var(--fs-label);
  line-height: 1;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.guide__item {
  padding: 14px 0;
  border-top: 1px solid #e3dfdb;
}

.guide__item strong {
  display: inline-block;
  margin-bottom: 4px;
}

.subsection {
  gap: 14px;
  padding: 25px 0 4px;
  border-top: 1px solid #b9b9b9;
}

.subsection__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--fs-h3);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: -.018em;
}

.subsection__body {
  gap: 16px;
  max-width: 760px;
  color: #3f3f3f;
  font-size: var(--fs-body);
  line-height: 1.55;
}

.offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 26px;
  padding: 25px 24px 24px;
  border-top: 3px solid #a7191f;
  border-bottom: 1px solid #b9b9b9;
  background: #faf9f7;
}

.offer__title {
  grid-column: 1 / -1;
}

.offer__text {
  grid-column: 1;
  max-width: 580px;
  color: #444;
  font-size: var(--fs-body);
  line-height: 1.5;
}

.offer__list {
  grid-column: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid #d6d2cd;
  border-bottom: 1px solid #d6d2cd;
  font-size: var(--fs-small);
  line-height: 1.4;
}

.offer__list li {
  padding: 14px 16px;
  border-left: 1px solid #d6d2cd;
}

.offer__list li:first-child {
  border-left: 0;
}

.offer > .btn-cta,
.top-pick .btn-cta {
  width: auto;
  min-width: 220px;
  height: auto;
  min-height: 46px;
  padding: 12px 22px;
  border: 1px solid #7d1116;
  border-radius: 2px;
  background: #a7191f;
  filter: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .02em;
}

.offer > .btn-cta {
  grid-column: 2;
  grid-row: 2 / 4;
  align-self: center;
}

.offer > .btn-cta:hover,
.top-pick .btn-cta:hover {
  background: #8f141a;
}

.top-pick {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-top: 3px solid #a7191f;
  border-bottom: 1px solid #b9b9b9;
  background: #faf9f7;
}

.top-pick__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  min-height: 330px;
  padding: 26px;
  border-right: 1px solid #d6d2cd;
  background: #f3f0ec;
}

.top-pick__image img {
  width: 100%;
  height: 280px;
  object-fit: contain;
}

.top-pick__content {
  gap: 19px;
  padding: 26px;
}

.top-pick__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--fs-h3);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: -.018em;
}

.top-pick__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid #d6d2cd;
}

.top-pick__list li {
  align-items: flex-start;
  gap: 9px;
  min-width: 0;
  padding: 12px 12px 12px 0;
  border-bottom: 1px solid #e3dfdb;
  font-size: var(--fs-small);
  line-height: 1.42;
}

.top-pick__list li:nth-child(even) {
  padding-right: 0;
  padding-left: 12px;
  border-left: 1px solid #d6d2cd;
}

.top-pick__check {
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

.top-pick .btn-cta {
  align-self: flex-start;
}

.site-footer {
  border-top: 1px solid #b9b9b9;
  background: #faf9f7;
}

.site-footer__inner {
  gap: 14px;
  padding-top: 32px;
  padding-bottom: 32px;
}

.site-footer__logo {
  display: none;
}

.site-footer__brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--fs-body);
  font-weight: 400;
  letter-spacing: .01em;
}

.site-footer__disclaimer {
  max-width: 900px;
}

.site-footer__disclaimer p {
  color: #666;
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  font-style: normal;
  line-height: 1.45;
}

@media (max-width: 768px) {
  .section-heading:not(.section-heading--weighted) {
    padding-top: 21px;
  }

  .section-heading:not(.section-heading--weighted) .section-heading__title,
  .offer__title {
    
  }

  .why-details > .criteria {
    grid-template-columns: 1fr;
  }

  .why-details > .criteria .criteria__item {
    padding: 18px 16px;
    border-top: 1px solid #d6d2cd;
    border-left: 0;
  }

  .why-details > .criteria .criteria__item:first-child {
    border-top: 0;
  }

  .guide {
    grid-template-columns: 1fr;
  }

  .guide__title {
    padding: 18px 16px;
    
  }

  .guide__box {
    padding: 0 16px 17px;
  }

  .guide__box--bad {
    border-top: 1px solid #b9b9b9;
    border-left: 0;
  }

  .subsection {
    padding-top: 21px;
  }

  .subsection__title {
    
  }

  .subsection__body {
    
  }

  .offer {
    display: flex;
    gap: 17px;
    padding: 21px 16px 20px;
  }

  .offer__list {
    grid-template-columns: 1fr;
  }

  .offer__list li {
    padding: 11px 0;
    border-top: 1px solid #e3dfdb;
    border-left: 0;
  }

  .offer__list li:first-child {
    border-top: 0;
  }

  .offer > .btn-cta,
  .top-pick .btn-cta {
    width: 100%;
  }

  .top-pick {
    grid-template-columns: 1fr;
  }

  .top-pick__image {
    min-height: 0;
    padding: 20px 20px 16px;
    border-right: 0;
    border-bottom: 1px solid #d6d2cd;
  }

  .top-pick__image img {
    height: 220px;
  }

  .top-pick__content {
    align-items: stretch;
    gap: 17px;
    padding: 20px 16px;
  }

  .top-pick__title {
    
    text-align: left;
  }

  .top-pick__list {
    grid-template-columns: 1fr;
  }

  .top-pick__list li,
  .top-pick__list li:nth-child(even) {
    padding: 11px 0;
    border-left: 0;
  }
}

/* ============================================================
   Product card layout — clean review (site default)
   Uses stronger grouping and clear positive/negative color cues
   for faster scanning. Applied via card-layout-clean on <body>.
   ============================================================ */

.card-layout-clean .listicle {
  gap: 42px;
}

.card-layout-clean .card {
  overflow: visible;
  border-top: 0;
  border-bottom: 0;
  background: #fff;
}

.card-layout-clean .card__head {
  padding: 22px 0 17px;
  border-top: 1px solid #aaa6a1;
  border-bottom: 1px solid #aaa6a1;
  background: #fff;
}

.card-layout-clean .card--winner .card__head {
  padding-top: 19px;
  border-top: 4px solid #a7191f;
}

.card-layout-clean .card__body {
  gap: 0;
}

.card-layout-clean .card__stats {
  grid-template-columns: 1.45fr .8fr .9fr;
  margin-top: 18px;
  border: 1px solid #d6d2cd;
  background: #faf9f7;
}

.card-layout-clean .card__stat {
  height: 194px;
}

.card-layout-clean .card__stat--image {
  padding: 16px 28px;
  background: #f3f0ec;
}

.card-layout-clean .card__panel {
  gap: 18px;
  padding-top: 18px;
  background: #fff;
}

.card-layout-clean .card__desc {
  gap: 13px;
  padding: 0 4px;
  font-size: var(--fs-body);
}

.card-layout-clean .card__why {
  gap: 12px;
  padding: 21px 22px;
  border: 1px solid #dedad5;
  background: #faf9f7;
}

.card-layout-clean .card__rule {
  display: none;
}

.card-layout-clean .card__scores {
  position: relative;
  gap: 0;
  padding: 49px 22px 13px;
  border-top: 1px solid #aaa6a1;
  border-bottom: 1px solid #aaa6a1;
  background: #faf9f7;
}

.card-layout-clean .card__scores::before {
  content: "Taste baseline + eight promise scores";
  position: absolute;
  top: 18px;
  left: 22px;
  color: #343434;
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 700;
  line-height: 1;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.card-layout-clean .score {
  padding: 11px 0;
}

.card-layout-clean .card__verdict {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  border: 0;
  background: #fff;
}

.card-layout-clean .card__pros,
.card-layout-clean .card__cons {
  gap: 13px;
  padding: 0 20px 20px;
  border: 1px solid;
}

.card-layout-clean .card__pros {
  border-color: #b9d9c7;
  border-top: 3px solid #18794e;
  background: #f2f8f4;
}

.card-layout-clean .card__cons {
  border-color: #e4c1c4;
  border-top: 3px solid #b51c25;
  background: #fbf2f2;
}

.card-layout-clean .card__verdict-title {
  padding-top: 17px;
  font-size: var(--fs-caption);
}

.card-layout-clean .card__pros .card__verdict-title {
  color: #18794e !important;
}

.card-layout-clean .card__cons .card__verdict-title {
  color: #b51c25 !important;
}

.card-layout-clean .card__notes {
  gap: 12px;
  margin: 0;
  padding: 20px 22px;
  border-left: 3px solid #a7191f;
  background: #f3f0ec;
}

.card-layout-clean .card__notes .btn-cta {
  align-self: center;
  margin-top: 6px;
}

@media (max-width: 768px) {
  .card-layout-clean .listicle {
    gap: 34px;
  }

  .card-layout-clean .card__head {
    padding: 18px 0 14px;
  }

  .card-layout-clean .card--winner .card__head {
    padding-top: 15px;
  }

  .card-layout-clean .card__stats {
    grid-template-columns: 1.15fr 1fr;
    margin-top: 14px;
  }

  .card-layout-clean .card__stat {
    height: 158px;
  }

  .card-layout-clean .card__panel {
    gap: 14px;
    padding-top: 15px;
  }

  .card-layout-clean .card__desc {
    padding: 0;
    
  }

  .card-layout-clean .card__why,
  .card-layout-clean .card__notes {
    padding: 17px 16px;
  }

  .card-layout-clean .card__scores {
    padding: 45px 16px 9px;
  }

  .card-layout-clean .card__scores::before {
    top: 17px;
    left: 16px;
  }

  .card-layout-clean .card__verdict {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .card-layout-clean .card__pros,
  .card-layout-clean .card__cons {
    padding: 0 16px 17px;
  }

  .card-layout-clean .card__cons {
    border-left: 1px solid #e4c1c4;
  }
}

/* Keep the opening copy at the same reading size as the reviews. */
.hero__subtitle,
.intro__p {
  font-size: var(--fs-body);
  line-height: 1.55;
}

@media (max-width: 768px) {
  .hero__subtitle,
  .intro__p {
    
  }
}

/* ============================================================
   Category-first introduction — alternating editorial story
   ============================================================ */

.intro-story__head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: 10px;
  padding: 27px 0 5px;
  border-top: 1px solid #b9b9b9;
}

.intro-story__eyebrow {
  color: #b51c25;
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 700;
  line-height: 1;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.intro-story__title {
  max-width: 760px;
  margin: 0;
  color: var(--color-text-primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.intro-story__lead {
  max-width: 720px;
  margin: 0;
  color: #555;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.55;
}

.intro-story {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  margin-top: 4px;
  border-top: 1px solid #b9b9b9;
  border-bottom: 1px solid #b9b9b9;
  background: #faf9f7;
}

.intro-feature {
  display: grid;
  grid-template-columns: 112px 292px minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  width: 100%;
  padding: 0;
  border-top: 1px solid #d6d2cd;
}

.intro-feature:first-child {
  border-top: 0;
}

.intro-feature__label {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 26px 18px;
  color: #b51c25;
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.intro-feature__number {
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--fs-h4);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.025em;
}

/* Photo slot — swap the placeholder SVG for a real photo with the
   same file name (4:3 works best; the box crops via object-fit). */
.intro-feature__media {
  margin: 0;
  padding: 24px 0 25px 24px;
  border-left: 1px solid #d6d2cd;
}

.intro-feature__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid #e3dfd9;
  background: #fff;
}

.intro-feature__media .intro-feature__image--contain {
  object-fit: contain;
  background: #887552;
}

.intro-feature__media .intro-feature__image--quality {
  object-fit: contain;
  background: #e3e1de;
}

.intro-feature__media .intro-feature__image--gut {
  object-fit: contain;
  background: #b8a384;
}

.intro-feature__media .intro-feature__image--simplicity {
  object-fit: contain;
  background: #fbf9ed;
}

.intro-feature__copy {
  display: block;
  min-width: 0;
  padding: 22px 26px 25px;
}

.intro-feature__copy h3 {
  margin: 0 0 12px;
  color: #202020;
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--fs-h4);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -.012em;
}

.intro-feature__copy p {
  margin: 0;
  color: #353535;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
}

.intro-feature__copy p + p {
  margin-top: 12px;
}

@media (max-width: 1024px) {
  .intro-feature {
    grid-template-columns: 96px 232px minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .intro-story__head {
    margin-top: 5px;
    padding-top: 22px;
  }

  .intro-story__title {
    
  }

  .intro-story__lead {
    
  }

  .intro-feature {
    grid-template-columns: 1fr;
  }

  .intro-feature__label {
    padding: 18px 15px 0;
  }

  .intro-feature__media {
    padding: 14px 15px 0;
    border-left: 0;
  }

  .intro-feature__copy {
    padding: 16px 15px 21px;
  }

  .intro-feature__copy h3 {
    
  }

  .intro-feature__copy p {
    
    line-height: 1.55;
  }

}

/* ============================================================
   Reader-offer emphasis for the closing top-pick block —
   framed card, ribbon, bold deal line and full-width CTA.
   ============================================================ */

.top-pick {
  position: relative;
  grid-template-columns: 300px minmax(0, 1fr);
  margin-top: 44px;
  overflow: visible;
  border: 2px solid #a7191f;
  border-radius: 3px;
  background: #fdfaf4;
  box-shadow: 0 10px 26px -18px rgba(60, 20, 20, .45);
}

.top-pick__ribbon {
  position: absolute;
  top: -16px;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  padding: 9px 22px;
  border-radius: 2px;
  background: #a7191f;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--fs-caption);
  font-weight: 700;
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.top-pick__image {
  position: relative;
  min-height: 360px;
  padding: 40px 26px 56px;
  border-right: 1px solid #eadfd2;
  background: #f6f1e9;
}

.top-pick__image img {
  height: 300px;
}

.top-pick__rank {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 14px;
  border: 1px solid #a7191f;
  border-radius: 2px;
  background: #fff;
  color: #a7191f;
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.top-pick__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 34px 38px 28px;
  text-align: center;
}

.top-pick__eyebrow {
  color: #8a857e;
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.top-pick__title {
  margin: 8px 0 0;
  font-size: var(--fs-h2);
}

.top-pick__deal {
  margin: 12px 0 0;
  color: #a7191f;
  font-family: var(--font-body);
  font-size: var(--fs-lead);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.top-pick__list {
  width: 100%;
  margin: 22px 0 0;
  text-align: left;
}

.top-pick__list li {
  position: relative;
  padding-left: 26px;
  font-size: var(--fs-small);
}

.top-pick__list li::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #a7191f;
}

.top-pick__list li::after {
  content: "";
  position: absolute;
  top: 17.5px;
  left: 5.5px;
  width: 7px;
  height: 4.5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.top-pick__list li:nth-child(even) {
  padding-left: 38px;
}

.top-pick__list li:nth-child(even)::before {
  left: 14px;
}

.top-pick__list li:nth-child(even)::after {
  left: 17.5px;
}

.top-pick .btn-cta.top-pick__cta {
  align-self: stretch;
  width: 100%;
  min-height: 58px;
  margin-top: 24px;
  border-radius: 3px;
  font-size: var(--fs-body);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.top-pick__guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 0;
  color: #2b2b2b;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 700;
}

.top-pick__guarantee svg {
  flex: 0 0 auto;
}

.top-pick__fineprint {
  margin: 10px 0 0;
  color: #8a857e;
  font-family: var(--font-body);
  font-size: var(--fs-label);
}

/* Compact closing offer — editorial split layout with product gallery. */
.reader-offer {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
  margin-top: 44px;
  overflow: hidden;
  border: 1px solid #d6d2cd;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 12px 30px -24px rgba(45, 32, 25, .55);
}

.reader-offer__gallery {
  min-width: 0;
  padding: 22px;
  border-right: 1px solid #d6d2cd;
  background: #f3f0ec;
}

.reader-offer__main {
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid #d6d2cd;
  border-radius: 3px;
  background: #e6e2dc;
}

.reader-offer__main img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reader-offer__thumbs {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 7px;
  margin-top: 12px;
}

.reader-offer__thumb {
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid #c8c3bd;
  border-radius: 2px;
  background: #fff;
  cursor: pointer;
}

.reader-offer__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reader-offer__thumb:hover {
  border-color: #a7191f;
}

.reader-offer__thumb:focus-visible {
  outline: 3px solid rgba(167, 25, 31, .28);
  outline-offset: 2px;
}

.reader-offer__thumb.is-active {
  border: 2px solid #a7191f;
  box-shadow: 0 0 0 2px #fff;
}

.reader-offer__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 42px 36px;
  text-align: center;
}

.reader-offer__eyebrow {
  margin: 0;
  color: #77716b;
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 700;
  line-height: 1;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.reader-offer__discount {
  margin: 14px 0 0;
  color: #b51c25;
  font-family: var(--font-body);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.025em;
  text-transform: uppercase;
}

.reader-offer__title {
  max-width: 420px;
  margin: 16px 0 0;
  color: var(--color-text-primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.1vw, 40px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.025em;
}

.reader-offer__price {
  margin: 16px 0 0;
  color: #4a4743;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  line-height: 1.45;
}

.reader-offer .btn-cta.reader-offer__cta {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  border: 1px solid #7d1116;
  border-radius: 3px;
  background: #a7191f;
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.reader-offer .btn-cta.reader-offer__cta:hover {
  background: #8f141a;
}

.reader-offer__guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 18px 0 0;
  color: #2f2e2c;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 700;
  line-height: 1.3;
}

.reader-offer__guarantee svg {
  flex: 0 0 auto;
}

.reader-offer__guarantee svg path:first-child {
  fill: #a7191f;
}

.reader-offer__guarantee svg path:last-child {
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reader-offer__fineprint {
  max-width: 370px;
  margin: 10px 0 0;
  color: #88827b;
  font-family: var(--font-body);
  font-size: var(--fs-label);
  line-height: 1.45;
}

@media (max-width: 768px) {
  .reader-offer {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .reader-offer__gallery {
    padding: 14px;
    border-right: 0;
    border-bottom: 1px solid #d6d2cd;
  }

  .reader-offer__thumbs {
    grid-template-columns: repeat(9, 54px);
    gap: 7px;
    overflow-x: auto;
    padding: 2px 2px 6px;
  }

  .reader-offer__content {
    padding: 30px 20px 26px;
  }

  .reader-offer__discount {
    font-size: 30px;
  }

  .reader-offer__title {
    font-size: 31px;
  }

  .top-pick {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .top-pick__ribbon {
    max-width: 88%;
    white-space: normal;
    text-align: center;
  }

  .top-pick__image {
    min-height: 0;
    padding: 34px 20px 52px;
    border-right: 0;
    border-bottom: 1px solid #eadfd2;
  }

  .top-pick__image img {
    height: 230px;
  }

  .top-pick__content {
    padding: 26px 18px 24px;
  }

  .top-pick__title {
    
  }

  .top-pick__deal {
    
  }

  .top-pick__list li,
  .top-pick__list li:nth-child(even) {
    padding-left: 26px;
  }

  .top-pick__list li:nth-child(even)::before {
    left: 2px;
  }

  .top-pick__list li:nth-child(even)::after {
    left: 5.5px;
  }
}

/* ============================================================
   Typography scale — sizes taken from the reference advertorial
   (body 17px/1.65, lead 20px, h1 48/40, section h2 36/26,
   card h2 28/24, offer title 36/27). Keeps our families/weights.
   ============================================================ */

/* -- reading text: 17px -- */
.subsection__body,
.offer__text,
.offer__list li,
.card__desc,
.card__list li,
.guide__item,
.intro-feature__copy p,
.t-review-fallback {
  font-size: var(--fs-body);
  line-height: 1.62;
}

/* -- intro paragraphs & section leads: 20px, one tier -- */
.hero__subtitle,
.intro__p,
.intro-story__lead {
  font-size: var(--fs-lead);
  font-weight: 500;
  line-height: 1.55;
}

/* -- headline scale -- */
.hero__title {
  font-size: var(--fs-h1);
  line-height: 1.05;
}

.listicle__title,
.offer__title,
.intro-story__title,
.top-pick__title {
  font-size: var(--fs-h2);
  line-height: 1.12;
}

.subsection__title,
.card__title,
.guide__title {
  font-size: var(--fs-h3);
  line-height: 1.18;
}

.intro-feature__copy h3 {
  font-size: var(--fs-h4);
}

@media (max-width: 768px) {
  .subsection__body,
  .offer__text,
  .offer__list li,
  .card__desc,
  .card__list li,
  .guide__item,
  .intro-feature__copy p {
    
    line-height: 1.58;
  }

  .hero__subtitle,
  .intro__p,
  .intro-story__lead {
    
  }

  .hero__title {
    
    line-height: 1.06;
  }

  .listicle__title,
  .offer__title,
  .intro-story__title {
    
  }

  .top-pick__title {
    
  }

  .subsection__title,
  .card__title,
  .guide__title {
    
  }

  .intro-feature__copy h3 {
    
  }
}

/* ============================================================
   TYPE GRID — the single source of truth for every font size.
   Do not write px font sizes in rules; use these tokens.
   Tier                 desktop   <=768px
   display numerals     54        42
   h1  page title       48        38
   h2  section title    36        28
   h3  card/subsection  28        24
   h4  minor heading    24        20
   lead intro/deks      20        18
   body reading text    17        16
   small secondary      14        13
   caption eyebrows     12        11
   label uppercase tags 11        10
   micro fine print     10        10
   ============================================================ */
:root {
  --fs-display: 54px;
  --fs-h1: 48px;
  --fs-h2: 36px;
  --fs-h3: 28px;
  --fs-h4: 24px;
  --fs-lead: 20px;
  --fs-body: 17px;
  --fs-small: 14px;
  --fs-caption: 12px;
  --fs-label: 11px;
  --fs-micro: 10px;
  /* legacy aliases */
  --fs-large: var(--fs-lead);
  --fs-tiny: var(--fs-caption);
}

@media (max-width: 768px) {
  :root {
    --fs-display: 42px;
    --fs-h1: 38px;
    --fs-h2: 28px;
    --fs-h3: 24px;
    --fs-h4: 20px;
    --fs-lead: 18px;
    --fs-body: 16px;
    --fs-small: 13px;
    --fs-caption: 11px;
    --fs-label: 10px;
  }
}

/* ============================================================
   Stats strip on small screens — stacked rows (number | label)
   instead of three squeezed columns.
   ============================================================ */
@media (max-width: 600px) {
  .intro-facts {
    grid-template-columns: 1fr;
    padding: 4px 0;
  }

  .intro-facts__item {
    display: grid;
    grid-template-columns: minmax(96px, auto) minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 16px;
    padding: 14px 16px;
    border-left: 0;
    border-top: 1px solid #e3dfdb;
  }

  .intro-facts__item:first-child {
    border-top: 0;
  }

  .intro-facts__value {
    grid-row: 1 / 3;
    align-self: center;
    margin-bottom: 0;
    white-space: nowrap;
  }

  .intro-facts__label {
    grid-column: 2;
    align-self: end;
  }

  .intro-facts__source {
    grid-column: 2;
    align-self: start;
    margin-top: 5px;
  }
}
