:root {
  color-scheme: dark;
  --bg: #0a0a0a;
  --ink: #f3efe6;
  --muted: #9f998f;
  --line: #2a2a2a;
  --soft: #161616;
  --red: #ff3b3b;
  --yellow: #efc94c;
  --green: #4fd86a;
}

* {
  box-sizing: border-box;
}

body.article-page {
  min-height: 100vh;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.article-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.article-nav__back {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
}

.article-nav__back:hover {
  border-color: var(--red);
  color: #fff;
  background: rgba(255, 59, 59, 0.12);
}

.article-nav__brand {
  justify-self: center;
  color: var(--red);
  font-family: "Bungee", sans-serif;
  font-size: 0.78rem;
  text-decoration: none;
  white-space: nowrap;
}

.article-nav nav {
  justify-self: end;
  display: flex;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 700;
}

.article-nav__scan {
  color: var(--ink);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 59, 59, 0.45);
  background: rgba(255, 59, 59, 0.12);
}

.article-nav__scan:hover {
  background: rgba(255, 59, 59, 0.22);
}

.article-shell {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0 72px;
}

.article-columns {
  display: block;
}

.article-columns--with-label {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 36px 32px;
  align-items: start;
}

.article-main {
  min-width: 0;
}

.article-aside {
  position: sticky;
  top: 20px;
}

.article-back {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin: 0 0 14px;
  padding: 0 16px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.article-back:hover {
  border-color: var(--red);
  background: rgba(255, 59, 59, 0.14);
}

.article-crumbs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.article-hero {
  margin-bottom: 24px;
}

.article-hero__eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-hero h1,
.article-missing h1 {
  max-width: 16ch;
  margin: 0;
  font-family: "Bungee", sans-serif;
  font-size: clamp(1.6rem, 5vw, 2.35rem);
  line-height: 1.15;
}

.article-hero__dek {
  max-width: 36em;
  margin: 16px 0 12px;
  color: #d9d3c8;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.55;
}

.article-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: var(--muted);
  font-size: 0.85rem;
}

.scan-summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  margin: 24px 0 28px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--soft);
}

.scan-summary--slop { border-color: rgba(255, 59, 59, 0.55); }
.scan-summary--mid { border-color: rgba(239, 201, 76, 0.55); }
.scan-summary--based { border-color: rgba(79, 216, 106, 0.55); }

.scan-summary__score {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 64px;
}

.scan-summary__score strong {
  font-family: "Bungee", sans-serif;
  font-size: 1.7rem;
  line-height: 1;
}

.scan-summary__score span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
}

.scan-summary__name,
.scan-summary__verdict {
  margin: 0;
}

.scan-summary__name {
  font-size: 1rem;
  font-weight: 800;
}

.scan-summary__verdict {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.scan-summary > a {
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-media {
  margin: 0 0 28px;
}

.article-media img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: min(70vh, 480px);
  height: auto;
  object-fit: contain;
  object-position: center top;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #111;
}

.article-media figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
}

.article-media figcaption a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-pull {
  margin: 0 0 36px;
  padding: 0 0 0 16px;
  border-left: 3px solid var(--red);
  background: none;
}

.article-pull p {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.45;
  color: #fff8ee;
}

.article-body {
  display: grid;
  gap: 40px;
}

.article-section {
  scroll-margin-top: 20px;
}

.article-section h2,
.article-sources h2 {
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.3;
  text-transform: uppercase;
}

.article-section h2::before {
  content: none;
}

.article-section p {
  margin: 0 0 14px;
  color: #e7e1d6;
  font-size: 1.05rem;
  line-height: 1.75;
}

.article-section p:last-child {
  margin-bottom: 0;
}

/* Clean readable lists — no stacked cards */
.article-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  background: none;
  border-left: 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: #e7e1d6;
}

.article-list li:first-child {
  padding-top: 2px;
}

.article-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.article-list li strong {
  display: inline;
  color: #fff;
  font-weight: 800;
}

/* FDA-style food / nutrition label panel — high contrast, stacked rows */
.food-label {
  padding: 16px 18px 14px;
  border: 3px solid #111;
  outline: 2px solid #111;
  outline-offset: 4px;
  background: #fffdf6;
  color: #111;
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.35);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.food-label__block + .food-label__block {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 6px solid #111;
}

.food-label__kicker {
  margin: 0 0 2px;
  color: #111;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.food-label__title {
  margin: 0 0 8px;
  padding: 0 0 8px;
  border-bottom: 8px solid #111;
  color: #111;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-transform: none;
}

