/* ============================================================
   Gazeti la Dunia — editorial redesign
   Design tokens + layout. Mobile-first, collapses < 860px.
   ============================================================ */

:root {
  --brand-black: #0d0d0d;
  --brand-red: #b3121b;
  --brand-red-dark: #8f0e15;
  --paper: #ffffff;
  --paper-warm: #f4f1ea;
  --ink: #1a1a1a;
  --ink-soft: #444444;
  --ink-muted: #777777;
  --hairline: rgba(0, 0, 0, 0.12);
  --hairline-strong: rgba(0, 0, 0, 0.22);

  --font-ui: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Lora", Georgia, "Times New Roman", serif;

  --maxw: 1180px;
  --radius: 6px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: #e9e6df;
  color: var(--ink);
  font-family: var(--font-ui);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.page {
  background: var(--paper);
}

/* Full-bleed bands: background spans the window, content stays centered */
.lead,
.columns,
.article,
.figure,
.article-body-grid {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}

.wrap { padding-left: 20px; padding-right: 20px; }

/* hide content visually but keep for screen readers */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); border: 0;
}

/* ---------- Utility bar ---------- */
.utility {
  background: var(--brand-black);
  color: #cfcfcf;
  font-size: 12px;
}
.utility__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 7px 20px;
}
.utility__right { display: flex; align-items: center; gap: 14px; }
.utility a:hover { color: #fff; }

.lang-switch {
  display: inline-flex; border: 1px solid #3a3a3a;
  border-radius: 4px; overflow: hidden; font-weight: 600; font-size: 11px;
}
.lang-switch button {
  background: none; border: 0; color: #bbb; cursor: pointer;
  padding: 3px 9px; font: inherit;
}
.lang-switch button.is-active { background: var(--brand-red); color: #fff; }
.utility__divider { border-left: 1px solid #3a3a3a; padding-left: 14px; }
.social { display: inline-flex; gap: 12px; font-size: 14px; }
.social a:hover { color: #fff; }

/* ---------- Masthead ---------- */
.masthead { background: #000; }
.masthead__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 16px 20px;
}
.brand { display: flex; align-items: center; }
.brand__img { height: 52px; width: auto; }
.masthead__tools { display: flex; align-items: center; gap: 16px; color: #aaa; font-size: 21px; }
.masthead__tools button { background: none; border: 0; color: inherit; cursor: pointer; font-size: inherit; padding: 0; }
.masthead__tools button:hover { color: #fff; }
.nav-toggle { display: none; }

/* ---------- Section nav ---------- */
.nav {
  background: var(--brand-red);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; flex-wrap: wrap; padding: 0 12px;
}
.nav a {
  color: #fff; font-size: 13px; font-weight: 600;
  padding: 12px 12px; display: block;
}
.nav a:hover, .nav a.is-active { background: var(--hairline-strong); }

.nav__podcast { display: flex; align-items: center; gap: 5px; }
.nav__podcast .ti { font-size: 15px; }

/* Authors dropdown */
.nav__item { position: relative; }
.nav__drop-toggle { display: flex; align-items: center; gap: 5px; }
.nav__drop-toggle .ti { font-size: 15px; transition: transform 0.15s; }
.nav__item.is-open .nav__drop-toggle .ti { transform: rotate(180deg); }
.dropdown {
  display: none; position: absolute; top: 100%; left: 0; z-index: 30;
  min-width: 220px; background: var(--paper);
  border: 0.5px solid var(--hairline); border-top: 2px solid var(--brand-red);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.nav__item:hover .dropdown, .nav__item.is-open .dropdown { display: block; }
.nav .dropdown a {
  color: var(--ink); font-weight: 400; font-size: 13.5px;
  padding: 10px 16px; border-bottom: 0.5px solid var(--hairline);
}
.nav .dropdown a:hover { background: var(--paper-warm); color: var(--brand-red); }
.nav .dropdown .dropdown__all {
  font-weight: 600; color: var(--brand-red); border-bottom: 0;
}

/* ---------- Breaking ticker ---------- */
.ticker {
  background: var(--paper-warm);
  border-bottom: 1px solid var(--hairline);
  font-size: 12.5px;
}
.ticker__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; gap: 10px;
  padding: 8px 20px;
}
.ticker__label {
  background: var(--brand-black); color: #fff; font-weight: 600;
  padding: 3px 9px; border-radius: 3px; letter-spacing: 0.5px; flex: none;
}
.ticker__text {
  color: var(--ink-soft); white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}

/* ---------- Shared bits ---------- */
.kicker {
  font-size: 11px; font-weight: 700; color: var(--brand-red);
  letter-spacing: 0.5px; text-transform: uppercase;
}
.headline { font-family: var(--font-head); font-weight: 700; line-height: 1.18; margin: 5px 0 0; }
.section-rule {
  border-top: 2px solid var(--brand-black);
  padding-top: 10px; margin: 0 0 16px;
}
.section-rule h2 { font-family: var(--font-ui); font-size: 17px; font-weight: 700; margin: 0; }
.section-rule .alt { color: #999; font-weight: 400; font-size: 13px; }
.thumb { background: #cdd6dd; border-radius: var(--radius); }
.thumb--warm { background: #d8cfc4; }

/* ---------- Hero ---------- */
.lead {
  display: grid; grid-template-columns: 1.55fr 1fr; gap: 22px;
  padding: 22px 20px;
}
.lead__main { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 300px; }
.lead__main img, .lead__photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; background: linear-gradient(180deg, #3a4a5a, #15202b);
}
.lead__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 28%, rgba(0,0,0,0.85));
}
.tag {
  display: inline-block; background: var(--brand-red); color: #fff;
  font-size: 11px; font-weight: 600; padding: 4px 10px;
  border-radius: 3px; letter-spacing: 0.5px; text-transform: uppercase;
}
.lead__caption { position: absolute; left: 0; bottom: 0; padding: 18px; color: #fff; }
.lead__caption .tag { position: absolute; top: -250px; left: 0; }
.lead__main .tag { position: absolute; top: 14px; left: 14px; }
.lead__caption h1 {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(20px, 3vw, 26px); line-height: 1.18;
  margin: 0 0 8px; color: #fff;
}
.lead__caption p { font-size: 13px; color: #d6d6d6; margin: 0; }
.lead__caption time { color: #fff; }

/* Opinion-led featured column (replaces news photo hero) */
.lead__featured {
  background: var(--brand-black); color: #fff; border-radius: var(--radius);
  padding: 34px 36px; position: relative; display: flex; flex-direction: column; justify-content: center;
}
.lead__quote {
  position: absolute; top: 2px; left: 22px; font-family: var(--font-head);
  font-size: 92px; line-height: 1; color: var(--brand-red);
}
.lead__featured .kicker { position: relative; color: #f0997b; }
.lead__featured h1 {
  font-family: var(--font-head); color: #fff; font-weight: 700;
  font-size: clamp(24px, 3.2vw, 33px); line-height: 1.16; margin: 8px 0 14px; letter-spacing: -0.3px;
}
.lead__stand { font-family: var(--font-body); font-size: 17px; color: #cfcfcf; line-height: 1.55; margin: 0 0 22px; }
.lead__author { display: flex; align-items: center; gap: 12px; }
.lead__author-name { font-weight: 600; font-size: 14px; color: #fff; }
.lead__author-role { font-size: 12px; color: #9a9a9a; }
.avatar--lg { width: 54px; height: 54px; font-size: 16px; }

/* Author byline on section features */
.feature__author { display: flex; align-items: center; gap: 10px; margin-top: 11px; }
.feature__author .avatar { width: 36px; height: 36px; font-size: 12px; }
.feature__author-name { font-size: 13px; font-weight: 600; }
.feature__author-role { font-size: 12px; color: var(--ink-muted); }

/* Columnists roster band */
.roster { border-bottom: 1px solid var(--hairline); background: var(--paper); }
.roster__inner { max-width: var(--maxw); margin: 0 auto; padding: 18px 20px; }
.roster__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; }
.roster__head h2 { font-size: 14px; font-weight: 700; margin: 0; text-transform: uppercase; letter-spacing: 0.6px; }
.roster__list { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; }
.roster__item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  min-width: 92px; gap: 8px; padding: 4px;
}
.roster__item .avatar { width: 60px; height: 60px; font-size: 18px; }
.roster__item:hover .avatar { box-shadow: 0 0 0 2px var(--brand-red); }
.roster__name { font-size: 12.5px; font-weight: 600; line-height: 1.2; }
.roster__role { font-size: 11px; color: var(--ink-muted); }

.lead__side { display: flex; flex-direction: column; gap: 16px; }
.lead__side .byline-sm { font-size: 12px; color: var(--ink-muted); margin: 5px 0 0; }
.lead__side .byline-sm strong { color: var(--ink); font-weight: 600; }
.lead__side article { border-bottom: 1px solid var(--hairline); padding-bottom: 14px; }
.lead__side article:last-child { border-bottom: 0; padding-bottom: 0; }
.lead__side .headline { font-size: 16px; }

/* ---------- Latest + sidebar ---------- */
.columns {
  display: grid; grid-template-columns: 2fr 1fr; gap: 26px;
  padding: 6px 20px 28px;
}
.cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.card .thumb { height: 110px; margin-bottom: 9px; }
.card .headline { font-size: 15px; }
.card time { font-size: 12px; color: var(--ink-muted); display: block; margin-top: 5px; }

.list { margin-top: 18px; display: flex; flex-direction: column; gap: 14px; }
.list__item {
  display: flex; gap: 14px; align-items: flex-start;
  border-top: 1px solid var(--hairline); padding-top: 14px;
}
.list__item .headline { font-size: 15px; }
.list__item .thumb { width: 96px; height: 70px; flex: none; }

/* ---------- Home: hero + section zones + sticky rail ---------- */
.home-body {
  display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 32px;
  max-width: var(--maxw); margin: 0 auto; padding: 6px 20px 28px;
}
.home-rail { align-self: start; position: sticky; top: 16px; }

.zone { margin-bottom: 30px; }
.zone:last-child { margin-bottom: 0; }
.zone__head {
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 2px solid var(--brand-black); padding-bottom: 8px; margin-bottom: 16px;
}
.zone__head h2 {
  font-family: var(--font-ui); font-size: 19px; font-weight: 700; margin: 0;
  position: relative; padding-left: 12px;
}
.zone__head h2::before {
  content: ""; position: absolute; left: 0; top: 3px; bottom: 3px;
  width: 4px; background: var(--brand-red);
}
.zone__more { font-size: 12px; font-weight: 600; color: var(--brand-red); white-space: nowrap; }
.zone__more:hover { text-decoration: underline; }

.zone__grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 22px; }
.feature .thumb { height: 190px; margin-bottom: 10px; }
.feature .headline { font-size: 20px; }
.feature .dek { font-size: 14px; color: var(--ink-soft); line-height: 1.5; margin: 7px 0 0; }
.feature time { font-size: 12px; color: var(--ink-muted); display: block; margin-top: 7px; }
.zone__list { display: flex; flex-direction: column; gap: 14px; }
.zone__list .list__item:first-child { border-top: 0; padding-top: 0; }

/* ============================================================
   Alternative homepage designs (Home 2–5)
   ============================================================ */

/* Home 2 — Columnist grid */
.cgrid { max-width: var(--maxw); margin: 0 auto; padding: 22px 20px; }
.cgrid__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.cgrid__head h2 { font-size: 17px; font-weight: 700; margin: 0; text-transform: uppercase; letter-spacing: 0.6px; }
.cgrid__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ccard { border-top: 2px solid var(--brand-black); padding-top: 13px; }
.ccard .avatar { width: 54px; height: 54px; font-size: 17px; margin-bottom: 11px; }
.ccard .headline { font-size: 17px; margin: 5px 0 7px; }
.ccard__by { font-size: 12px; color: var(--ink-muted); margin: 0; }
.ccard__by strong { color: var(--ink); font-weight: 600; }

/* Home 3 — The debate */
.debate-wrap { max-width: var(--maxw); margin: 0 auto; padding: 22px 20px; }
.debate { border: 1px solid var(--brand-black); border-radius: var(--radius); overflow: hidden; }
.debate__q { background: var(--brand-black); color: #fff; padding: 14px 18px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.debate__q .badge { background: var(--brand-red); font-size: 11px; font-weight: 600; letter-spacing: 1px; padding: 3px 9px; border-radius: 3px; }
.debate__q h2 { font-family: var(--font-head); font-size: 19px; font-weight: 700; margin: 0; color: #fff; }
.debate__sides { display: grid; grid-template-columns: 1fr auto 1fr; }
.debate__side { padding: 18px 20px; }
.debate__who { display: flex; align-items: center; gap: 10px; margin-bottom: 9px; }
.debate__side .avatar { width: 40px; height: 40px; font-size: 13px; }
.debate__name { font-size: 13px; font-weight: 600; }
.debate__stance { font-size: 11px; font-weight: 600; }
.debate__stance--yes { color: #1d9e75; }
.debate__stance--no { color: var(--brand-red); }
.debate__side blockquote { font-family: var(--font-body); font-size: 16px; line-height: 1.4; margin: 0; color: #222; }
.debate__vs { display: flex; align-items: center; justify-content: center; padding: 0 10px; background: var(--paper-warm); font-weight: 700; color: var(--brand-red); }
.debate__foot { background: var(--paper-warm); padding: 10px 18px; font-size: 12.5px; color: var(--ink-muted); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.debate__foot a { color: var(--brand-red); font-weight: 600; }
.debate-list { margin-top: 24px; }
.debate-list h2 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; border-top: 2px solid var(--brand-black); padding-top: 10px; margin: 0 0 6px; }
.debate-list__item { font-family: var(--font-head); font-size: 18px; font-weight: 700; line-height: 1.3; border-bottom: 0.5px solid var(--hairline); padding: 13px 0; }
.debate-list__item:last-child { border-bottom: 0; }
.debate-list__item span { font-family: var(--font-ui); font-size: 12px; font-weight: 400; color: var(--ink-muted); }

/* Home 4 — Essay / minimalist */
.essay { max-width: 760px; margin: 0 auto; padding: 38px 24px; }
.essay__lead { text-align: center; border-bottom: 0.5px solid var(--hairline); padding-bottom: 30px; margin-bottom: 28px; }
.essay__lead .kicker { letter-spacing: 1px; }
.essay__lead h1 { font-family: var(--font-head); font-size: clamp(26px, 4vw, 38px); font-weight: 700; line-height: 1.14; margin: 12px 0 14px; letter-spacing: -0.4px; }
.essay__lead .stand { font-family: var(--font-body); font-size: 17px; color: #555; line-height: 1.55; max-width: 88%; margin: 0 auto 14px; }
.essay__lead .by { font-size: 12px; color: var(--ink-muted); letter-spacing: 1px; }
.essay__list article { border-bottom: 0.5px solid var(--hairline); padding: 20px 0; }
.essay__list article:last-child { border-bottom: 0; }
.essay__list h2 { font-family: var(--font-head); font-size: 22px; font-weight: 700; line-height: 1.2; margin: 0 0 6px; }
.essay__list .stand { font-family: var(--font-body); font-size: 15px; color: #555; line-height: 1.5; margin: 0 0 6px; }
.essay__list .by { font-size: 12px; color: var(--ink-muted); }
.essay__list .by strong { color: var(--ink); font-weight: 600; }

/* Home 5 — Statement cover */
.statement { background: var(--brand-black); color: #fff; }
.statement__inner { max-width: var(--maxw); margin: 0 auto; padding: 46px 30px; position: relative; }
.statement__quote { position: absolute; top: 16px; left: 22px; font-family: var(--font-head); font-size: 96px; color: var(--brand-red); line-height: 1; }
.statement .kicker { color: #f0997b; letter-spacing: 1px; position: relative; }
.statement h1 { font-family: var(--font-head); font-size: clamp(28px, 5vw, 46px); font-weight: 700; line-height: 1.1; color: #fff; margin: 12px 0 20px; letter-spacing: -0.5px; max-width: 17ch; }
.statement__author { display: flex; align-items: center; gap: 12px; }
.statement__author .avatar { width: 48px; height: 48px; font-size: 15px; }
.statement__name { font-size: 14px; font-weight: 600; color: #fff; }
.statement__role { font-size: 12px; color: #9a9a9a; }
.statement__sub { max-width: var(--maxw); margin: 0 auto; padding: 20px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.statement__sub article { border-top: 2px solid var(--brand-black); padding-top: 11px; }
.statement__sub .headline { font-size: 15px; }
.statement__sub .ccard__by { margin-top: 5px; }

/* Home 6 — Project Syndicate style (image-led, author portraits everywhere) */
.ps { max-width: var(--maxw); margin: 0 auto; padding: 26px 20px; }
.ps__kicker { font-size: 11.5px; font-weight: 700; color: var(--brand-red); letter-spacing: 0.6px; text-transform: uppercase; }

.ps__lead { display: grid; grid-template-columns: 1.45fr 1fr; gap: 30px; align-items: center; border-bottom: 1px solid var(--hairline); padding-bottom: 28px; margin-bottom: 26px; }

/* Hero: image left | text+trending right */
/* #1 — widen rail to 360px */
.hero-with-rail { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; margin-bottom: 32px; }
.hero-main { min-width: 0; }
/* #2 — 16:9 image with overlay text */
.hero-img { aspect-ratio: 16/9; border-radius: 6px; background: linear-gradient(135deg,#45566a,#222e3c); position: relative; overflow: hidden; }
.hero-rail { min-width: 0; }
/* Text overlay — gradient scrim at bottom of image */
.hero-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px 22px 20px; background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,.72) 100%); border-radius: 6px; }
.hero-overlay__kicker { font-family: var(--font-head); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brand-red); margin: 0 0 6px; display: block; }
.hero-overlay__title { font-family: var(--font-head); font-weight: 700; font-size: clamp(18px,2vw,26px); line-height: 1.2; margin: 0 0 8px; color: #fff; }
.hero-overlay__title a { color: #fff; text-decoration: none; }
.hero-overlay__title a:hover { text-decoration: underline; }
.hero-overlay__dek { font-family: var(--font-body); font-size: 13.5px; color: rgba(255,255,255,.82); line-height: 1.45; margin: 0 0 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hero-overlay__footer { display: flex; align-items: center; justify-content: space-between; }
.hero-overlay__author { font-family: var(--font-head); font-size: 12px; font-weight: 600; color: rgba(255,255,255,.75); }
.hero-overlay__read { display: inline-flex; align-items: center; gap: 4px; font-family: var(--font-head); font-size: 12px; font-weight: 700; color: #fff; text-decoration: none; white-space: nowrap; border: 1px solid rgba(255,255,255,.45); border-radius: 3px; padding: 4px 10px; transition: background .15s; }
.hero-overlay__read:hover { background: rgba(255,255,255,.15); }
/* Slim dots strip below image */
.hero-caption { padding: 10px 0 0; }
.hero-dots { display: flex; gap: 8px; justify-content: flex-start; align-items: center; margin: 0; }
/* "On the site" label + tabs */
.hero-rail__mv { padding-top: 4px; }
.hero-rail__on-site { font-family: var(--font-head); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-muted); margin: 0 0 10px; }
.rail-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--hairline); margin-bottom: 12px; }
.rail-tab { background: none; border: none; padding: 7px 12px 9px; font-family: var(--font-head); font-size: 12px; font-weight: 700; color: var(--ink-muted); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; letter-spacing: .04em; text-transform: uppercase; transition: color .15s, border-color .15s; }
.rail-tab.is-active { color: var(--brand-red); border-bottom-color: var(--brand-red); }
.rail-tab:hover:not(.is-active) { color: var(--ink); }
.rail-panel[hidden] { display: none; }
/* #3 — feature item #1 in trending */
.mv__item:first-child { padding-bottom: 14px; border-bottom: 1px solid var(--hairline); margin-bottom: 2px; }
.mv__item:first-child p { font-size: 16px; font-weight: 700; }
.mv__item:first-child .mv__n { font-size: 26px; }
/* #4 — "View all" link */
.rail-viewall { display: block; text-align: right; font-family: var(--font-head); font-size: 12px; font-weight: 700; color: var(--brand-red); text-decoration: none; margin-top: 10px; letter-spacing: .02em; }
.rail-viewall:hover { text-decoration: underline; }
@media (max-width: 900px) { .hero-with-rail { grid-template-columns: 1fr; } .hero-rail { border-top: 1px solid var(--hairline); padding-top: 20px; } }

/* Hero auto-slider */
.hero-slider { position: relative; overflow: hidden; border-radius: 6px; }
.hero-slide { opacity: 0; transition: opacity 0.6s ease; }
.hero-slide:not(.is-active) { position: absolute; inset: 0; pointer-events: none; }
.hero-slide.is-active { position: relative; opacity: 1; }
.hero-dots { display: flex; gap: 8px; justify-content: flex-start; align-items: center; margin-bottom: 10px; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; border: 0; padding: 0; background: var(--hairline-strong); cursor: pointer; transition: width 0.25s, background 0.25s; }
.hero-dot.is-active { width: 24px; border-radius: 4px; background: var(--brand-red); }
/* #5 — arrows always faintly visible, full opacity on hover */
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; background: rgba(0,0,0,.35); border: none; color: #fff; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 18px; transition: background .15s, opacity .15s; opacity: 0.22; }
.hero-slider:hover .hero-arrow { opacity: 1; }
.hero-arrow:hover { background: rgba(0,0,0,.7); }
.hero-arrow--prev { left: 10px; }
.hero-arrow--next { right: 10px; }
.ps__lead-img { aspect-ratio: 4 / 3; border-radius: 4px; background: linear-gradient(135deg, #45566a, #222e3c); }
.ps__lead h1 { font-family: var(--font-head); font-weight: 700; font-size: clamp(26px, 3.4vw, 35px); line-height: 1.14; letter-spacing: -0.3px; margin: 9px 0 13px; }
.ps__lead .dek { font-family: var(--font-body); font-size: 16px; color: #555; line-height: 1.5; margin: 0 0 18px; }

.ps__author { display: flex; align-items: center; gap: 11px; }
.ps__author .avatar { width: 46px; height: 46px; font-size: 14px; }
.ps__author-name { font-weight: 600; font-size: 14px; }
.ps__author-role { font-size: 12px; color: var(--ink-muted); }

.ps__sec { display: flex; align-items: center; gap: 12px; margin: 0 0 18px; }
.ps__sec h2 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.7px; margin: 0; white-space: nowrap; }
.ps__sec::after { content: ""; flex: 1; height: 1px; background: var(--hairline); }
.ps__grid + .ps__sec { margin-top: 34px; }

.ps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* Horizontal carousel (Columns / Guest opinions) — manual nav, no autoplay */
.ps__sec--nav { justify-content: space-between; border-bottom: 1px solid var(--hairline); padding-bottom: 12px; }
.ps__sec--nav::after { display: none; }
.carousel-nav { display: flex; gap: 8px; }
.carousel-btn {
  width: 34px; height: 34px; border-radius: 50%; flex: none;
  border: 1px solid var(--hairline-strong); background: #fff; color: var(--ink);
  cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.carousel-btn:hover { background: var(--brand-red); border-color: var(--brand-red); color: #fff; }
.carousel-btn:disabled { opacity: 0.35; cursor: default; }
.carousel-btn:disabled:hover { background: #fff; border-color: var(--hairline-strong); color: var(--ink); }
.ps-carousel {
  display: flex; gap: 28px; overflow-x: auto; scroll-behavior: smooth;
  padding-bottom: 6px; scrollbar-width: none;
}
.ps-carousel::-webkit-scrollbar { display: none; }
.ps-carousel > .ps-card { flex: 1 0 280px; }
.ps-grid2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 700px) { .ps-grid2 { grid-template-columns: 1fr; } }
.ps-card__img { aspect-ratio: 16 / 9; border-radius: 4px; background: #cdd6dd; margin-bottom: 12px; }
.ps-card__img.warm { background: #d8cfc4; }
.ps-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 18px; line-height: 1.22; margin: 6px 0 12px; }
.ps-card__author { display: flex; align-items: center; gap: 9px; }
.ps-card__author .avatar { width: 30px; height: 30px; font-size: 11px; }
.ps-card__author-name { font-size: 12.5px; font-weight: 600; }
.ps-card__author-role { font-size: 11.5px; color: var(--ink-muted); }

.ps-saymore { background: var(--paper-warm); border-radius: var(--radius); margin: 30px 0 0; padding: 26px 28px; display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: center; }
.ps-saymore .avatar { width: 84px; height: 84px; font-size: 26px; }
.ps-saymore__label { font-size: 11.5px; font-weight: 700; color: var(--brand-red); letter-spacing: 1px; text-transform: uppercase; }
.ps-saymore blockquote { font-family: var(--font-head); font-weight: 700; font-size: 21px; line-height: 1.32; margin: 7px 0 9px; color: #1a1a1a; }
.ps-saymore cite { font-style: normal; font-size: 13px; color: var(--ink-muted); }
.ps-saymore cite strong { color: var(--ink); font-weight: 600; }

/* Home 6 — cartoon + most viewed two-column row */
.ps-cols { display: grid; grid-template-columns: 1.6fr 1fr; gap: 32px; border-top: 1px solid var(--hairline); margin-top: 30px; padding-top: 26px; }
.cartoon__img {
  aspect-ratio: 3 / 2; border-radius: 4px; background: #efece3; border: 1px solid var(--hairline);
  display: flex; align-items: center; justify-content: center; color: #b9b3a3;
}
.cartoon__img i { font-size: 56px; }
.cartoon figcaption { margin-top: 12px; }
.cartoon__cap { font-family: var(--font-body); font-size: 15px; color: #444; line-height: 1.45; margin: 0 0 6px; }
.cartoon__credit { font-size: 12.5px; color: var(--ink-muted); }
.cartoon__credit strong { color: var(--ink); font-weight: 600; }
.cartoon__thumbs { display: flex; gap: 10px; margin-top: 14px; }
.cartoon__thumbs div { flex: 1; aspect-ratio: 4 / 3; border-radius: 3px; background: #efece3; border: 1px solid var(--hairline); }

.mv__item { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; border-bottom: 0.5px solid var(--hairline); }
.mv__item:last-child { border-bottom: 0; }
.mv__n { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--brand-red); line-height: 1; min-width: 20px; }
.mv__item p { font-family: var(--font-head); font-size: 14.5px; font-weight: 600; line-height: 1.28; margin: 0; }

.rail-trending { margin-bottom: 26px; }

/* Cartoon detail page */
.cartoon-detail { max-width: 780px; margin: 0 auto; padding: 0 20px; }
.cartoon-detail__fig { margin: 0; }
.cartoon-detail__fig img { width: 100%; height: auto; display: block; border: 1px solid var(--hairline); border-radius: 6px; background: #fff; }
.cartoon-detail__cap { font-size: 12.5px; color: var(--ink-muted); margin: 10px 0 0; }
.cartoon-more { max-width: 780px; margin: 34px auto 0; padding: 0 20px; }
.cartoon-more h2 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; border-top: 2px solid var(--brand-black); padding-top: 10px; margin: 0 0 16px; }
.cartoon-more__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cartoon-more__grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border: 1px solid var(--hairline); border-radius: 4px; background: #fff; }
.cartoon-more__grid a { font-family: var(--font-head); font-weight: 700; font-size: 13.5px; line-height: 1.25; display: block; }
.cartoon-more__cap { margin-top: 6px; }
@media (max-width: 620px) {
  .cartoon-more__grid { grid-template-columns: 1fr 1fr; }
}

.ps .podcast-band { margin: 30px 0 0; }
.ps-cols .podcast-band { margin: 0; }

/* Home 6 — Cartoons: full-bleed dark horizontal row */
.cartoons { background: #141414; color: #fff; }
.cartoons__inner { max-width: var(--maxw); margin: 0 auto; padding: 28px 20px 32px; position: relative; }
.cartoons__head { display: flex; align-items: center; gap: 8px; border-top: 1px solid rgba(255, 255, 255, 0.15); padding-top: 15px; margin-bottom: 20px; }
.cartoons__head h2 { font-size: 17px; font-weight: 700; color: #fff; margin: 0; }
.cartoons__head i { color: #777; font-size: 18px; }
.cartoons__row { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(210px, 1fr); gap: 26px; overflow-x: auto; padding-bottom: 6px; scroll-behavior: smooth; }
.cartoon-card__img { aspect-ratio: 4 / 3; background: #fff; border-radius: 2px; display: flex; align-items: center; justify-content: center; color: #d8d5cd; }
.cartoon-card__img i { font-size: 44px; }
.cartoon-card__artist { font-size: 13px; color: #9a9a9a; margin: 12px 0 7px; }
.cartoon-card__title { font-family: var(--font-head); font-size: 19px; font-weight: 700; color: #fff; line-height: 1.2; margin: 0 0 7px; }
.cartoon-card__title a { color: #fff; }
.cartoon-card__date { font-size: 12.5px; color: #888; }
.cartoons__next {
  position: absolute; right: 6px; top: 56%; width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4); background: rgba(0, 0, 0, 0.45); color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.cartoons__next:hover { background: var(--brand-red); border-color: var(--brand-red); }

/* ---------- Opinion / columnists strip ---------- */
.opinion { background: var(--paper-warm); border-top: 3px solid var(--brand-black); }
.opinion__inner { max-width: var(--maxw); margin: 0 auto; padding: 24px 20px; }
.opinion__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.opinion__head h2 { font-size: 19px; font-weight: 700; margin: 0; }
.opinion__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.col-card { display: flex; gap: 12px; }
.col-card .avatar { width: 46px; height: 46px; font-size: 14px; }
.col-card__title {
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  line-height: 1.25; margin: 4px 0 6px;
}
.col-card__by { font-size: 12px; color: var(--ink-muted); margin: 0; }
.col-card__by strong { color: var(--ink); font-weight: 600; }

/* ---------- Podcast promo band ---------- */
.podcast-band {
  background: var(--brand-black); color: #fff; border-radius: var(--radius);
  padding: 20px; display: grid; grid-template-columns: auto 1fr; gap: 22px; margin: 4px 0 30px;
}
.podcast-band__art {
  width: 132px; height: 132px; border-radius: 8px; flex: none;
  background: linear-gradient(135deg, var(--brand-red), #5a0a0e);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.podcast-band__art i { font-size: 34px; }
.podcast-band__art span { font-size: 11px; font-weight: 600; letter-spacing: 1px; }
.podcast-band__label { font-size: 11px; font-weight: 700; letter-spacing: 1px; color: #f0997b; text-transform: uppercase; }
.podcast-band__title { font-family: var(--font-head); font-size: 20px; font-weight: 700; margin: 4px 0 12px; color: #fff; }
.episode { display: flex; align-items: center; gap: 13px; padding: 9px 0; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.episode:first-of-type { border-top: 0; }
.episode__play {
  width: 34px; height: 34px; border-radius: 50%; flex: none; cursor: pointer;
  background: var(--brand-red); color: #fff; border: 0;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.episode__play:hover { background: #fff; color: var(--brand-red); }
.episode__t { font-size: 14px; font-weight: 500; }
.episode__d { font-size: 12px; color: #9a9a9a; }

/* ---------- Tabbed rail ---------- */
.rail__tabs { display: flex; background: var(--brand-black); border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; }
.rail__tab {
  flex: 1; background: none; border: 0; cursor: pointer; font-family: inherit;
  color: #aaa; font-size: 11.5px; font-weight: 600; padding: 10px 4px;
}
.rail__tab.is-active { color: #fff; box-shadow: inset 0 -2px 0 var(--brand-red); }
.rail__panel { display: none; }
.rail__panel.is-active { display: block; }

/* ---------- Sidebar ---------- */
.rail__head {
  background: var(--brand-black); color: #fff;
  font-size: 13px; font-weight: 600; padding: 10px 14px;
  border-radius: var(--radius) var(--radius) 0 0;
}
.rail {
  border: 1px solid var(--hairline); border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
}
.rail__item {
  display: flex; gap: 12px; padding: 12px 14px;
  border-bottom: 1px solid var(--hairline);
}
.rail__item:last-child { border-bottom: 0; }
.rail__num { font-family: var(--font-head); font-size: 23px; font-weight: 700; color: var(--brand-red); line-height: 1; }
.rail__item p { font-size: 13px; line-height: 1.4; margin: 0; }

.promo {
  margin-top: 18px; border: 1px solid var(--hairline);
  border-radius: var(--radius); padding: 16px; text-align: center;
  background: var(--paper-warm);
}
.promo i { font-size: 22px; color: var(--brand-red); }
.promo strong { display: block; font-size: 14px; margin: 8px 0 3px; }
.promo p { font-size: 12px; color: var(--ink-muted); margin: 0 0 11px; }
.btn-red {
  display: block; width: 100%; background: var(--brand-red); color: #fff;
  font-size: 12.5px; font-weight: 600; padding: 9px; border: 0;
  border-radius: var(--radius); cursor: pointer; font-family: inherit;
}
.btn-red:hover { background: var(--brand-red-dark); }

/* ---------- Footer ---------- */
.footer {
  background: var(--brand-black); color: #9a9a9a; font-size: 12px;
}
.footer__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 16px 20px; flex-wrap: wrap;
}
.footer__brand { color: #fff; font-weight: 700; letter-spacing: 1px; }
.footer a:hover { color: #fff; }

/* ---------- Card metadata ---------- */
.meta {
  display: flex; flex-wrap: wrap; gap: 4px 10px;
  font-size: 12px; color: var(--ink-muted); margin-top: 6px;
}
.meta__dot { color: var(--hairline-strong); }

/* ---------- Consistent image ratios (real photos drop in here) ---------- */
.feature .thumb, .card .thumb, .lead__main { aspect-ratio: 16 / 9; height: auto; }
.feature .thumb { min-height: 0; }

/* ---------- Sticky nav ---------- */
.nav { position: sticky; top: 0; z-index: 50; }

/* ---------- Trending topics row ---------- */
.trending { background: var(--paper); border-bottom: 1px solid var(--hairline); }
.trending__inner {
  max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap;
  align-items: center; gap: 8px 14px; padding: 9px 20px; font-size: 13px;
}
.trending__label { font-weight: 700; color: var(--ink); }
.trending a { color: var(--brand-red); font-weight: 600; }
.trending a:hover { text-decoration: underline; }

/* ---------- Full footer ---------- */
.site-footer { background: var(--brand-black); color: #9a9a9a; }
.site-footer__top {
  max-width: var(--maxw); margin: 0 auto; padding: 34px 20px 24px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 28px;
}
.site-footer__brand img { height: 46px; width: auto; margin-bottom: 12px; }
.site-footer__brand p { font-size: 13px; line-height: 1.6; margin: 0 0 14px; max-width: 280px; }
.site-footer__social { display: flex; gap: 14px; font-size: 19px; color: #cfcfcf; }
.site-footer__social a:hover { color: #fff; }
.site-footer h4 {
  color: #fff; font-size: 13px; font-weight: 600; margin: 0 0 12px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.site-footer__col a { display: block; padding: 5px 0; font-size: 13.5px; }
.site-footer__col a:hover { color: #fff; }
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer__bottom-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 16px 20px; font-size: 12px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.site-footer__bottom .site-footer__brand-name { color: #fff; font-weight: 700; letter-spacing: 1px; }

/* ============================================================
   Article page
   ============================================================ */
.article { padding: 24px 20px 0; }
.breadcrumb { font-size: 12px; color: var(--ink-muted); margin-bottom: 12px; }
.breadcrumb a:hover { color: var(--brand-red); }
.breadcrumb .here { color: var(--brand-red); font-weight: 600; }

.article h1 {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(26px, 5vw, 34px); line-height: 1.13;
  margin: 14px 0; letter-spacing: -0.3px;
}
.standfirst {
  font-family: var(--font-body); font-size: 18px; color: var(--ink-soft);
  line-height: 1.5; margin: 0 0 20px;
}
.byline {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  padding: 12px 0; margin-bottom: 22px;
}
.byline__author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  background: #e7e2d6; color: #7a6f55; font-weight: 700; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}
.byline__name { font-size: 13px; font-weight: 600; }
.byline__meta { font-size: 12px; color: var(--ink-muted); }

/* Columnist profile + roster */
.avatar--xl { width: 96px; height: 96px; font-size: 30px; background-size: cover; background-position: center; }
.author-hero { max-width: var(--maxw); margin: 0 auto; padding: 30px 20px; display: flex; gap: 24px; align-items: center; border-bottom: 1px solid var(--hairline); }
.author-hero h1 { font-family: var(--font-head); font-weight: 700; font-size: clamp(24px, 3.4vw, 32px); margin: 0 0 4px; }
.author-hero__role { font-size: 14px; color: var(--brand-red); font-weight: 600; margin: 0 0 10px; }
.author-hero__bio { font-family: var(--font-body); font-size: 15.5px; color: var(--ink-soft); line-height: 1.55; margin: 0; max-width: 680px; }
.author-hero__count { font-size: 12.5px; color: var(--ink-muted); margin-top: 10px; }
.author-hero__back { display: inline-block; font-size: 12.5px; color: var(--brand-red); font-weight: 600; margin-bottom: 12px; }
@media (max-width: 620px) {
  .author-hero { flex-direction: column; text-align: center; align-items: center; }
  .author-hero__bio { max-width: 100%; }
}

/* Reader auth forms */
.auth-wrap { max-width: 420px; margin: 0 auto; padding: 44px 20px 64px; }
.auth-wrap h1 { font-family: var(--font-head); font-size: 26px; font-weight: 700; margin: 0 0 6px; }
.auth-wrap .sub { color: var(--ink-muted); font-size: 14px; margin: 0 0 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.field input { width: 100%; padding: 10px 12px; border: 1px solid var(--hairline-strong); border-radius: 6px; font: inherit; font-size: 15px; }
.field input:focus { outline: none; border-color: var(--brand-red); }
.btn-primary { display: block; width: 100%; background: var(--brand-red); color: #fff; border: 0; padding: 12px; border-radius: 6px; font: inherit; font-weight: 600; font-size: 15px; cursor: pointer; }
.btn-primary:hover { background: var(--brand-red-dark); }
.auth-alt { font-size: 13.5px; color: var(--ink-muted); margin-top: 18px; text-align: center; }
.auth-alt a { color: var(--brand-red); font-weight: 600; }
.form-error { color: var(--brand-red); font-size: 12.5px; margin-top: 5px; }
.flash { max-width: 720px; margin: 16px auto; background: var(--paper-warm); border-left: 3px solid #1d9e75; padding: 12px 16px; font-size: 14px; border-radius: 0 4px 4px 0; }

/* Comments */
.comments { max-width: 720px; margin: 8px auto 0; padding: 28px 20px 44px; border-top: 1px solid var(--hairline); }
.comments h2 { font-size: 18px; font-weight: 700; margin: 0 0 18px; }
.comment { display: flex; gap: 12px; padding: 14px 0; border-bottom: 0.5px solid var(--hairline); }
.comment:last-child { border-bottom: 0; }
.comment .avatar { width: 38px; height: 38px; font-size: 12px; }
.comment__name { font-size: 13.5px; font-weight: 600; }
.comment__time { font-size: 12px; color: var(--ink-muted); }
.comment__body { font-family: var(--font-body); font-size: 15px; line-height: 1.5; margin: 5px 0 0; color: #222; }
.comment-form { margin-bottom: 24px; }
.comment-form textarea { width: 100%; padding: 11px 13px; border: 1px solid var(--hairline-strong); border-radius: 6px; font: inherit; font-size: 15px; min-height: 88px; margin-bottom: 10px; }
.comment-form textarea:focus { outline: none; border-color: var(--brand-red); }
.comment-form .btn-primary { width: auto; padding: 10px 20px; }
.comment-login { background: var(--paper-warm); padding: 16px; border-radius: 6px; text-align: center; font-size: 14px; margin-bottom: 24px; }
.comment-login a { color: var(--brand-red); font-weight: 600; }
.comment__main { flex: 1; min-width: 0; }
.avatar--sm { width: 30px !important; height: 30px !important; font-size: 10px !important; }
.comment-reply { margin-top: 6px; }
.comment-reply > summary { display: inline-block; cursor: pointer; list-style: none; font-size: 12.5px; font-weight: 600; color: var(--brand-red); user-select: none; }
.comment-reply > summary::-webkit-details-marker { display: none; }
.comment-reply[open] > summary { color: var(--ink-muted); }
.comment-form--reply { margin: 10px 0 4px; }
.comment-form--reply textarea { min-height: 64px; }
.comment-form--reply .btn-primary { padding: 8px 16px; font-size: 13px; }
.comment-replies { margin-top: 10px; padding-left: 16px; border-left: 2px solid var(--hairline); }
.comment--reply { padding: 10px 0; border-bottom: 0; }
.comment--reply .comment__body { font-size: 14px; }
.share { display: flex; align-items: center; gap: 12px; color: #555; font-size: 18px; }
.share span { font-size: 11px; color: #999; }
.share a:hover { color: var(--brand-red); }

.figure { padding: 0 20px; }
.figure .photo {
  height: clamp(200px, 38vw, 320px); border-radius: var(--radius);
  background: linear-gradient(180deg, #46566a, #222e3c);
}
.figure figcaption { font-size: 12px; color: #999; margin: 8px 0 24px; }
.figure figcaption em { font-style: italic; }

.article-body-grid {
  display: grid; grid-template-columns: 1.85fr 1fr; gap: 30px;
  padding: 0 20px 28px;
}
.prose { font-family: var(--font-body); font-size: 18px; line-height: 1.78; color: #222; }
.prose p { margin: 0 0 19px; }
.prose h2 {
  font-family: var(--font-ui); font-size: 19px; font-weight: 700;
  margin: 28px 0 12px;
}
.prose .dropcap::first-letter {
  float: left; font-family: var(--font-head); font-weight: 700;
  font-size: 58px; line-height: 0.8; padding: 4px 10px 0 0; color: var(--brand-red);
}
.pullquote {
  border-left: 3px solid var(--brand-red); margin: 26px 0;
  padding: 4px 0 4px 18px;
}
.pullquote p { font-size: 22px; line-height: 1.4; font-weight: 600; margin: 0 0 8px; color: #111; }
.pullquote cite { font-size: 13px; color: var(--ink-muted); font-style: normal; font-family: var(--font-ui); }

.related .headline { font-size: 15px; margin: 4px 0; }
.related article { border-bottom: 1px solid var(--hairline); padding-bottom: 14px; }

/* ============================================================
   Responsive — collapse to single column on tablet/phone
   ============================================================ */
@media (max-width: 860px) {
  .lead { grid-template-columns: 1fr; }
  .columns { grid-template-columns: 1fr; }
  .article-body-grid { grid-template-columns: 1fr; }
  .home-body { grid-template-columns: 1fr; }
  .home-rail { position: static; }
  .lead__main { min-height: 240px; }
  .opinion__grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .cgrid__list { grid-template-columns: repeat(2, 1fr); }
  .statement__sub { grid-template-columns: 1fr 1fr; }
  .ps__lead { grid-template-columns: 1fr; }
  .ps__grid { grid-template-columns: repeat(2, 1fr); }
  .ps-cols { grid-template-columns: 1fr; gap: 26px; }
}

@media (max-width: 620px) {
  .opinion__grid { grid-template-columns: 1fr; }
  .site-footer__top { grid-template-columns: 1fr; }
  .podcast-band { grid-template-columns: 1fr; }
  .podcast-band__art { width: 100%; height: 120px; }
  .cgrid__list { grid-template-columns: 1fr; }
  .statement__sub { grid-template-columns: 1fr; }
  .debate__sides { grid-template-columns: 1fr; }
  .debate__vs { padding: 8px; }
  .ps__grid { grid-template-columns: 1fr; }
  .ps-saymore { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

@media (max-width: 620px) {
  .zone__grid { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 620px) {
  .ticker__label { display: none; }
  .cards { grid-template-columns: 1fr; }
  .nav__inner { display: none; flex-direction: column; padding: 0; }
  .nav__inner.is-open { display: flex; }
  .nav a { padding: 13px 20px; border-bottom: 1px solid var(--hairline-strong); }
  .nav__item, .nav__item:hover { position: static; }
  .dropdown {
    position: static; box-shadow: none; min-width: 0;
    border: 0; border-top: 0; background: rgba(0,0,0,0.18);
  }
  .nav .dropdown a { color: #fff; padding-left: 36px; border-bottom: 1px solid var(--hairline-strong); }
  .nav .dropdown a:hover { background: var(--hairline-strong); color: #fff; }
  .nav .dropdown .dropdown__all { color: #ffd9d9; }
  .nav-toggle {
    display: inline-flex; background: none; border: 0; color: #fff;
    font-size: 22px; cursor: pointer; padding: 0;
  }
  .utility__inner { font-size: 11px; }
  .utility .utility__date { display: none; }
  .brand__img { height: 42px; }
}