.food-label__subtitle {
  margin: 0 0 8px;
  padding-bottom: 6px;
  border-bottom: 3px solid #111;
  color: #111;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.2;
}

.food-label__serving {
  margin: 0 0 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #111;
  color: #222;
  font-size: 0.88rem;
  font-weight: 700;
}

.article-list--label {
  margin: 0;
}

.food-label .article-list--specs.article-list--label li,
.food-label .article-list--bullets.article-list--label li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
  align-items: start;
  padding: 10px 0;
  border-bottom: 1px solid #222;
  border-left: 0;
  background: none;
  color: #111;
  font-size: 0.95rem;
  line-height: 1.45;
}

.food-label .article-list--specs.article-list--label li:first-child {
  padding-top: 4px;
  border-top: 4px solid #111;
}

.food-label .article-list--specs.article-list--label li:last-child,
.food-label .article-list--bullets.article-list--label li:last-child {
  border-bottom: 4px solid #111;
  padding-bottom: 11px;
}

.food-label .article-list--label li strong {
  display: block;
  color: #111;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.food-label .article-list--label li span {
  display: block;
  color: #111;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
}

.food-label .article-list--label li.is-buy strong { color: #166534; }
.food-label .article-list--label li.is-skip strong { color: #9b1c1c; }

.food-label--media .food-label__title {
  font-size: 1.35rem;
}

.food-label .article-list--label li strong {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px 10px;
}

.signal-tier {
  display: inline-block;
  flex: none;
  padding: 3px 7px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-style: normal;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.signal-tier--good { color: #166534; background: rgba(22, 101, 52, 0.08); }
.signal-tier--warn { color: #92400e; background: rgba(146, 64, 14, 0.08); }
.signal-tier--bad { color: #9b1c1c; background: rgba(155, 28, 28, 0.08); }

.food-label .article-list--label li.is-good span { color: #14532d; }
.food-label .article-list--label li.is-warn span { color: #78350f; }
.food-label .article-list--label li.is-bad span { color: #7f1d1d; }

/* Movie / TV / product facts — dossier, not a nutrition label */
.facts-sheet {
  padding: 18px 18px 16px;
  border: 1px solid rgba(231, 225, 214, 0.22);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.04), transparent 42%),
    #141210;
  color: #e7e1d6;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.facts-sheet__block + .facts-sheet__block {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(231, 225, 214, 0.16);
}

.facts-sheet__kicker {
  margin: 0 0 6px;
  color: #c4b59a;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.facts-sheet__title {
  margin: 0 0 6px;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-transform: none;
}

.facts-sheet__note {
  margin: 0 0 14px;
  color: rgba(231, 225, 214, 0.62);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.4;
}

.facts-sheet__subtitle {
  margin: 0 0 10px;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}

.facts-sheet .article-list--specs.article-list--label li,
.facts-sheet .article-list--bullets.article-list--label li {
  display: grid;
  grid-template-columns: minmax(7rem, 38%) 1fr;
  gap: 8px 14px;
  align-items: start;
  padding: 11px 0;
  border-bottom: 1px solid rgba(231, 225, 214, 0.12);
  border-left: 0;
  background: none;
  color: #e7e1d6;
  font-size: 0.92rem;
  line-height: 1.4;
}

.facts-sheet .article-list--specs.article-list--label li:first-child,
.facts-sheet .article-list--bullets.article-list--label li:first-child {
  padding-top: 0;
  border-top: 0;
}

.facts-sheet .article-list--specs.article-list--label li:last-child,
.facts-sheet .article-list--bullets.article-list--label li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.facts-sheet .article-list--label li strong {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  padding-top: 2px;
  color: rgba(231, 225, 214, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* The nutrition-label palette is tuned for white paper; the dossier is dark. */
.facts-sheet .signal-tier--good {
  color: #7ee2a8;
  background: rgba(126, 226, 168, 0.12);
}

.facts-sheet .signal-tier--warn {
  color: #f0c674;
  background: rgba(240, 198, 116, 0.12);
}

.facts-sheet .signal-tier--bad {
  color: #ff9a9a;
  background: rgba(255, 154, 154, 0.12);
}

.facts-sheet .article-list--label li span {
  display: block;
  color: #f3eee4;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
  text-align: left;
}

.facts-sheet--credits .article-list--specs.article-list--label li {
  grid-template-columns: 1fr;
  gap: 2px;
}

.facts-sheet--credits .article-list--label li strong {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.facts-sheet--credits .article-list--label li span {
  font-size: 0.98rem;
  font-weight: 600;
}

.audience-cards--on-dark .audience-card {
  border-color: rgba(231, 225, 214, 0.2);
}

.audience-cards--on-dark .audience-card--buy {
  background: rgba(22, 101, 52, 0.22);
}

.audience-cards--on-dark .audience-card--skip {
  background: rgba(155, 28, 28, 0.22);
}

.audience-cards--on-dark .audience-card p {
  color: #f3eee4;
}

.audience-cards--on-dark .audience-card--buy .audience-card__tag {
  color: #86efac;
}

.audience-cards--on-dark .audience-card--skip .audience-card__tag {
  color: #fca5a5;
}

/* Who It's For — Buy / Skip cards */
.audience-cards {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.audience-card {
  padding: 10px 12px;
  border: 2px solid #111;
  background: #fff;
}

.audience-card--buy {
  background: #e8f8ee;
}

.audience-card--skip {
  background: #ffe8e8;
}

.audience-card__tag {
  display: inline-block;
  margin-bottom: 4px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audience-card--buy .audience-card__tag {
  color: #166534;
}

.audience-card--skip .audience-card__tag {
  color: #9b1c1c;
}

.audience-card p {
  margin: 0;
  color: #111;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.45;
}

/* Category hubs — crawlable directories */
.hub-shell {
  max-width: 760px;
}

.hub-hero {
  margin: 0 0 28px;
}

.hub-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 18px;
}

.hub-tabs a {
  color: rgba(231, 225, 214, 0.7);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}

.hub-tabs a[aria-current="page"],
.hub-tabs a:hover {
  color: #fff;
  border-bottom-color: #c43c3c;
}

.hub-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hub-row a {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(231, 225, 214, 0.12);
  color: inherit;
  text-decoration: none;
}

.hub-row a:hover .hub-row__name {
  color: #fff;
}

.hub-row__score {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.hub-row__score strong {
  font-family: "Bungee", sans-serif;
  font-size: 1.55rem;
  color: #fff;
}

.hub-row--based .hub-row__score strong { color: #86efac; }
.hub-row--mid .hub-row__score strong { color: #f0c674; }
.hub-row--slop .hub-row__score strong { color: #ff8a8a; }

.hub-row__score em {
  margin-top: 4px;
  font-style: normal;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(231, 225, 214, 0.55);
}

.hub-row__name {
  display: block;
  color: #f3eee4;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
}

.hub-row__verdict {
  display: block;
  margin-top: 3px;
  color: rgba(231, 225, 214, 0.62);
  font-size: 0.9rem;
  line-height: 1.4;
}

.hub-row__band {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: rgba(231, 225, 214, 0.45);
}

.hub-empty {
  padding: 28px 0;
  color: rgba(231, 225, 214, 0.65);
}

.hub-pager {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 28px 0 8px;
  color: rgba(231, 225, 214, 0.65);
  font-size: 0.9rem;
}

.hub-pager a {
  color: #fff;
  font-weight: 700;
}

.entity-cook {
  margin: 0 0 22px;
  padding: 12px 14px;
  border: 1px solid rgba(231, 225, 214, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

.entity-cook p {
  margin: 0 0 10px;
  color: rgba(231, 225, 214, 0.78);
  font-size: 0.92rem;
}

.entity-cook .article-cooking__error {
  margin: 10px 0 0;
  color: var(--red);
}

.article-faq__item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(231, 225, 214, 0.12);
}

.article-faq__item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.article-faq__item h3 {
  margin: 0 0 6px;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.article-faq__item p {
  margin: 0;
  color: rgba(243, 238, 228, 0.86);
  line-height: 1.55;
}

.article-sources {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.article-sources h2 {
  border-bottom: 0;
  padding-bottom: 0;
}

.article-sources ul {
  margin: 0;
  padding-left: 1.2em;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.article-sources a {
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Alternatives carousel */
.alt-rail {
  margin: 48px 0 8px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.alt-rail__head {
  margin-bottom: 14px;
}

.alt-rail__head h2 {
  margin: 0 0 6px;
  border-bottom: 0;
  padding-bottom: 0;
  font-size: 1.15rem;
}

.alt-rail__head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.alt-rail__track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 2px 14px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.alt-rail__track:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.alt-card {
  flex: 0 0 min(72vw, 220px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(231, 225, 214, 0.16);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04), transparent 50%), #141210;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.alt-card:hover,
.alt-card:focus-visible {
  border-color: rgba(231, 225, 214, 0.4);
  transform: translateY(-2px);
}

.alt-card__img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #0b0a09;
}

.alt-card__img--empty,
.alt-card__img--fallback {
  object-fit: cover;
  background: #0b0a09;
}

.alt-card__img--fallback {
  opacity: 0.92;
  filter: saturate(0.95);
}

.alt-card__body {
  display: grid;
  gap: 6px;
  padding: 12px 12px 14px;
}

.alt-card__badge {
  color: #c4b59a;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.alt-card__name {
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

.alt-card__score {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.alt-card__score--based { color: #86efac; }
.alt-card__score--mid { color: #fbbf24; }
.alt-card__score--slop { color: #f87171; }

.alt-card__blurb {
  margin: 0;
  color: rgba(231, 225, 214, 0.7);
  font-size: 0.86rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-footer {
  margin-top: 40px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  background: none;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.article-footer__brand {
  margin: 10px 0 0;
}

.article-footer__brand a {
  color: var(--ink);
  text-decoration-color: rgba(255, 59, 59, 0.5);
}

.article-footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.article-btn {
  display: inline-block;
  padding: 10px 14px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.article-btn--primary {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.article-missing {
  padding-top: 14vh;
}

.article-missing p:not(.article-hero__eyebrow) {
  max-width: 34em;
  margin: 16px 0 22px;
  color: var(--muted);
  font-size: 1.05rem;
}

.article-cooking__spinner {
  width: 42px;
  height: 42px;
  margin: 8px 0 18px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.12);
  border-top-color: var(--neon, #b4ff3c);
  animation: article-spin 0.75s linear infinite;
}

/* The cooking headline is throwaway text — keep the scan card above the fold. */
.article-cooking .article-hero {
  margin-bottom: 16px;
}

.article-cooking .article-hero h1 {
  font-size: clamp(1.35rem, 4.2vw, 1.9rem);
}

.article-cooking .article-hero__dek {
  margin: 12px 0 0;
  font-size: 1rem;
}

.article-cooking__progress {
  margin: 16px 0 8px;
}

.article-cooking__bar {
  height: 6px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.09);
}

.article-cooking__bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--neon, #b4ff3c));
  transition: width 0.4s ease-out;
}

.article-cooking__steps {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-cooking__steps li::before {
  content: "○ ";
}

.article-cooking__steps li.is-active {
  color: var(--ink);
}

.article-cooking__steps li.is-active::before {
  content: "◍ ";
  color: var(--neon, #b4ff3c);
}

.article-cooking__steps li.is-done::before {
  content: "● ";
  color: var(--neon, #b4ff3c);
}

.article-cooking__error {
  margin: 14px 0 0;
  color: var(--red);
  font-size: 0.92rem;
  font-weight: 700;
}

.article-cooking__card {
  margin-top: 8px;
}

.article-cooking__bullets {
  margin: 0;
  padding-left: 20px;
}

.article-cooking__bullets li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.article-cooking__skeleton .sk {
  height: 14px;
  margin: 0 0 12px;
  border-radius: 6px;
  background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0.05)
    )
    0 0 / 200% 100%;
  animation: article-shimmer 1.4s linear infinite;
}

.article-cooking__skeleton .sk--short {
  width: 62%;
}

@media (prefers-reduced-motion: reduce) {
  .article-cooking__skeleton .sk,
  .article-cooking__spinner {
    animation: none;
  }
}

@keyframes article-spin {
  to {
    transform: rotate(360deg);
  }
}

.alt-card__img--pending {
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent) 0 0 / 200% 100%,
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.03),
      rgba(255, 255, 255, 0.03) 8px,
      rgba(255, 255, 255, 0.06) 8px,
      rgba(255, 255, 255, 0.06) 16px
    );
  animation: article-shimmer 1.2s linear infinite;
}

@keyframes article-shimmer {
  to {
    background-position: 200% 0, 0 0;
  }
}

@media (max-width: 900px) {
  .article-columns--with-label {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .article-aside {
    position: static;
    order: -1;
  }
}

@media (max-width: 680px) {
  body.article-page {
    font-size: 16px;
  }

  .article-shell {
    width: min(640px, calc(100% - 28px));
  }

  .article-nav {
    grid-template-columns: 1fr auto;
    padding: 8px 12px;
    gap: 8px;
  }

  .article-nav__back {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .article-nav__brand {
    display: none;
  }

  .article-nav nav {
    gap: 8px;
    font-size: 0.8rem;
  }

  .article-back {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .scan-summary {
    grid-template-columns: auto 1fr;
  }

  .scan-summary > a {
    grid-column: 1 / -1;
  }
}
