@import "tailwindcss";

:root {
  --background: #f8f9fb;
  --foreground: #0e0e11;

  /* DTNews brand tokens */
  --bg: #f8f9fb;
  --paper: #ffffff;
  --surf: #ffffff;
  --surf-hi: #f1f3f7;
  --cream: #faf7f2;
  --ink-bg: #0e0e11;
  --line: rgba(15, 15, 20, 0.06);
  --line-hi: rgba(15, 15, 20, 0.12);
  --brand: #c1272d;
  --accent: #ed2027;
  --brand-08: rgba(193, 39, 45, 0.08);
  --brand-15: rgba(193, 39, 45, 0.15);
  --brand-30: rgba(193, 39, 45, 0.3);
  --text: #0e0e11;
  --text-2: #6b7280;
  --text-3: #9ca3af;
  --live: #ed2027;
  --cat-sport: #047857;
  --cat-tech: #7c3aed;
  --cat-world: #1d4ed8;
  --cat-biz: #b45309;
  --cat-pol: #c1272d;
  --cat-health: #0f766e;
  --gold: #b08d2e;
  --ink: #0e0e11;
  --border: #e5e7eb;
  --tag-bg: #fee2e2;

  /* font stacks resolved from next/font variables */
  --sans: var(--font-geist-sans), system-ui, sans-serif;
  --mono: var(--font-geist-mono), monospace;
  --serif: var(--font-source-serif), Georgia, serif;
  --italic: var(--font-instrument-serif), Georgia, serif;
  --display: var(--font-geist-sans), system-ui, sans-serif;
}

@theme inline {
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --font-sans: var(--font-geist-sans);
  --font-mono: var(--font-geist-mono);
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family: var(--sans);
  background: var(--bg);
  background-image:
    radial-gradient(
      900px 500px at 80% -100px,
      rgba(193, 39, 45, 0.06),
      transparent 60%
    ),
    radial-gradient(
      700px 400px at 0% 30%,
      rgba(237, 32, 39, 0.03),
      transparent 60%
    );
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-track {
  background: var(--bg);
}
body::-webkit-scrollbar-thumb {
  background: var(--line-hi);
  border-radius: 10px;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  padding: 0;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}

/* ── Animations ──────────────────────────────────────── */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes pulse-red {
  0% {
    box-shadow: 0 0 0 0 rgba(193, 39, 45, 0.6);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(193, 39, 45, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(193, 39, 45, 0);
  }
}
@keyframes blink {
  50% {
    opacity: 0.35;
  }
}
@keyframes bar {
  50% {
    transform: scaleY(0.3);
  }
}
@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── Layout ─────────────────────────────────────────── */
.wrap {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Icon helpers ───────────────────────────────────── */
.icn-12 {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icn-14 {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icn-16 {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Navbar ─────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(248, 249, 251, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 72px;
  gap: 18px;
  display: flex;
  justify-content: space-between;
}
.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  line-height: 0.85;
}
.logo .dt {
  font-family: var(--italic);
  font-style: italic;
  font-size: 38px;
  color: var(--brand);
  letter-spacing: -0.04em;
}
.logo .news {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  color: var(--text);
  letter-spacing: -0.04em;
  margin-left: 2px;
}
.logo .dot {
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 99px;
  align-self: center;
  margin-left: 6px;
}
.nav-links {
  display: flex;
  justify-content: center;
  gap: 0;
  min-width: 0;
}
.nav-link {
  padding: 9px 11px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-2);
  border-radius: 99px;
  position: relative;
  transition: color 0.15s;
  white-space: nowrap;
}
.nav-link:hover {
  color: var(--text);
}
.nav-link.active {
  color: var(--brand);
  font-weight: 600;
}
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0px;
  width: 22px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}
.nav-sep {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: var(--line-hi);
  margin: 0 8px;
  flex-shrink: 0;
  align-self: center;
}
.nav-link-app {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav-link-app .nav-ico {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.search {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 200px;
  color: var(--text-3);
  font-size: 13px;
  box-shadow: 0 1px 2px rgba(15, 15, 20, 0.03);
  white-space: nowrap;
  flex-shrink: 0;
}
.search > span {
  overflow: hidden;
  text-overflow: ellipsis;
}
.search:hover {
  border-color: var(--line-hi);
}
.search kbd {
  margin-left: auto;
  background: var(--surf-hi);
  color: var(--text-2);
  font-family: var(--sans);
  font-size: 10.5px;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid var(--line);
}
.btn-app {
  background: var(--brand);
  color: #fff;
  padding: 10px 16px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition:
    background 0.15s,
    transform 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(193, 39, 45, 0.25);
}
.btn-app:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

/* ── Locale switcher dropdown ── */
.locale-switcher {
  position: relative;
}
.locale-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  border-radius: 99px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--text-2);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition:
    border-color 0.15s,
    color 0.15s;
}
.locale-btn:hover {
  border-color: var(--line-hi);
  color: var(--text);
}
.locale-btn svg:first-child {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.locale-chev {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s;
}
.locale-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 6px;
  box-shadow:
    0 8px 28px rgba(15, 15, 20, 0.12),
    0 2px 6px rgba(15, 15, 20, 0.06);
  min-width: 190px;
  z-index: 200;
}
.locale-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 9px 12px;
  border-radius: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.12s;
}
.locale-option:hover {
  background: var(--tag-bg);
}
.locale-option.active {
  background: var(--brand);
}
.locale-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.locale-option.active .locale-name {
  color: #fff;
  font-weight: 600;
}
.locale-code {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: 0.5px;
}
.locale-option.active .locale-code {
  color: rgba(255, 255, 255, 0.72);
}

/* ── Breaking ticker ────────────────────────────────── */
.ticker {
  background: var(--brand);
  color: #fff;
  overflow: hidden;
}
.ticker-row {
  display: flex;
  align-items: center;
  height: 42px;
  gap: 18px;
}
.ticker-pill {
  background: rgba(14, 14, 17, 0.85);
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}
.ticker-pill .dot {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 99px;
  animation: blink 1.4s infinite;
}
.ticker-track {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.ticker-strip {
  display: inline-flex;
  gap: 38px;
  animation: tickerMove 60s linear infinite;
  white-space: nowrap;
  font-size: 13.5px;
  font-weight: 500;
  color: #fff;
}
.ticker-strip span b {
  font-weight: 800;
}
.ticker-strip i {
  color: rgba(255, 255, 255, 0.5);
  font-style: normal;
  margin: 0 4px;
}

/* ── Hero ───────────────────────────────────────────── */
.hero {
  padding: 40px 0 28px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 65fr 35fr;
  gap: 24px;
}
.hero-feature {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: var(--surf);
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(15, 15, 20, 0.08);
}
.hero-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 14, 17, 0) 35%,
    rgba(14, 14, 17, 0.3) 60%,
    rgba(14, 14, 17, 0.95) 100%
  );
}
.hero-feature .badges {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
}
.badge-breaking {
  background: var(--brand);
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(193, 39, 45, 0.45);
}
.badge-breaking .pulse {
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 99px;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: pulse 1.6s infinite;
}
.badge-soft {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 7px 11px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4px;
}
.hero-content {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 2;
}
.hero-content .kicker {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-content .kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--brand);
}
.hero-content h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  color: #fff;
  text-wrap: pretty;
  max-width: 92%;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}
.hero-meta b {
  color: #fff;
  font-weight: 600;
}
.hero-meta .av {
  width: 28px;
  height: 28px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--brand), #7d1418);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.hero-meta .dot {
  width: 3px;
  height: 3px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 99px;
}
.hero-meta .stat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Side cards */
.hero-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.side-card {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 14px;
  padding: 14px;
  background: var(--surf);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
  flex: 1;
  align-items: stretch;
  box-shadow: 0 2px 6px rgba(15, 15, 20, 0.04);
}
.side-card:hover {
  border-color: var(--brand);
  box-shadow:
    0 0 0 1px var(--brand-15),
    0 12px 28px rgba(193, 39, 45, 0.1);
  transform: translateY(-1px);
}
.side-card .thumb {
  border-radius: 9px;
  overflow: hidden;
  background: var(--surf-hi);
}
.side-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.side-card .body {
  display: flex;
  flex-direction: column;
}
.side-card .cat {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 6px;
}
.side-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.28;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.side-card .meta {
  margin-top: auto;
  padding-top: 8px;
  font-size: 11.5px;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Category chips ─────────────────────────────────── */
.chips {
  padding: 8px 0 36px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}
.chips::-webkit-scrollbar {
  display: none;
}
.chip {
  flex-shrink: 0;
  padding: 9px 18px;
  border-radius: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--text-2);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.15s;
}
.chip:hover {
  color: var(--text);
  border-color: var(--line-hi);
}
.chip.active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(193, 39, 45, 0.28);
}
.chip .num {
  display: inline-block;
  margin-left: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-3);
}
.chip.active .num {
  color: rgba(255, 255, 255, 0.7);
}

/* ── Section header ─────────────────────────────────── */
.sec {
  padding: 28px 0;
}
.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 22px;
}
.sec-title {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.sec-title h2 {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 36px;
  color: var(--text);
  letter-spacing: -0.01em;
  margin: 0;
}
.sec-title .count {
  font-size: 12.5px;
  color: var(--text-3);
  letter-spacing: 0.3px;
}
.sec-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.sec-link:hover {
  color: var(--accent);
}

/* ── Latest news grid ───────────────────────────────── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.article {
  background: var(--surf);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
  box-shadow: 0 2px 6px rgba(15, 15, 20, 0.04);
}
.article:hover {
  border-color: var(--brand);
  box-shadow:
    0 0 0 1px var(--brand-15),
    0 18px 38px rgba(193, 39, 45, 0.1);
  transform: translateY(-3px);
}
.article .image {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--surf-hi);
  overflow: hidden;
}
.article .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.article:hover .image img {
  transform: scale(1.04);
}
.article .image .duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(14, 14, 17, 0.85);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.cat-pill {
  display: inline-flex;
  align-items: center;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid;
  align-self: flex-start;
}
.cat-pill.pol {
  color: var(--cat-pol);
  background: rgba(193, 39, 45, 0.08);
  border-color: rgba(193, 39, 45, 0.25);
}
.cat-pill.sport {
  color: var(--cat-sport);
  background: rgba(4, 120, 87, 0.08);
  border-color: rgba(4, 120, 87, 0.25);
}
.cat-pill.tech {
  color: var(--cat-tech);
  background: rgba(124, 58, 237, 0.08);
  border-color: rgba(124, 58, 237, 0.25);
}
.cat-pill.world {
  color: var(--cat-world);
  background: rgba(29, 78, 216, 0.08);
  border-color: rgba(29, 78, 216, 0.25);
}
.cat-pill.biz {
  color: var(--cat-biz);
  background: rgba(180, 83, 9, 0.08);
  border-color: rgba(180, 83, 9, 0.25);
}
.cat-pill.health {
  color: var(--cat-health);
  background: rgba(15, 118, 110, 0.08);
  border-color: rgba(15, 118, 110, 0.25);
}
.article .body {
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.article h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.26;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--text);
  text-wrap: pretty;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article .meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: var(--text-3);
}
.article .meta .item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.article .meta .save {
  margin-left: auto;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 99px;
  color: var(--text-2);
  border: 1px solid var(--line);
  transition: all 0.15s;
}
.article .meta .save:hover {
  color: var(--brand);
  border-color: var(--brand);
  background: var(--brand-08);
}
.article .meta .save.saved {
  color: var(--brand);
  border-color: var(--brand);
  background: var(--brand-08);
}

/* ── Live banner ────────────────────────────────────── */
.live-banner {
  margin: 40px 0;
  background: linear-gradient(90deg, #0e0e11, #1c1c22 70%);
  border: 1px solid rgba(193, 39, 45, 0.3);
  border-radius: 16px;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.live-banner::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -120px;
  top: -140px;
  background: radial-gradient(circle, rgba(193, 39, 45, 0.45), transparent 70%);
  pointer-events: none;
}
.live-icon {
  width: 56px;
  height: 56px;
  background: var(--brand);
  color: #fff;
  border-radius: 12px;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 6px rgba(193, 39, 45, 0.22);
  position: relative;
  z-index: 1;
}
.live-text {
  position: relative;
  z-index: 1;
}
.live-text .tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 5px;
}
.live-text .tag .dot {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--accent);
  animation: blink 1.4s infinite;
}
.live-text h3 {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  margin: 0 0 4px;
  color: #fff;
  letter-spacing: -0.01em;
}
.live-text p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.live-mini-bars {
  display: flex;
  align-items: end;
  gap: 3px;
  height: 22px;
  position: relative;
  z-index: 1;
}
.live-mini-bars b {
  width: 3px;
  background: var(--accent);
  border-radius: 1px;
  animation: bar 1s ease-in-out infinite;
}
.live-mini-bars b:nth-child(1) {
  height: 50%;
  animation-delay: 0s;
}
.live-mini-bars b:nth-child(2) {
  height: 90%;
  animation-delay: 0.15s;
}
.live-mini-bars b:nth-child(3) {
  height: 35%;
  animation-delay: 0.3s;
}
.live-mini-bars b:nth-child(4) {
  height: 75%;
  animation-delay: 0.45s;
}
.live-mini-bars b:nth-child(5) {
  height: 55%;
  animation-delay: 0.6s;
}
.btn-watch {
  background: var(--brand);
  color: #fff;
  padding: 13px 22px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
  transition:
    background 0.15s,
    transform 0.15s;
  box-shadow: 0 6px 20px rgba(193, 39, 45, 0.5);
}
.btn-watch:hover {
  background: var(--accent);
  transform: translateY(-1px);
}
.btn-watch .pulse-sm {
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 99px;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: pulse 1.6s infinite;
}

/* ── Trending horizontal scroll ─────────────────────── */
.trend-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  margin: 0 -40px;
  padding: 4px 40px 12px;
}
.trend-scroll::-webkit-scrollbar {
  display: none;
}
.trend-card {
  flex-shrink: 0;
  width: 240px;
  background: var(--surf);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition:
    border-color 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 2px 6px rgba(15, 15, 20, 0.04);
}
.trend-card:hover {
  border-color: var(--brand);
  box-shadow:
    0 0 0 1px var(--brand-15),
    0 12px 24px rgba(193, 39, 45, 0.08);
  transform: translateY(-2px);
}
.trend-card .image {
  position: relative;
  height: 132px;
  background: var(--surf-hi);
  overflow: hidden;
}
.trend-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trend-rank {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 30px;
  height: 30px;
  border-radius: 99px;
  background: var(--brand);
  color: #fff;
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px rgba(193, 39, 45, 0.5);
  line-height: 1;
}
.trend-card .body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.trend-card h4 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.trend-card .time {
  font-size: 11.5px;
  color: var(--text-3);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ── Live TV band ───────────────────────────────────── */
.lt-band {
  background: var(--ink-bg);
  color: #fff;
  padding: 56px 0;
  margin-top: 24px;
}
.lt-band .sec-title h2 {
  color: #fff;
}
.lt-band .sec-title .count {
  color: rgba(255, 255, 255, 0.55);
}
.lt-band .sec-link {
  color: var(--accent);
}
.lt-band .sec-link:hover {
  color: #fff;
}
.lt-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.lt-card {
  background: #1c1c22;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s;
}
.lt-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(237, 32, 39, 0.18);
}
.lt-thumb {
  position: relative;
  aspect-ratio: 16/10;
  background: #0e0e11;
  overflow: hidden;
}
.lt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition:
    transform 0.4s,
    opacity 0.2s;
}
.lt-card:hover .lt-thumb img {
  transform: scale(1.04);
  opacity: 1;
}
.lt-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 14, 17, 0) 50%,
    rgba(14, 14, 17, 0.7)
  );
}
.lt-live {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  z-index: 2;
}
.lt-live::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 99px;
  background: #fff;
  animation: blink 1.4s infinite;
}
.lt-bars {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  gap: 2px;
  align-items: end;
  height: 12px;
  z-index: 2;
}
.lt-bars b {
  width: 2px;
  background: #fff;
  border-radius: 1px;
  animation: bar 1s ease-in-out infinite;
}
.lt-bars b:nth-child(1) {
  height: 50%;
  animation-delay: 0s;
}
.lt-bars b:nth-child(2) {
  height: 90%;
  animation-delay: 0.15s;
}
.lt-bars b:nth-child(3) {
  height: 30%;
  animation-delay: 0.3s;
}
.lt-bars b:nth-child(4) {
  height: 70%;
  animation-delay: 0.45s;
}
.lt-meta {
  padding: 12px 14px 14px;
}
.lt-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  letter-spacing: -0.01em;
}
.lt-now {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}
.lt-watching {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
}

/* ── Video grid ─────────────────────────────────────── */
.vid-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}
.vid-card {
  background: var(--surf);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}
.vid-card:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(193, 39, 45, 0.1);
}
.vid-card.big {
  grid-row: span 2;
}
.vid-thumb {
  position: relative;
  flex: 1;
  min-height: 180px;
  background: var(--surf-hi);
  overflow: hidden;
}
.vid-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.vid-card:hover .vid-thumb img {
  transform: scale(1.04);
}
.vid-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--brand);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.vid-card.big .vid-play {
  width: 64px;
  height: 64px;
}
.vid-dur {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(14, 14, 17, 0.85);
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
}
.vid-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--brand);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
}
.vid-live {
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.vid-live::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 99px;
  background: #fff;
  animation: blink 1.4s infinite;
}
.vid-body {
  padding: 14px 16px 14px;
}
.vid-card.big .vid-body {
  padding: 18px 20px 20px;
}
.vid-kicker {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--brand);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.vid-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.28;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.005em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vid-card.big h3 {
  font-size: 22px;
  -webkit-line-clamp: 3;
}
.vid-meta {
  margin-top: 8px;
  font-size: 11px;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.vid-meta .sep {
  width: 3px;
  height: 3px;
  background: var(--text-3);
  border-radius: 99px;
}

/* ── Shows grid ─────────────────────────────────────── */
.shows-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.show-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 14px;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  transition: all 0.2s;
}
.show-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(15, 15, 20, 0.18);
}
.show-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.show-card:hover img {
  transform: scale(1.05);
}
.show-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    transparent 35%,
    transparent 55%,
    rgba(0, 0, 0, 0.92) 100%
  );
}
.show-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--brand);
  color: #fff;
  padding: 4px 9px;
  border-radius: 4px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  z-index: 2;
  text-transform: uppercase;
}
.show-badge.upcoming {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.show-info {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  color: #fff;
}
.show-ep {
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  margin-bottom: 4px;
}
.show-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.22;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
}
.show-host {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.7);
}
.show-play {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 32px;
  height: 32px;
  border-radius: 99px;
  background: #fff;
  color: var(--brand);
  display: grid;
  place-items: center;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: opacity 0.2s;
}
.show-card:hover .show-play {
  opacity: 1;
}

/* ── Audio grid ─────────────────────────────────────── */
.audio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.audio-card {
  background: var(--surf);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  align-items: center;
  transition: all 0.2s;
}
.audio-card:hover {
  border-color: var(--brand);
  box-shadow: 0 10px 24px rgba(193, 39, 45, 0.08);
}
.audio-cover {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--cream);
  flex-shrink: 0;
}
.audio-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.audio-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(193, 39, 45, 0),
    rgba(14, 14, 17, 0.45)
  );
}
.audio-cover .bars {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  gap: 2px;
  align-items: end;
  height: 14px;
  z-index: 2;
}
.audio-cover .bars b {
  width: 2.5px;
  background: #fff;
  border-radius: 1px;
  animation: bar 1s ease-in-out infinite;
}
.audio-cover .bars b:nth-child(1) {
  height: 40%;
  animation-delay: 0s;
}
.audio-cover .bars b:nth-child(2) {
  height: 80%;
  animation-delay: 0.1s;
}
.audio-cover .bars b:nth-child(3) {
  height: 55%;
  animation-delay: 0.2s;
}
.audio-cover .bars b:nth-child(4) {
  height: 90%;
  animation-delay: 0.3s;
}
.audio-cover .bars b:nth-child(5) {
  height: 35%;
  animation-delay: 0.4s;
}
.audio-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.audio-show {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--brand);
}
.audio-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 17.5px;
  line-height: 1.28;
  color: var(--text);
  margin: 2px 0 4px;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.audio-desc {
  font-size: 12.5px;
  color: var(--text-2);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.audio-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}
.audio-meta {
  font-size: 11px;
  color: var(--text-3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.audio-play {
  width: 36px;
  height: 36px;
  border-radius: 99px;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  transition: background 0.15s;
}
.audio-play:hover {
  background: var(--accent);
}

/* ── E-Paper section ────────────────────────────────── */
.epaper-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  margin: 0 -40px;
  padding: 4px 40px 12px;
}
.epaper-row::-webkit-scrollbar {
  display: none;
}
.epaper-card {
  flex-shrink: 0;
  width: 140px;
  height: 220px;
  background: var(--surf);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  position: relative;
  box-shadow: 0 2px 6px rgba(15, 15, 20, 0.04);
}
.epaper-card:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px var(--brand-15),
    0 14px 28px rgba(193, 39, 45, 0.12);
}
.epaper-top {
  flex: 1;
  background: linear-gradient(180deg, var(--cream), var(--surf-hi));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.epaper-top::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent 0 16px,
      rgba(14, 14, 17, 0.04) 16px 17px
    ),
    radial-gradient(circle at 50% 30%, rgba(193, 39, 45, 0.1), transparent 60%);
  pointer-events: none;
}
.epaper-icon {
  width: 60px;
  height: 76px;
  color: var(--brand);
  position: relative;
  z-index: 1;
}
.epaper-icon svg {
  width: 100%;
  height: 100%;
}
.epaper-date {
  font-size: 11px;
  color: var(--text-2);
  font-weight: 600;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1;
}
.epaper-bottom {
  padding: 12px 14px 14px;
  border-top: 1px solid var(--line);
  background: var(--surf);
}
.epaper-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.25;
  color: var(--text);
  letter-spacing: -0.01em;
}
.epaper-sub {
  font-size: 10.5px;
  color: var(--text-3);
  margin-top: 3px;
}
.epaper-card.featured .epaper-top::after {
  content: "NEW";
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--brand);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 3px 6px;
  border-radius: 3px;
  z-index: 2;
}

/* ── Footer ─────────────────────────────────────────── */
footer {
  margin-top: 56px;
  background: #0a0a0d;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid var(--line);
  padding: 56px 0 28px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
footer .logo .news {
  color: #fff;
}
.foot-brand p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin: 18px 0 22px;
  max-width: 320px;
  font-family: var(--serif);
}
.foot-store {
  display: flex;
  gap: 10px;
}
.foot-store .pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 9px 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  transition:
    border-color 0.15s,
    background 0.15s;
}
.foot-store .pill:hover {
  border-color: var(--brand);
  background: rgba(193, 39, 45, 0.12);
}
.foot-store .pill .label {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  display: block;
  line-height: 1;
}
.foot-store .pill .name {
  font-size: 13px;
  font-weight: 700;
}
.foot-col h5 {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.foot-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.foot-col a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.15s;
}
.foot-col a:hover {
  color: #fff;
}
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 16px;
}
.foot-bottom .cr {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}
.foot-bottom .cr b {
  color: rgba(255, 255, 255, 0.75);
}
.socials {
  display: flex;
  gap: 8px;
}
.socials a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.15s;
}
.socials a:hover {
  color: #fff;
  border-color: var(--brand);
  background: var(--brand);
}

/* ── E-Paper ─────────────────────────────────────────── */
.ep-hero {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  padding: 28px 0 0;
}
.ep-hero-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 22px;
}
.ep-hero-top .crumb {
  font-size: 12.5px;
  color: var(--text-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.ep-hero-top .crumb .sep {
  color: var(--text-3);
}
.ep-hero-top h1 {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.ep-hero-top .date-strip {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--text-2);
}
.ep-hero-top .date-strip b {
  color: var(--brand);
  font-weight: 600;
}
.ep-hero-top .date-strip .live {
  background: var(--brand);
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.ep-hero-top .date-strip .live::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 99px;
  background: #fff;
  animation: blink 1.4s infinite;
}
.ep-controls {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 12px 0;
}
.ep-controls-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.ep-tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}
.ep-tabs::-webkit-scrollbar {
  display: none;
}
.ep-tab {
  padding: 7px 14px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: all 0.15s;
  cursor: pointer;
}
.ep-tab:hover {
  color: var(--brand);
  border-color: var(--brand);
}
.ep-tab.active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(193, 39, 45, 0.22);
}
.ep-tab .ct {
  font-family: var(--mono);
  font-size: 10.5px;
  opacity: 0.7;
}
.ep-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.ep-actions .btn {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 8px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s;
}
.ep-actions .btn:hover {
  color: var(--brand);
  border-color: var(--brand);
}
.ep-actions .btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ep-actions .btn.primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 4px 14px rgba(193, 39, 45, 0.22);
}
.ep-actions .btn.primary:hover {
  background: var(--accent);
}
.ep-actions select {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 7px 14px;
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 500;
}
.ep-shell {
  padding: 36px 0 56px;
}
.ep-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
}
.thumb-rail {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.thumb-rail .h {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin: 0 0 8px 6px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.thumb-rail .h .ct {
  color: var(--text-3);
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 0.3px;
}
.thumb-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-height: 720px;
  overflow-y: auto;
  scrollbar-width: thin;
  padding-right: 4px;
}
.thumb-list::-webkit-scrollbar {
  width: 4px;
}
.thumb-list::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}
.thumb-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: all 0.15s;
}
.thumb-card.active {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(193, 39, 45, 0.18);
}
.thumb-card:hover {
  border-color: var(--brand);
}
.thumb-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumb-card .page-no {
  position: absolute;
  bottom: 4px;
  left: 4px;
  background: rgba(14, 14, 17, 0.85);
  color: #fff;
  font-family: var(--mono);
  font-size: 9px;
  padding: 1px 5px;
  border-radius: 3px;
}
.thumb-card.section-start::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand);
}
.ep-viewer {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.viewer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}
.viewer-top .pg-info {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.viewer-top .pg-info b {
  font-weight: 600;
}
.viewer-top .pg-info .ed {
  background: var(--brand);
  color: #fff;
  padding: 3px 9px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
}
.viewer-top .pg-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.viewer-top .pg-nav button {
  width: 32px;
  height: 32px;
  border-radius: 99px;
  background: var(--paper);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--text-2);
  transition: all 0.15s;
}
.viewer-top .pg-nav button:hover {
  color: var(--brand);
  border-color: var(--brand);
}
.viewer-top .pg-nav button.disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}
.viewer-top .pg-nav button svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.viewer-top .pg-nav input {
  width: 44px;
  height: 32px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 6px;
  text-align: center;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--ink);
  outline: none;
}
.viewer-top .pg-nav input:focus {
  border-color: var(--brand);
}
.viewer-top .pg-nav .total {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--text-3);
}
.viewer-stage {
  position: relative;
  background: #ececef;
  background-image: radial-gradient(
    circle at center,
    rgba(14, 14, 17, 0.08),
    transparent 60%
  );
  padding: 32px;
  display: grid;
  place-items: center;
  min-height: 720px;
}
.page-shell {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 3/4;
  background: #fff;
  border: 1px solid #d8d8db;
  box-shadow:
    0 24px 56px rgba(15, 15, 20, 0.18),
    0 6px 14px rgba(15, 15, 20, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.page-shell .mast {
  background: #fff;
  text-align: center;
  padding: 16px 14px 12px;
  border-bottom: 2px solid #0e0e11;
}
.page-shell .mast .nameplate {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  line-height: 0.85;
}
.page-shell .mast .nameplate .dt {
  font-family: var(--italic);
  font-style: italic;
  color: var(--brand);
  font-size: 44px;
  letter-spacing: -0.04em;
}
.page-shell .mast .nameplate .news {
  font-family: var(--sans);
  font-weight: 800;
  color: #0e0e11;
  font-size: 24px;
  letter-spacing: -0.04em;
  margin-left: 2px;
}
.page-shell .mast .mast-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--text-2);
  letter-spacing: 0.3px;
}
.page-shell .mast .mast-meta b {
  color: #0e0e11;
}
.page-shell .lead-line {
  font-family: var(--sans);
  font-style: italic;
  font-size: 10px;
  color: var(--text-2);
  margin-top: 4px;
}
.page-shell .columns {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: 8px;
  padding: 12px 14px;
  flex: 1;
  overflow: hidden;
}
.page-shell .col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  overflow: hidden;
}
.page-shell .col h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.15;
  color: #0e0e11;
  margin: 0;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}
.page-shell .col .lead {
  font-family: var(--italic);
  font-style: italic;
  font-size: 20px;
  line-height: 1.05;
  color: #0e0e11;
  margin: 0;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.page-shell .col .kicker {
  font-size: 8px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.page-shell .col p {
  font-family: var(--serif);
  font-size: 8.5px;
  line-height: 1.4;
  color: #0e0e11;
  margin: 0;
  text-align: justify;
  display: -webkit-box;
  -webkit-line-clamp: 12;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page-shell .col .byline {
  font-family: var(--sans);
  font-size: 7.5px;
  color: var(--text-2);
  letter-spacing: 0.4px;
}
.page-shell .col .photo {
  aspect-ratio: 16/10;
  background: var(--cream) center/cover no-repeat;
  border-radius: 2px;
  overflow: hidden;
}
.page-shell .col .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-shell .col .photo-cap {
  font-family: var(--sans);
  font-size: 7px;
  color: var(--text-2);
  font-style: italic;
}
.page-shell .col hr {
  border: 0;
  border-top: 1px solid #ddd;
  margin: 4px 0;
}
.page-shell .footer-strip {
  border-top: 1px solid #ddd;
  padding: 8px 14px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 8px;
  color: var(--text-3);
  letter-spacing: 0.3px;
}
.page-shell .text-callout {
  background: #f5f0e8;
  border-left: 2px solid var(--brand);
  padding: 6px 8px;
  font-family: var(--italic);
  font-style: italic;
  font-size: 11px;
  line-height: 1.15;
  color: #0e0e11;
}
.zoom-fab {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  gap: 6px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 4px;
  box-shadow: 0 4px 14px rgba(15, 15, 20, 0.08);
}
.zoom-fab button {
  width: 30px;
  height: 30px;
  border-radius: 99px;
  display: grid;
  place-items: center;
  color: var(--text-2);
  transition: all 0.15s;
}
.zoom-fab button:hover {
  background: var(--tag-bg);
  color: var(--brand);
}
.zoom-fab .pct {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-2);
  padding: 0 8px;
  align-self: center;
}
.zoom-fab svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ep-right {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ep-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
}
.ep-card .h {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.ep-card .h .ct {
  color: var(--text-3);
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 0.3px;
}
.sec-list {
  display: flex;
  flex-direction: column;
}
.sec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 8px;
  margin: 0 -4px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-2);
  cursor: pointer;
  transition: all 0.15s;
}
.sec-row:hover {
  background: var(--tag-bg);
  color: var(--brand);
}
.sec-row.active {
  background: var(--brand);
  color: #fff;
  font-weight: 600;
}
.sec-row .lt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.sec-row .dot {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--brand);
}
.sec-row.active .dot {
  background: #fff;
}
.sec-row .pg {
  font-family: var(--mono);
  font-size: 10.5px;
  opacity: 0.7;
}
.archive {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.archive-card {
  aspect-ratio: 3/4;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: end;
  transition: all 0.15s;
}
.archive-card:hover {
  border-color: var(--brand);
  transform: translateY(-1px);
}
.archive-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  position: absolute;
  inset: 0;
}
.archive-card .badge {
  position: absolute;
  top: 6px;
  left: 6px;
  background: var(--brand);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 2px;
  letter-spacing: 0.6px;
}
.archive-card .label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(14, 14, 17, 0.92));
  color: #fff;
  font-family: var(--mono);
  font-size: 9px;
  padding: 8px 6px 5px;
  text-align: center;
  letter-spacing: 0.3px;
}
.editions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.edition-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  transition: all 0.15s;
}
.edition-card:hover {
  border-color: var(--brand);
}
.edition-card .ic {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--tag-bg);
  color: var(--brand);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.edition-card .ic svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.edition-card .info {
  min-width: 0;
}
.edition-card .nm {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.edition-card .pg {
  font-size: 10.5px;
  color: var(--text-3);
  font-family: var(--mono);
  margin-top: 1px;
}
.stat-row {
  display: flex;
  gap: 16px;
  padding: 4px 0;
}
.stat-row .stat {
  flex: 1;
}
.stat-row .stat .n {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  color: var(--brand);
  letter-spacing: -0.01em;
  line-height: 1;
}
.stat-row .stat .l {
  font-size: 10px;
  color: var(--text-2);
  margin-top: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 600;
}
.sub-cta {
  background: var(--brand);
  color: #fff;
  border-radius: 14px;
  padding: 22px 20px;
  position: relative;
  overflow: hidden;
}
.sub-cta::before {
  content: "DT";
  position: absolute;
  font-family: var(--italic);
  font-style: italic;
  font-size: 200px;
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.06);
  right: -30px;
  top: -20px;
  letter-spacing: -0.05em;
}
.sub-cta .lbl {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.4px;
  opacity: 0.8;
}
.sub-cta h4 {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  margin: 6px 0 10px;
  letter-spacing: -0.01em;
  line-height: 1.05;
  position: relative;
  z-index: 1;
}
.sub-cta p {
  font-size: 12px;
  opacity: 0.85;
  margin: 0 0 14px;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
.sub-cta .btn {
  background: #fff;
  color: var(--brand);
  padding: 9px 16px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
  transition: transform 0.15s;
}
.sub-cta .btn:hover {
  transform: translateY(-1px);
}
.sub-cta .btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Shorts ──────────────────────────────────────────── */
.shorts-shell {
  min-height: calc(100vh - 72px);
  background: var(--bg);
  position: relative;
  padding: 24px 0 56px;
  overflow: hidden;
}
.shorts-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      800px 500px at 30% 20%,
      rgba(193, 39, 45, 0.06),
      transparent 70%
    ),
    radial-gradient(
      600px 400px at 80% 80%,
      rgba(237, 32, 39, 0.04),
      transparent 70%
    );
  pointer-events: none;
}
.shorts-grid {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 320px;
  gap: 28px;
  position: relative;
  z-index: 1;
}
.shorts-rail {
  position: sticky;
  top: 96px;
  align-self: start;
}
.shorts-rail .rail-h {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin: 0 0 14px 8px;
}
.cat-list {
  display: flex;
  flex-direction: column;
}
.cat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 99px;
  font-size: 14px;
  color: var(--text-2);
  font-weight: 500;
  transition: all 0.15s;
  margin-bottom: 4px;
  width: 100%;
  text-align: left;
  cursor: pointer;
}
.cat-link:hover {
  background: var(--tag-bg);
  color: var(--brand);
}
.cat-link.active {
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(193, 39, 45, 0.28);
}
.cat-link .ct {
  font-family: var(--mono);
  font-size: 11px;
  opacity: 0.7;
}
.cat-link.active .ct {
  opacity: 0.9;
}
.cat-link .live-d {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--brand);
  margin-right: 4px;
  display: inline-block;
  animation: blink 1.4s infinite;
}
.cat-link.active .live-d {
  background: #fff;
}
.player-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.shorts-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 0 8px;
}
.shorts-top h1 {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 44px;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}
.shorts-top .live-count {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--paper);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 99px;
  font-size: 12px;
  color: var(--text-2);
  font-family: var(--mono);
}
.shorts-top .live-count .d {
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 99px;
  animation: blink 1.4s infinite;
}
.shorts-top .live-count b {
  color: var(--ink);
  font-weight: 600;
}
.player-stage {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 16px;
  align-items: center;
  position: relative;
}
.player-stage .nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 99px;
  background: var(--paper);
  border: 1px solid var(--border);
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: all 0.15s;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(15, 15, 20, 0.04);
}
.player-stage .nav-btn:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: scale(1.05);
}
.player-stage .nav-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.player-stage .nav-btn.disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}
.player-stage .nav-btn.disabled:hover {
  background: var(--paper);
  border-color: var(--border);
  color: var(--ink);
  transform: none;
}
.short {
  width: 360px;
  aspect-ratio: 9/16;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #1a1a1a;
  box-shadow: 0 24px 60px rgba(15, 15, 20, 0.18);
  border: 1px solid var(--border);
}
.short img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.short::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0) 18%,
    rgba(0, 0, 0, 0) 55%,
    rgba(0, 0, 0, 0.92) 100%
  );
  pointer-events: none;
}
.short .top {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
}
.short .live-tag {
  background: var(--brand);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  padding: 4px 9px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.short .live-tag::before {
  content: "";
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 99px;
  animation: blink 1.4s infinite;
}
.short .views {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 4px 9px;
  border-radius: 4px;
  font-size: 11px;
  font-family: var(--mono);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.short .play-mid {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand);
  display: grid;
  place-items: center;
  z-index: 3;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}
.short .play-mid svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
.short .bottom {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  color: #fff;
}
.short .author {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
}
.short .author .av {
  width: 32px;
  height: 32px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--brand), #7d1418);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  flex-shrink: 0;
}
.short .author .who {
  font-size: 13px;
  font-weight: 600;
}
.short .author .handle {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--mono);
}
.short .author .follow {
  margin-left: auto;
  background: var(--brand);
  color: #fff;
  padding: 5px 12px;
  border-radius: 99px;
  font-size: 11.5px;
  font-weight: 700;
}
.short .author .follow:hover {
  background: var(--accent);
}
.short .cat-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.short h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.25;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  text-wrap: pretty;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.short .meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--mono);
}
.short .meta .sep {
  width: 3px;
  height: 3px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 99px;
}
.short .progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 4;
}
.short .progress .bar {
  height: 100%;
  background: var(--brand);
  width: 38%;
}
.short-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 30px;
}
.short-act {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--text-2);
  cursor: pointer;
}
.short-act .ico {
  width: 52px;
  height: 52px;
  border-radius: 99px;
  background: var(--paper);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  transition: all 0.15s;
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(15, 15, 20, 0.04);
}
.short-act:hover .ico {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: scale(1.05);
}
.short-act.on .ico {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.short-act .ico svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.short-act.on .ico svg {
  fill: currentColor;
}
.short-act .n {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
}
.shorts-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 18px;
  max-width: 740px;
}
.shorts-filters .chip {
  padding: 7px 14px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: 12.5px;
  color: var(--text-2);
  font-weight: 500;
  transition: all 0.15s;
}
.shorts-filters .chip:hover {
  color: var(--brand);
  border-color: var(--brand);
}
.shorts-filters .chip.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(193, 39, 45, 0.22);
}
.up-next {
  position: sticky;
  top: 96px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.up-card {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  align-items: center;
  padding: 8px;
  border-radius: 12px;
  background: var(--paper);
  border: 1px solid var(--border);
  transition: all 0.15s;
  margin-bottom: 8px;
  width: 100%;
  text-align: left;
  cursor: pointer;
}
.up-card:last-child {
  margin-bottom: 0;
}
.up-card:hover {
  background: var(--cream);
  border-color: var(--brand);
}
.up-thumb {
  width: 70px;
  aspect-ratio: 9/16;
  border-radius: 8px;
  overflow: hidden;
  background: #1a1a1a center/cover no-repeat;
  position: relative;
}
.up-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.up-thumb .dur {
  position: absolute;
  bottom: 4px;
  right: 4px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 9px;
  padding: 1px 4px;
  border-radius: 3px;
  font-family: var(--mono);
}
.up-thumb .live-d {
  position: absolute;
  top: 6px;
  left: 6px;
  background: var(--brand);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  padding: 1px 4px;
  border-radius: 2px;
  letter-spacing: 0.8px;
}
.up-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.up-info .cat {
  font-size: 9.5px;
  color: var(--brand);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 700;
}
.up-info h5 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12.5px;
  line-height: 1.32;
  color: var(--ink);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.up-info .meta {
  font-size: 10.5px;
  color: var(--text-3);
  font-family: var(--mono);
}
.creator-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
}
.creator-card .ttl {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.creator-row {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid var(--border);
}
.creator-row:first-of-type {
  border-top: 0;
  padding-top: 2px;
}
.creator-row .av {
  width: 38px;
  height: 38px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--brand), #7d1418);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.creator-row .info {
  min-width: 0;
}
.creator-row .name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.creator-row .handle {
  font-size: 11px;
  color: var(--text-3);
  font-family: var(--mono);
}
.creator-row .follow {
  padding: 5px 12px;
  border-radius: 99px;
  background: var(--brand);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
}
.creator-row .follow:hover {
  background: var(--accent);
}
.creator-row .follow.on {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-2);
}

/* ─────────────────────────────────────────
   Topics page
   ───────────────────────────────────────── */
.topics-hero {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  padding: 48px 0 40px;
  position: relative;
  overflow: hidden;
}
.topics-hero::before {
  content: "TOPICS";
  position: absolute;
  font-family: var(--italic);
  font-style: italic;
  font-size: 380px;
  line-height: 0.8;
  color: rgba(193, 39, 45, 0.04);
  right: -40px;
  top: -40px;
  letter-spacing: -0.05em;
  pointer-events: none;
}
.topics-hero .row {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 56px;
  align-items: end;
  position: relative;
}
.topics-hero .crumbs {
  font-size: 12.5px;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.topics-hero .crumbs .sep {
  color: var(--text-3);
}
.topics-hero h1 {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 72px;
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 16px;
}
.topics-hero p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0;
  max-width: 560px;
}
.topics-hero .nums {
  display: flex;
  gap: 28px;
  padding-top: 24px;
}
.topics-hero .nums .n {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 22px;
  color: var(--brand);
  letter-spacing: -0.01em;
}
.topics-hero .nums .l {
  font-size: 11px;
  color: var(--text-2);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 2px;
}
.topics-search {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
}
.topics-search .label {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.topics-search .label::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--brand);
}
.topics-search-row {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-3);
  font-size: 14px;
  margin-bottom: 12px;
}
.topics-search-row input {
  flex: 1;
  border: 0;
  outline: none;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  background: transparent;
}
.topics-search .quick {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.topics-search .quick span {
  font-size: 11px;
  color: var(--text-2);
  margin-right: 4px;
}
.topics-search .quick a {
  font-size: 11.5px;
  padding: 4px 10px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 99px;
  color: var(--text-2);
  transition: all 0.15s;
}
.topics-search .quick a:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.topics-anchors {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 72px;
  z-index: 70;
}
.topics-anchors-row {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 0;
}
.topics-anchors-row::-webkit-scrollbar {
  display: none;
}
.topics-anchor {
  padding: 14px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-2);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  cursor: pointer;
}
.topics-anchor:hover {
  color: var(--brand);
}
.topics-anchor.active {
  color: var(--brand);
  font-weight: 600;
  border-bottom-color: var(--brand);
}
.topics-anchor .ct {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
}
.topics-anchor.active .ct {
  color: var(--brand);
}
.topics-sec {
  padding: 48px 0 8px;
}
.topics-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 24px;
}
.topics-head .left {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.topics-head h2 {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 36px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0;
}
.topics-head .count {
  font-size: 12.5px;
  color: var(--text-3);
  font-family: var(--mono);
}
.topics-head .link {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.topics-head .link:hover {
  color: var(--accent);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feature-card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--cream);
  transition: all 0.25s;
}
.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 14, 17, 0) 35%,
    rgba(14, 14, 17, 0.85) 100%
  );
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(15, 15, 20, 0.18);
  border-color: var(--brand);
}
.feature-card:hover img {
  transform: scale(1.05);
}
.feature-card .body {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  color: #fff;
}
.feature-card .live-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  background: var(--brand);
  color: #fff;
  padding: 4px 9px;
  border-radius: 4px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.feature-card .live-tag::before {
  content: "";
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 99px;
  animation: blink 1.4s infinite;
}
.feature-card .follow-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 32px;
  height: 32px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--brand);
  display: grid;
  place-items: center;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
}
.feature-card .follow-btn:hover {
  background: var(--brand);
  color: #fff;
}
.feature-card .follow-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
}
.feature-card h3 {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: #fff;
}
.feature-card .meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
}
.feature-card .meta .sep {
  width: 3px;
  height: 3px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 99px;
}
.feature-card .meta .red {
  color: var(--accent);
  font-weight: 700;
}
.az-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: start;
}
.az-letters {
  position: sticky;
  top: 132px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.az-letters a {
  text-align: center;
  padding: 8px 0;
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-2);
  border-radius: 6px;
  transition: all 0.15s;
}
.az-letters a:hover {
  background: var(--tag-bg);
  color: var(--brand);
}
.az-letters a.has {
  color: var(--ink);
}
.az-letters a.disabled {
  color: var(--text-3);
  cursor: default;
  opacity: 0.4;
  pointer-events: none;
}
.az-list {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.az-letter-block {
  border-top: 1px solid var(--border);
}
.az-letter-block:first-child {
  border-top: 0;
}
.az-letter-h {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px 12px;
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  color: var(--brand);
  letter-spacing: -0.01em;
}
.az-letter-h .ln {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.az-letter-h .ct {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
  font-style: normal;
}
.az-rows {
  padding: 0 22px 16px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px 28px;
}
.az-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
}
.az-row:last-child {
  border-bottom: 0;
}
.az-row:hover .az-name {
  color: var(--brand);
}
.az-row .az-name {
  font-weight: 500;
  transition: color 0.15s;
}
.az-row .az-name.live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.az-row .az-name.live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--accent);
  animation: blink 1.4s infinite;
}
.az-row .az-ct {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--text-3);
}
.content-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.content-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.content-card:hover {
  border-color: var(--brand);
  box-shadow: 0 12px 28px rgba(193, 39, 45, 0.08);
  transform: translateY(-2px);
}
.content-card .ico-wrap {
  width: 44px;
  height: 44px;
  background: var(--tag-bg);
  color: var(--brand);
  border-radius: 12px;
  display: grid;
  place-items: center;
}
.content-card .ico-wrap svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.content-card.live .ico-wrap {
  background: var(--brand);
  color: #fff;
}
.content-card h4 {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}
.content-card p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
  margin: 0;
  min-height: 60px;
}
.content-card .stats {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.content-card .stats .n {
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 600;
  color: var(--brand);
}
.content-card .stats .l {
  font-size: 11px;
  color: var(--text-2);
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.content-card .arr {
  position: absolute;
  top: 22px;
  right: 22px;
  color: var(--text-3);
  transition: all 0.15s;
}
.content-card:hover .arr {
  color: var(--brand);
  transform: translateX(3px);
}
.followed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}
.followed-row {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 12px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  align-items: center;
  transition: all 0.15s;
  text-decoration: none;
}
.followed-row:hover {
  border-color: var(--brand);
  transform: translateY(-1px);
}
.followed-row .num {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--brand);
  text-align: center;
}
.followed-row .info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.followed-row .name {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
}
.followed-row .sub {
  font-size: 11.5px;
  color: var(--text-2);
  font-family: var(--mono);
}
.followed-row .follow {
  padding: 5px 12px;
  border-radius: 99px;
  background: var(--paper);
  border: 1px solid var(--border);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-2);
  transition: all 0.15s;
  cursor: pointer;
}
.followed-row .follow:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.followed-row .follow.on {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-cloud a {
  padding: 7px 14px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tag-cloud a:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.tag-cloud a .ct {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--text-3);
  font-weight: 500;
}
.tag-cloud a:hover .ct {
  color: rgba(255, 255, 255, 0.85);
}
.tag-cloud a.sz-l {
  font-size: 16px;
  padding: 9px 18px;
}
.tag-cloud a.sz-m {
  font-size: 14px;
  padding: 8px 16px;
}
.tag-cloud a.sz-s {
  font-size: 12px;
  padding: 6px 12px;
}

/* ─────────────────────────────────────────
   Feeds page
   ───────────────────────────────────────── */
.feeds-shell {
  padding: 28px 0 56px;
}
.feeds-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: start;
}
.feeds-rail {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 96px;
}
.rail-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
}
.rail-card.accent-l {
  border-left: 3px solid var(--brand);
}
.rail-h {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.feed-types {
  display: flex;
  flex-direction: column;
}
.feed-type {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  margin: 0 -8px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--text-2);
  font-weight: 500;
  transition: all 0.15s;
  gap: 12px;
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  width: calc(100% + 16px);
  text-align: left;
}
.feed-type:hover {
  background: var(--bg);
  color: var(--brand);
}
.feed-type.active {
  background: var(--brand);
  color: #fff;
  font-weight: 600;
}
.feed-type .lt {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.feed-type .ico {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.feed-type .ct {
  font-family: var(--mono);
  font-size: 11px;
  opacity: 0.7;
}
.feed-type.active .ct {
  opacity: 0.9;
}
.lc-mini {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lc-row {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid var(--border);
  text-decoration: none;
}
.lc-row:first-child {
  border-top: 0;
  padding-top: 2px;
}
.lc-thumb {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--cream) center/cover no-repeat;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
}
.lc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lc-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--brand);
  border-radius: 8px;
  animation: ringPulse 2s infinite;
  opacity: 0;
}
.lc-row.live .lc-thumb::after {
  opacity: 1;
}
@keyframes ringPulse {
  50% {
    opacity: 0.4;
  }
}
.lc-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.lc-now {
  font-size: 11px;
  color: var(--text-3);
  margin-top: 1px;
}
.lc-watching {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--mono);
}
.lc-watching::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--brand);
  border-radius: 99px;
  animation: blink 1.4s infinite;
}
.shortcut-list {
  display: flex;
  flex-direction: column;
}
.shortcut {
  padding: 8px 0;
  font-size: 13.5px;
  color: var(--text-2);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
}
.shortcut:first-child {
  border-top: 0;
  padding-top: 2px;
}
.shortcut:hover {
  color: var(--brand);
}
.shortcut .tag {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
}
.feeds-main {
  min-width: 0;
}
.feed-tabs {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  overflow: hidden;
  margin-bottom: 18px;
}
.feed-tab {
  flex: 1;
  padding: 14px 16px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-2);
  border-right: 1px solid var(--border);
  text-align: center;
  position: relative;
  transition: all 0.15s;
  background: none;
  border-top: none;
  border-bottom: none;
  border-left: none;
  cursor: pointer;
}
.feed-tab:last-child {
  border-right: 0;
}
.feed-tab:hover {
  color: var(--brand);
  background: var(--bg);
}
.feed-tab.active {
  color: var(--brand);
  font-weight: 700;
  background: var(--tag-bg);
}
.feed-tab.active::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  height: 2px;
  width: 28px;
  background: var(--brand);
}
.feed-tab .new {
  background: var(--brand);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 99px;
  margin-left: 4px;
}
.composer {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: center;
}
.composer .av {
  width: 40px;
  height: 40px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--brand), #7d1418);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.composer .box {
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 9px 16px;
  font-size: 14px;
  color: var(--text-3);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.composer .actions {
  display: flex;
  gap: 4px;
}
.composer .act-btn {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--text-3);
  border-radius: 99px;
  transition: all 0.15s;
  background: none;
  border: none;
  cursor: pointer;
}
.composer .act-btn:hover {
  color: var(--brand);
  background: var(--tag-bg);
}
.composer svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.filter-strip {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 18px;
}
.filter-strip::-webkit-scrollbar {
  display: none;
}
.fstr-chip {
  padding: 7px 13px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-2);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.15s;
  cursor: pointer;
}
.fstr-chip:hover {
  color: var(--brand);
  border-color: var(--brand);
}
.fstr-chip.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  font-weight: 600;
}
.fstr-chip .dot {
  width: 5px;
  height: 5px;
  border-radius: 99px;
  background: var(--brand);
  display: inline-block;
  animation: blink 1.4s infinite;
}
.fstr-chip.active .dot {
  background: #fff;
}
.post {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px 16px;
  margin-bottom: 14px;
  transition: all 0.15s;
}
.post:hover {
  border-color: var(--line-hi);
  box-shadow: 0 4px 14px rgba(15, 15, 20, 0.04);
}
.post-head {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}
.post-av {
  width: 42px;
  height: 42px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--brand), #7d1418);
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  display: grid;
  place-items: center;
  position: relative;
  flex-shrink: 0;
}
.post-av img {
  width: 100%;
  height: 100%;
  border-radius: 99px;
  object-fit: cover;
}
.post-av .vrfd {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  border-radius: 99px;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  border: 2px solid var(--paper);
}
.post-av .vrfd svg {
  width: 9px;
  height: 9px;
  stroke: currentColor;
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.post-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.post-author {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 600;
}
.post-author .handle {
  font-weight: 500;
  color: var(--text-3);
  font-family: var(--mono);
  font-size: 12px;
}
.post-author .role {
  font-family: var(--sans);
  font-size: 11px;
  background: var(--tag-bg);
  color: var(--brand);
  padding: 2px 7px;
  border-radius: 99px;
  font-weight: 700;
  letter-spacing: 0.4px;
}
.post-time {
  font-size: 12px;
  color: var(--text-3);
  font-family: var(--mono);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.post-time .sep {
  width: 3px;
  height: 3px;
  background: var(--text-3);
  border-radius: 99px;
}
.post-time .live {
  color: var(--brand);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.post-time .live::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 99px;
  animation: blink 1.4s infinite;
}
.post-more {
  width: 30px;
  height: 30px;
  border-radius: 99px;
  display: grid;
  place-items: center;
  color: var(--text-3);
  transition: all 0.15s;
  background: none;
  border: none;
  cursor: pointer;
}
.post-more:hover {
  background: var(--tag-bg);
  color: var(--brand);
}
.post-more svg {
  width: 16px;
  height: 16px;
}
.post-text {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 14px;
  text-wrap: pretty;
}
.post-text .mention,
.post-text .hashtag {
  color: var(--brand);
  font-weight: 500;
  text-decoration: none;
}
.post-text .mention:hover,
.post-text .hashtag:hover {
  text-decoration: underline;
}
.post-text .big {
  font-family: var(--italic);
  font-style: italic;
  font-size: 22px;
  line-height: 1.18;
  color: var(--ink);
  display: block;
  margin: 4px 0 8px;
  letter-spacing: -0.01em;
}
.media-1 {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--cream);
  margin-bottom: 14px;
  border: 1px solid var(--border);
  position: relative;
}
.media-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
}
.media-2 .ph {
  aspect-ratio: 1;
  background: var(--cream) center/cover no-repeat;
  position: relative;
}
.media-2 .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-3 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4px;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
  margin-bottom: 14px;
}
.media-3 .col {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
}
.media-3 .ph {
  background: var(--cream) center/cover no-repeat;
}
.media-3 .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-cover {
  position: relative;
}
.video-cover .play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.video-cover .play span {
  width: 56px;
  height: 56px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--brand);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}
.video-cover .duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(14, 14, 17, 0.85);
  color: #fff;
  font-size: 11px;
  font-family: var(--mono);
  padding: 3px 8px;
  border-radius: 4px;
}
.video-cover .live-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--brand);
  color: #fff;
  padding: 4px 9px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.video-cover .live-tag::before {
  content: "";
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 99px;
  animation: blink 1.4s infinite;
}
.video-cover .watching-now {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(14, 14, 17, 0.85);
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.embed {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
  transition: all 0.15s;
  text-decoration: none;
}
.embed:hover {
  border-color: var(--brand);
}
.embed .thumb {
  background: var(--cream) center/cover no-repeat;
}
.embed .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.embed .body {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}
.embed .src {
  font-size: 10.5px;
  color: var(--text-3);
  font-family: var(--mono);
}
.embed h4 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.embed .read {
  font-size: 11.5px;
  color: var(--text-2);
  margin-top: 4px;
}
.post-poll {
  margin-bottom: 14px;
}
.post-poll .q {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  margin-bottom: 12px;
}
.post-poll .opt {
  position: relative;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--tag-bg);
  margin-bottom: 8px;
  cursor: pointer;
  overflow: hidden;
}
.post-poll .opt .fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: rgba(193, 39, 45, 0.22);
  border-radius: 8px;
  transition: width 0.8s ease;
}
.post-poll .opt .row {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 500;
}
.post-poll .opt .pct {
  font-family: var(--mono);
  color: var(--brand);
  font-weight: 600;
}
.post-poll .meta {
  font-size: 11.5px;
  color: var(--text-3);
  font-family: var(--mono);
  margin-top: 6px;
}
.quote-card {
  background: var(--cream);
  border-left: 3px solid var(--brand);
  border-radius: 0 12px 12px 0;
  padding: 18px 22px;
  margin-bottom: 14px;
}
.quote-card .q {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.quote-card .src {
  font-size: 12px;
  color: var(--text-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.quote-card .src b {
  color: var(--ink);
  font-weight: 600;
}
.quote-card .src .sep {
  width: 3px;
  height: 3px;
  background: var(--text-3);
  border-radius: 99px;
}
.markets-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  background: var(--cream);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 14px;
}
.markets-strip .m-cell {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.markets-strip .m-cell .lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-3);
  text-transform: uppercase;
}
.markets-strip .m-cell .val {
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}
.markets-strip .m-cell .chg {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 600;
  margin-top: 1px;
}
.markets-strip .m-cell .chg.up {
  color: #047857;
}
.markets-strip .m-cell .chg.down {
  color: var(--brand);
}
.post-actions {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  gap: 4px;
}
.post-act {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 99px;
  font-size: 12.5px;
  color: var(--text-2);
  font-weight: 500;
  transition: all 0.15s;
  background: none;
  border: none;
  cursor: pointer;
}
.post-act svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.post-act:hover {
  color: var(--brand);
  background: var(--tag-bg);
}
.post-act.on {
  color: var(--brand);
  font-weight: 700;
}
.post-act.on svg {
  fill: currentColor;
  stroke: currentColor;
}
.post-act.spacer {
  flex: 1;
  cursor: default;
}
.post.breaking {
  border-color: var(--brand);
  border-width: 1px;
  box-shadow:
    0 0 0 1px rgba(193, 39, 45, 0.16),
    0 12px 28px rgba(193, 39, 45, 0.1);
  background: linear-gradient(180deg, #fffafa 0%, var(--paper) 60%);
}
.post.breaking .post-head {
  grid-template-columns: 42px 1fr auto;
  grid-template-rows: auto auto;
}
.breaking-label {
  grid-column: 1 / -1;
  background: var(--brand);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.4px;
  padding: 4px 9px;
  border-radius: 4px;
  justify-self: start;
  margin-bottom: 6px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.post.pinned {
  background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 70%);
}
.post.pinned .pin-tag {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
}
.post.pinned .pin-tag svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.load-more {
  display: block;
  margin: 14px auto 0;
  padding: 12px 22px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-2);
  transition: all 0.15s;
  cursor: pointer;
}
.load-more:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.new-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 10px;
  background: var(--brand);
  color: #fff;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
  box-shadow: 0 6px 18px rgba(193, 39, 45, 0.25);
  transition: background 0.15s;
  cursor: pointer;
  border: none;
}
.new-pill:hover {
  background: var(--accent);
}
.new-pill svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: bounce 1.6s infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}
.feeds-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 96px;
}
.feeds-right .rail-card {
  padding: 20px;
}
.tr-list {
  display: flex;
  flex-direction: column;
}
.tr-item {
  padding: 12px 0;
  border-top: 1px solid var(--border);
  display: block;
  text-decoration: none;
}
.tr-item:first-child {
  border-top: 0;
  padding-top: 2px;
}
.tr-item .cat {
  font-size: 10.5px;
  color: var(--text-3);
  font-family: var(--mono);
}
.tr-item .name {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 2px;
}
.tr-item .stat {
  font-size: 11px;
  color: var(--text-3);
  font-family: var(--mono);
  margin-top: 2px;
}
.tr-item:hover .name {
  color: var(--brand);
}
.sugg-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sugg-row {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 10px;
  align-items: center;
}
.sugg-row .av {
  width: 38px;
  height: 38px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--brand), #7d1418);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.sugg-row .info {
  min-width: 0;
}
.sugg-row .name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
}
.sugg-row .name .vrfd {
  width: 12px;
  height: 12px;
  color: var(--brand);
}
.sugg-row .handle {
  font-size: 11.5px;
  color: var(--text-3);
  font-family: var(--mono);
  margin-top: 1px;
}
.sugg-row .follow {
  padding: 5px 12px;
  border-radius: 99px;
  background: var(--brand);
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
  transition: background 0.15s;
  border: none;
  cursor: pointer;
}
.sugg-row .follow:hover {
  background: var(--accent);
}
.sugg-row .follow.on {
  background: var(--paper);
  color: var(--brand);
  border: 1px solid var(--brand);
}
.sponsored {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.sponsored img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.sponsored .body {
  padding: 14px 16px;
}
.sponsored .lbl {
  font-size: 9.5px;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.sponsored h5 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  margin: 0 0 4px;
  line-height: 1.3;
}
.sponsored p {
  font-size: 12px;
  color: var(--text-2);
  margin: 0;
  line-height: 1.45;
}
@media (max-width: 1100px) {
  .feeds-grid {
    grid-template-columns: 1fr;
  }
  .feeds-rail,
  .feeds-right {
    position: static;
  }
}

/* ===== SEARCH PAGE ===== */
.search-hero {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  padding: 36px 0 22px;
}
.search-hero .crumb {
  font-size: 12.5px;
  color: var(--text-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.search-hero .crumb .sep {
  color: var(--text-3);
}
.search-bigbox {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg);
  border: 2px solid var(--brand);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 8px 24px rgba(193, 39, 45, 0.1);
}
.search-bigbox svg {
  width: 22px;
  height: 22px;
  color: var(--brand);
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.search-bigbox input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: none;
  font-family: var(--italic);
  font-style: italic;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.search-bigbox input::placeholder {
  color: var(--text-3);
}
.search-bigbox .clear {
  width: 32px;
  height: 32px;
  border-radius: 99px;
  background: var(--paper);
  border: 1px solid var(--border);
  color: var(--text-2);
  display: grid;
  place-items: center;
  transition: all 0.15s;
  cursor: pointer;
}
.search-bigbox .clear:hover {
  color: var(--brand);
  border-color: var(--brand);
}
.search-bigbox .clear svg {
  width: 14px;
  height: 14px;
}
.search-bigbox kbd {
  background: var(--paper);
  color: var(--text-2);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 5px;
  border: 1px solid var(--border);
}
.summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 16px;
  flex-wrap: wrap;
  gap: 12px;
}
.summary .count {
  font-size: 14px;
  color: var(--text-2);
}
.summary .count b {
  color: var(--ink);
  font-weight: 600;
}
.summary .count .q {
  color: var(--brand);
  font-weight: 600;
  font-style: italic;
}
.summary .time {
  font-size: 12px;
  color: var(--text-3);
  font-family: var(--mono);
}
.search-tabs {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 72px;
  z-index: 70;
}
.search-tabs-row {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.search-tabs-row::-webkit-scrollbar {
  display: none;
}
.search-tab {
  padding: 14px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-2);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  cursor: pointer;
}
.search-tab:hover {
  color: var(--brand);
}
.search-tab.active {
  color: var(--brand);
  border-bottom-color: var(--brand);
  font-weight: 600;
}
.search-tab .num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
}
.search-tab.active .num {
  color: var(--brand);
}
.search-tab svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.search-shell {
  padding: 28px 0 56px;
}
.search-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
}
.filters-rail {
  position: sticky;
  top: 132px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.filter-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
}
.filter-card .ttl {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.filter-card .clear-x {
  font-size: 11px;
  color: var(--text-3);
  float: right;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  background: none;
  border: none;
  cursor: pointer;
}
.filter-card .clear-x:hover {
  color: var(--brand);
}
.f-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  font-size: 13.5px;
  color: var(--ink);
  cursor: pointer;
}
.f-opt input {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  background: var(--paper);
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.15s;
}
.f-opt input[type="radio"] {
  border-radius: 99px;
}
.f-opt input:checked {
  background: var(--brand);
  border-color: var(--brand);
}
.f-opt input[type="checkbox"]:checked::after {
  content: "";
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}
.f-opt input[type="radio"]:checked::after {
  content: "";
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 99px;
}
.f-opt .ct {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
}
.f-opt:hover {
  color: var(--brand);
}
.f-divider {
  height: 1px;
  background: var(--border);
  margin: 10px 0 12px;
}
.date-range {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.date-input {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--ink);
  outline: none;
  width: 100%;
}
.date-input:focus {
  border-color: var(--brand);
  background: #fff;
}
.date-label {
  font-size: 11px;
  color: var(--text-3);
  font-weight: 500;
  letter-spacing: 0.3px;
}
.sort-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 16px;
}
.sort-bar .left {
  font-size: 12.5px;
  color: var(--text-2);
  font-family: var(--mono);
}
.sort-bar .left b {
  color: var(--ink);
  font-weight: 600;
  font-family: var(--sans);
}
.sort-bar .right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sort-bar select {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 10px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
}
.sort-bar .view-tg {
  display: inline-flex;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2px;
}
.sort-bar .view-tg button {
  width: 28px;
  height: 24px;
  border-radius: 5px;
  color: var(--text-3);
  display: grid;
  place-items: center;
  background: none;
  border: none;
  cursor: pointer;
}
.sort-bar .view-tg button.on {
  background: var(--brand);
  color: #fff;
}
.sort-bar .view-tg svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.result {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.15s;
  text-decoration: none;
}
.result:hover h3 {
  color: var(--brand);
}
.result .thumb {
  width: 220px;
  aspect-ratio: 16/10;
  border-radius: 10px;
  overflow: hidden;
  background: var(--cream) center/cover no-repeat;
  position: relative;
}
.result .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.result:hover .thumb img {
  transform: scale(1.04);
}
.result .thumb .live-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--brand);
  color: #fff;
  padding: 3px 7px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.result .thumb .live-tag::before {
  content: "";
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 99px;
  animation: blink 1.4s infinite;
}
.result .thumb .dur {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: var(--mono);
}
.result .body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.result .cat-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--brand);
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.result .cat-row .sep {
  width: 3px;
  height: 3px;
  background: var(--text-3);
  border-radius: 99px;
}
.result .cat-row .src {
  color: var(--text-2);
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: none;
  font-family: var(--mono);
  font-size: 11px;
}
.result h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.25;
  color: var(--ink);
  margin: 2px 0 0;
  letter-spacing: -0.01em;
  transition: color 0.15s;
}
.result h3 mark {
  background: transparent;
  color: var(--brand);
  padding: 0;
}
.result .excerpt {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
  margin: 4px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.result .excerpt mark {
  background: rgba(193, 39, 45, 0.15);
  color: var(--ink);
  padding: 1px 4px;
  border-radius: 3px;
  font-weight: 500;
}
.result .meta {
  margin-top: auto;
  padding-top: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-3);
  font-family: var(--mono);
}
.result .meta .who {
  color: var(--ink);
  font-weight: 500;
  font-family: var(--sans);
}
.result .meta .stat {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.result .meta svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.result .meta .save {
  margin-left: auto;
  width: 30px;
  height: 30px;
  border-radius: 99px;
  display: grid;
  place-items: center;
  color: var(--text-3);
  border: 1px solid var(--border);
  transition: all 0.15s;
  background: none;
  cursor: pointer;
}
.result .meta .save:hover {
  color: var(--brand);
  border-color: var(--brand);
  background: var(--tag-bg);
}
.search-pagination {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.search-pagination button {
  width: 38px;
  height: 38px;
  border-radius: 99px;
  background: var(--paper);
  border: 1px solid var(--border);
  display: inline-grid;
  place-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: all 0.15s;
  cursor: pointer;
}
.search-pagination .nav-arr {
  width: auto;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.search-pagination .active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(193, 39, 45, 0.28);
}
.search-pagination .gap {
  border: 0;
  background: transparent;
  color: var(--text-3);
  cursor: default;
}
.search-pagination button:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.search-pagination .active:hover {
  color: #fff;
}
.search-pagination button:disabled {
  opacity: 0.4;
  cursor: default;
}
.search-right {
  position: sticky;
  top: 132px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.r-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
}
.r-card .h {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.related-list {
  display: flex;
  flex-direction: column;
}
.related-row {
  padding: 10px 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  color: var(--ink);
  text-decoration: none;
}
.related-row:first-child {
  border-top: 0;
  padding-top: 2px;
}
.related-row:hover {
  color: var(--brand);
}
.related-row .ct {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--text-3);
}
.recent-list {
  display: flex;
  flex-direction: column;
}
.recent-row {
  padding: 8px 0;
  font-size: 13.5px;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.recent-row svg {
  width: 13px;
  height: 13px;
  color: var(--text-3);
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}
.recent-row:hover {
  color: var(--brand);
}
.recent-row:hover svg {
  color: var(--brand);
}
.recent-row .x {
  margin-left: auto;
  color: var(--text-3);
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.15s;
  cursor: pointer;
}
.recent-row:hover .x {
  opacity: 1;
}
.recent-row .x:hover {
  color: var(--brand);
}
.people-row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid var(--border);
}
.people-row:first-of-type {
  border-top: 0;
  padding-top: 2px;
}
.people-row .av {
  width: 36px;
  height: 36px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--brand), #7d1418);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.people-row .info {
  min-width: 0;
}
.people-row .name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.people-row .role {
  font-size: 11px;
  color: var(--text-3);
  font-family: var(--mono);
}
.people-row .follow {
  padding: 4px 12px;
  border-radius: 99px;
  background: var(--brand);
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.people-row .follow:hover {
  background: var(--accent);
}
.people-row .follow.on {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-2);
}
@media (max-width: 1100px) {
  .search-grid {
    grid-template-columns: 1fr;
  }
  .filters-rail,
  .search-right {
    position: static;
  }
}

/* ===== ARTICLE PAGE ===== */
.reading-bar {
  position: fixed;
  left: 0;
  top: 0;
  height: 3px;
  background: var(--brand);
  z-index: 100;
  transition: width 0.1s linear;
  pointer-events: none;
}
.hero-img {
  width: 100%;
  max-height: 480px;
  aspect-ratio: 21/9;
  overflow: hidden;
  background: var(--cream);
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-caption {
  max-width: 1040px;
  margin: 0 auto;
  padding: 12px 40px 0;
  font-size: 12.5px;
  color: var(--text-2);
  font-style: italic;
}
.hero-caption b {
  font-style: normal;
  font-weight: 500;
  color: var(--ink);
}
.article-shell {
  max-width: 1080px;
  margin: 0 auto;
  padding: 32px 40px 64px;
  display: grid;
  grid-template-columns: minmax(0, 760px) 240px;
  gap: 40px;
  position: relative;
}
.share-rail {
  position: fixed;
  left: max(24px, calc((100vw - 1080px) / 2 + 4px));
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  z-index: 10;
}
@media (max-width: 1140px) {
  .share-rail {
    display: none;
  }
}
.share-rail .label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--text-3);
  text-align: center;
  margin-bottom: 12px;
}
.share-rail .stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.share-btn {
  width: 38px;
  height: 38px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 99px;
  display: grid;
  place-items: center;
  color: var(--text-2);
  transition: all 0.15s;
}
.share-btn:hover {
  background: var(--tag-bg);
  color: var(--brand);
  border-color: var(--tag-bg);
}
.share-btn svg {
  width: 16px;
  height: 16px;
}
.article-col {
  min-width: 0;
}
.crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-2);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.crumbs a:hover {
  color: var(--brand);
}
.crumbs .sep {
  color: var(--text-3);
}
.crumbs .cat-chip {
  margin-left: 8px;
  background: var(--brand);
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.article-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--tag-bg);
  color: var(--brand);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.article-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--brand);
  animation: blink 1.6s infinite;
}
h1.article-h {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 46px;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 22px;
}
.standfirst {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 18.5px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0 0 28px;
  max-width: 96%;
}
.meta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 30px;
}
.meta-row .av {
  width: 36px;
  height: 36px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--brand), #7d1418);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  display: grid;
  place-items: center;
}
.meta-row .who {
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 500;
}
.meta-row .who a {
  color: var(--brand);
}
.meta-row .who a:hover {
  color: var(--accent);
}
.meta-row .sub {
  font-size: 12.5px;
  color: var(--text-2);
  font-family: var(--mono);
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.meta-row .sub .dot {
  width: 3px;
  height: 3px;
  background: var(--text-3);
  border-radius: 99px;
}
.meta-row .sub .stat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.meta-row .grow {
  flex: 1;
}
.meta-row .actions {
  display: flex;
  gap: 6px;
}
.icn-btn {
  width: 36px;
  height: 36px;
  border-radius: 99px;
  background: var(--paper);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--text-2);
  cursor: pointer;
  transition: all 0.15s;
}
.icn-btn:hover {
  color: var(--brand);
  border-color: var(--brand);
  background: var(--tag-bg);
}
.icn {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icn-sm {
  width: 13px;
  height: 13px;
}
.article-body p {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.85;
  color: var(--ink);
  margin: 0 0 1.5em;
}
.article-body p.lede::first-letter {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  color: var(--brand);
  font-size: 72px;
  line-height: 0.82;
  float: left;
  padding: 6px 10px 0 0;
  margin-top: 6px;
}
.article-body strong {
  font-weight: 500;
  color: var(--ink);
}
.article-body a {
  color: var(--brand);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.article-body a:hover {
  color: var(--accent);
}
.article-body h2 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 23px;
  color: var(--ink);
  margin: 2.4em 0 0.7em;
  letter-spacing: -0.01em;
}
.article-body h2 .num {
  color: var(--brand);
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  margin-right: 8px;
}
.pullquote {
  border-left: 4px solid var(--brand);
  padding: 4px 0 4px 28px;
  margin: 32px 0;
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.32;
  color: var(--brand);
}
.pullquote-by {
  margin-top: 12px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 12.5px;
  color: var(--text-2);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-weight: 500;
}
blockquote.callout {
  background: var(--tag-bg);
  border-left: 3px solid var(--brand);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin: 28px 0;
  font-family: var(--sans);
  font-style: italic;
  font-size: 16px;
  line-height: 1.55;
  color: var(--brand);
}
blockquote.callout b {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 600;
  display: block;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--brand);
}
figure.inline-img {
  margin: 32px 0;
}
figure.inline-img img {
  width: 100%;
  border-radius: 10px;
  background: var(--cream);
}
figure.inline-img figcaption {
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--text-2);
  font-style: italic;
}
figure.inline-img figcaption b {
  font-style: normal;
  color: var(--ink);
  font-weight: 500;
}
.factbox {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 24px;
  margin: 32px 0;
}
.factbox .head {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.factbox .head::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--brand);
}
.factbox ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.factbox li {
  font-size: 14.5px;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
  color: var(--ink);
}
.factbox li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--brand);
}
.factbox li b {
  color: var(--ink);
  font-weight: 500;
}
.tags-row {
  margin: 40px 0 32px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.tags-row .lbl {
  font-size: 13px;
  color: var(--text-2);
  margin-right: 6px;
  font-weight: 500;
}
.tag-pill {
  background: var(--tag-bg);
  color: var(--brand);
  font-size: 12.5px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: all 0.15s;
}
.tag-pill:hover {
  background: var(--brand);
  color: #fff;
}
.author-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 22px;
  align-items: center;
  margin-bottom: 32px;
}
.author-av {
  width: 80px;
  height: 80px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--brand), #7d1418);
  border: 4px solid var(--tag-bg);
  color: #fff;
  font-weight: 700;
  font-size: 26px;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 16px rgba(193, 39, 45, 0.22);
}
.author-info .name {
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 2px;
}
.author-info .role {
  font-size: 12.5px;
  color: var(--text-2);
  letter-spacing: 0.3px;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-weight: 500;
}
.author-info p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-2);
  max-width: 480px;
}
.author-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  align-self: end;
}
.author-link:hover {
  color: var(--accent);
  gap: 8px;
}
.poll {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 32px;
}
.poll .ttl {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.poll .ttl::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--brand);
}
.poll h3 {
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  margin: 0 0 18px;
  line-height: 1.35;
}
.poll-opt {
  position: relative;
  padding: 12px 16px;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 10px;
  background: var(--tag-bg);
  overflow: hidden;
  user-select: none;
}
.poll-opt .fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: rgba(193, 39, 45, 0.22);
  border-radius: 8px;
  transition: width 0.8s ease;
}
.poll-opt .row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}
.poll-opt .row .pct {
  font-family: var(--mono);
  font-weight: 600;
  color: var(--brand);
  font-size: 13px;
}
.poll-opt .row .left {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.poll-opt .radio {
  width: 16px;
  height: 16px;
  border-radius: 99px;
  border: 2px solid var(--brand);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.poll-opt.selected .radio::after {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 99px;
}
.poll-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}
.poll-foot .votes {
  font-size: 12px;
  color: var(--text-2);
  font-family: var(--mono);
}
.btn-vote {
  background: var(--brand);
  color: #fff;
  padding: 9px 18px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.15s;
  cursor: pointer;
}
.btn-vote:hover {
  background: var(--accent);
}
.comments-head {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.comments-head .count {
  color: var(--brand);
}
.comment-form {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
}
.comment-form .av {
  width: 40px;
  height: 40px;
  border-radius: 99px;
  background: linear-gradient(135deg, #94a3b8, #475569);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.comment-form textarea {
  width: 100%;
  border: 0;
  outline: none;
  resize: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.6;
  min-height: 72px;
}
.comment-form textarea::placeholder {
  color: var(--text-3);
}
.comment-form .controls {
  grid-column: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 10px;
}
.comment-form .controls .hint {
  font-size: 11.5px;
  color: var(--text-2);
}
.btn-post {
  background: var(--brand);
  color: #fff;
  padding: 8px 16px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  border: none;
}
.btn-post:hover {
  background: var(--accent);
}
.comment {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}
.comment:first-of-type {
  border-top: 0;
}
.comment .av {
  width: 40px;
  height: 40px;
  border-radius: 99px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #94a3b8, #475569);
}
.comment .head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  margin-bottom: 6px;
}
.comment .head .who {
  font-weight: 600;
  color: var(--ink);
}
.comment .head .badge {
  background: var(--tag-bg);
  color: var(--brand);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.7px;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}
.comment .head .time {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-3);
}
.comment .body {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 8px;
}
.comment .actions {
  display: flex;
  gap: 16px;
  font-size: 12.5px;
  color: var(--text-2);
  align-items: center;
}
.comment .actions a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.comment .actions button.stat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  color: var(--text-2);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
}
.comment .actions a:hover,
.comment .actions button:hover {
  color: var(--brand);
}
.reply {
  margin-left: 24px;
  padding-left: 16px;
  border-left: 2px solid var(--border);
}
.related-head {
  margin-top: 56px;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.related-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
  text-decoration: none;
}
.related-card:hover {
  border-color: var(--brand);
  box-shadow:
    0 0 0 1px rgba(193, 39, 45, 0.12),
    0 10px 24px rgba(193, 39, 45, 0.1);
  transform: translateY(-2px);
}
.related-card .img {
  height: 160px;
  overflow: hidden;
  background: var(--cream);
}
.related-card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.related-card:hover .img img {
  transform: scale(1.05);
}
.related-card .body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.related-card .pill {
  align-self: flex-start;
  background: var(--brand);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 4px 9px;
  border-radius: 99px;
  text-transform: uppercase;
}
.related-card h4 {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-card .meta {
  font-size: 11.5px;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
}
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
  position: sticky;
  top: 96px;
  align-self: start;
}
/* .side-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 18px 20px;
  position: relative;
} */
.side-card.accent {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-left: 3px solid var(--brand);
}
.side-card.accent-top {
  border-top: 3px solid var(--brand);
}
.side-title {
  width: 100%;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.side-title .live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--brand);
  color: #fff;
  padding: 2px 7px;
  border-radius: 3px;
  font-size: 9.5px;
  letter-spacing: 1px;
}
.side-title .live .dot {
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 99px;
  animation: blink 1.4s infinite;
}
.most-list {
  display: flex;
  flex-direction: column;
}
.most-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  text-decoration: none;
}
.most-item:first-child {
  border-top: 0;
  padding-top: 2px;
}
.most-item .rank {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  color: var(--brand);
  line-height: 1;
  text-align: center;
}
.most-item h5 {
  margin: 0;
  font-size: 13px;
  line-height: 1.32;
  color: var(--ink);
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.most-item:hover h5 {
  color: var(--brand);
}
.most-item .views {
  font-size: 11px;
  color: var(--text-3);
  font-family: var(--mono);
  margin-top: 4px;
}
.ad-slot {
  background: var(--cream);
  border: 1px dashed #d1d5db;
  border-radius: 12px;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-3);
}
.ad-slot .lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--text-3);
}
.ad-slot .size {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
}
.ad-slot .ph-icon {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--text-3);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--text-3);
  margin-bottom: 8px;
}
.brk-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.brk-item {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 10px;
}
.brk-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--brand);
  margin-top: 6px;
}
.brk-item .text {
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink);
}
.brk-item .time {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
  margin-top: 3px;
}
.nl-card .nl-h {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.nl-card p {
  font-size: 12.5px;
  color: var(--text-2);
  line-height: 1.5;
  margin: 0 0 14px;
}
.nl-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  outline: none;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 8px;
}
.nl-input::placeholder {
  color: var(--text-3);
}
.nl-input:focus {
  border-color: var(--brand);
  background: #fff;
}
.nl-btn {
  width: 100%;
  padding: 10px 14px;
  background: var(--brand);
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.nl-btn:hover {
  background: var(--accent);
}
.nl-card .note {
  font-size: 10.5px;
  color: var(--text-3);
  margin-top: 8px;
  text-align: center;
  font-family: var(--mono);
}
@media (max-width: 900px) {
  .article-shell {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .sidebar {
    position: static;
  }
  h1.article-h {
    font-size: 32px;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
  .author-card {
    grid-template-columns: 60px 1fr;
  }
  .author-link {
    display: none;
  }
}

/* ───────── Auth split layout ───────── */
.auth-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
.auth-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      700px 400px at 80% 20%,
      rgba(193, 39, 45, 0.06),
      transparent 70%
    ),
    radial-gradient(
      500px 300px at 0% 90%,
      rgba(237, 32, 39, 0.04),
      transparent 70%
    );
  pointer-events: none;
}

/* ── Editorial art panel ── */
.auth-art {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #1a1a1a;
}
.auth-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.78);
}
.auth-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 14, 17, 0.2) 0%,
    rgba(14, 14, 17, 0.55) 55%,
    rgba(14, 14, 17, 0.96) 100%
  );
}
.auth-art .art-inner {
  position: absolute;
  inset: 0;
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
  color: #fff;
}
.auth-art .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.auth-art .badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--brand);
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.4px;
}
.auth-art .badge-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: #fff;
  animation: auth-blink 1.4s infinite;
}
@keyframes auth-blink {
  50% {
    opacity: 0.35;
  }
}
.auth-art .credit {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--mono);
}
.auth-art .kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.auth-art .kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--accent);
}
.auth-art .quote {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.14;
  letter-spacing: -0.01em;
  max-width: 540px;
  margin: 0 0 22px;
}
.auth-art .byline {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
}
.auth-art .byline b {
  color: #fff;
  font-weight: 600;
}
.auth-art .byline .av {
  width: 40px;
  height: 40px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--brand), #7d1418);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  border: 2px solid rgba(255, 255, 255, 0.18);
}
.auth-art .byline .meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.auth-art .byline .role {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--mono);
}
.auth-art .stats {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.auth-art .stats .stat .n {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.auth-art .stats .stat .l {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.8px;
  margin-top: 4px;
  font-weight: 600;
  text-transform: uppercase;
}

/* ── Form panel ── */
.auth-form-side {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 56px 40px;
  background: var(--bg);
  position: relative;
  z-index: 1;
  height: 100vh;
  overflow-y: auto;
}
.auth-form-side::-webkit-scrollbar {
  width: 8px;
}
.auth-form-side::-webkit-scrollbar-track {
  background: transparent;
}
.auth-form-side::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 8px;
}
.auth-mini-logo {
  display: inline-flex;
  align-items: baseline;
  line-height: 0.85;
  margin-bottom: 40px;
  text-decoration: none;
}
.auth-mini-logo .dt {
  font-family: var(--italic);
  font-style: italic;
  font-size: 38px;
  color: var(--brand);
  letter-spacing: -0.04em;
}
.auth-mini-logo .news {
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.04em;
  margin-left: 2px;
}
.auth-mini-logo .dot {
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 99px;
  align-self: center;
  margin-left: 6px;
}
.auth-form {
  width: 100%;
  max-width: 460px;
}
.auth-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.auth-eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--brand);
}
.auth-h1 {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 52px;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 14px;
}
.auth-h1 em {
  font-style: italic;
  color: var(--brand);
}
.auth-sub {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0 0 32px;
}
.auth-sub a {
  color: var(--brand);
  font-weight: 600;
}

/* Social row */
.auth-social-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.auth-social-btn {
  background: var(--paper);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.15s;
  cursor: pointer;
  font-family: inherit;
}
.auth-social-btn:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--tag-bg);
}
.auth-social-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Divider */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 26px 0 20px;
}
.auth-divider .ln {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.auth-divider span {
  font-size: 11.5px;
  color: var(--text-3);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
}

/* Field */
.auth-field {
  margin-bottom: 16px;
}
.auth-field-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 6px;
}
.auth-field-label .req {
  color: var(--brand);
  margin-left: 2px;
}
.auth-field-wrap {
  position: relative;
}
.auth-field-wrap input {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 14px 13px 42px;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition:
    border 0.15s,
    box-shadow 0.15s;
  font-family: inherit;
}
.auth-field-wrap input::placeholder {
  color: var(--text-3);
}
.auth-field-wrap input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(193, 39, 45, 0.1);
}
.auth-field-ico {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-3);
  pointer-events: none;
}
.auth-field-ico svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.auth-field-eye {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-3);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  line-height: 0;
  transition: color 0.15s;
}
.auth-field-eye:hover {
  color: var(--brand);
}
.auth-no-pad-right input {
  padding-right: 40px;
}

/* Row split */
.auth-row-split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 8px 0 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.auth-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-2);
  cursor: pointer;
}
.auth-check-box {
  flex-shrink: 0;
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: var(--paper);
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  transition: all 0.15s;
}
.auth-check-box:checked {
  background: var(--brand);
  border-color: var(--brand);
}
.auth-check-box:checked::after {
  content: "";
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}
.auth-link-r {
  font-size: 13px;
  color: var(--brand);
  font-weight: 600;
}
.auth-link-r:hover {
  color: var(--accent);
}

/* Primary button */
.auth-btn-primary {
  width: 100%;
  background: var(--brand);
  color: #fff;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(193, 39, 45, 0.28);
  transition: all 0.15s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.auth-btn-primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(193, 39, 45, 0.34);
}
.auth-btn-primary svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Footer + trust */
.auth-foot-link {
  text-align: center;
  font-size: 13.5px;
  color: var(--text-2);
  margin-top: 28px;
}
.auth-foot-link a {
  color: var(--brand);
  font-weight: 600;
}
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  font-size: 11.5px;
  color: var(--text-3);
  font-family: var(--mono);
}
.trust-strip .item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.trust-strip .item svg {
  width: 13px;
  height: 13px;
  color: var(--brand);
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.trust-strip .item b {
  color: var(--ink);
  font-weight: 500;
  font-family: var(--sans);
}
.auth-policy {
  font-size: 11.5px;
  color: var(--text-3);
  line-height: 1.6;
  text-align: center;
  margin-top: 22px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.auth-policy a {
  color: var(--text-2);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.auth-policy a:hover {
  color: var(--brand);
}

@media (max-width: 1000px) {
  .auth-shell {
    grid-template-columns: 1fr;
    overflow: visible;
    min-height: auto;
  }
  .auth-art {
    position: relative;
    height: auto;
    min-height: 280px;
  }
  .auth-art .quote {
    font-size: 28px;
  }
  .auth-form-side {
    height: auto;
    overflow-y: visible;
    padding: 40px 24px;
  }
  .auth-h1 {
    font-size: 38px;
  }
  .fgrid {
    grid-template-columns: 1fr;
  }
}

/* ── Signup-specific ─────────────────────────────────── */
.auth-step-meta {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--text-3);
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}
.auth-steps {
  display: flex;
  gap: 6px;
  margin-bottom: 32px;
}
.auth-steps .step {
  flex: 1;
  height: 3px;
  background: var(--border);
  border-radius: 99px;
  transition: background 0.3s;
}
.auth-steps .step.active {
  background: var(--brand);
}

.fgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.phone-row {
  display: flex;
}
.phone-row select {
  width: 88px;
  flex-shrink: 0;
  background: var(--paper);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: 10px 0 0 10px;
  padding: 13px 8px 13px 12px;
  font-size: 13.5px;
  color: var(--ink);
  outline: none;
  font-family: inherit;
  cursor: pointer;
  transition: border 0.15s;
}
.phone-row select:focus {
  border-color: var(--brand);
}
.phone-row .auth-field-wrap {
  flex: 1;
}
.phone-row .auth-field-wrap input {
  border-radius: 0 10px 10px 0;
  padding-left: 14px;
}

.auth-strength {
  display: flex;
  gap: 4px;
  margin-top: 8px;
}
.auth-strength .sbar {
  flex: 1;
  height: 3px;
  background: var(--border);
  border-radius: 99px;
  transition: background 0.25s;
}
.auth-strength .sbar.s1 {
  background: #ef4444;
}
.auth-strength .sbar.s2 {
  background: #f97316;
}
.auth-strength .sbar.s3 {
  background: #eab308;
}
.auth-strength .sbar.s4 {
  background: #22c55e;
}

.auth-req-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 12px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}
.auth-req-list li {
  font-size: 11.5px;
  color: var(--text-3);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.auth-req-list li::before {
  content: "·";
  font-size: 14px;
  line-height: 1;
}
.auth-req-list li.ok {
  color: #22c55e;
}
.auth-req-list li.ok::before {
  content: "✓";
}

.auth-interests-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.auth-interests-header .label {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-2);
}
.auth-interests-header .sub {
  font-size: 11px;
  color: var(--text-3);
}

.interest-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.interest-chip {
  padding: 6px 13px;
  border-radius: 99px;
  background: var(--paper);
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-2);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.interest-chip:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--tag-bg);
}
.interest-chip.active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.interest-chip.active::before {
  content: "✓";
  font-size: 10px;
}

.auth-newsletter {
  margin-bottom: 20px;
}
.auth-newsletter-title {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 10px;
}
.auth-newsletter .auth-check {
  margin-bottom: 8px;
}

/* ══════════════════════════════════════════════════════
   Contact page
══════════════════════════════════════════════════════ */

/* ── Hero ── */
.contact-hero {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  padding: 56px 0 48px;
}
.contact-hero-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: end;
}
.contact-crumb {
  font-size: 12.5px;
  color: var(--text-2);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-crumb a {
  color: var(--text-2);
  transition: color 0.15s;
}
.contact-crumb a:hover {
  color: var(--brand);
}
.contact-crumb .sep {
  color: var(--text-3);
}
.contact-hero h1 {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 16px;
}
.contact-hero p {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0;
  max-width: 92%;
}
.contact-hero .pillrow {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.contact-hero .pillrow .pill {
  background: var(--tag-bg);
  color: var(--brand);
  font-size: 11.5px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 99px;
}
.contact-stat-block {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-stat-block .item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.contact-stat-block .item .lbl {
  font-size: 11.5px;
  color: var(--text-2);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-weight: 500;
}
.contact-stat-block .item .v {
  font-family: var(--mono);
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
}
.contact-stat-block .item .v.red {
  color: var(--brand);
}

/* ── Shell / grid ── */
.contact-shell {
  padding: 48px 0 64px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}

/* ── Form card ── */
.contact-form-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.contact-form-card h2 {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.contact-form-card .sub {
  font-size: 14px;
  color: var(--text-2);
  margin: 0 0 24px;
  line-height: 1.5;
}

/* ── Field system (contact form) ── */
.cf-field {
  margin-bottom: 16px;
}
.cf-field label {
  display: block;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 6px;
}
.cf-field label .req {
  color: var(--brand);
  margin-left: 2px;
}
.cf-input {
  position: relative;
}
.cf-input input,
.cf-input textarea,
.cf-input select {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition:
    border 0.15s,
    box-shadow 0.15s;
  font-family: inherit;
  resize: vertical;
}
.cf-input input::placeholder,
.cf-input textarea::placeholder {
  color: var(--text-3);
}
.cf-input input:focus,
.cf-input textarea:focus,
.cf-input select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(193, 39, 45, 0.1);
}
.cf-hint {
  font-size: 11.5px;
  color: var(--text-3);
  margin-top: 6px;
  line-height: 1.5;
}
.cf-hint a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Row split + check (contact) ── */
.cf-row-split {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.cf-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-2);
  cursor: pointer;
  line-height: 1.5;
}
.cf-check > input {
  flex-shrink: 0;
  margin-top: 1px;
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: var(--paper);
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  transition: all 0.15s;
}
.cf-check > input:checked {
  background: var(--brand);
  border-color: var(--brand);
}
.cf-check > input:checked::after {
  content: "";
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}
.cf-check a {
  color: var(--brand);
}

/* ── Primary button (contact) ── */
.btn-primary {
  width: 100%;
  background: var(--brand);
  color: #fff;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(193, 39, 45, 0.28);
  transition: all 0.15s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(193, 39, 45, 0.34);
}
.btn-primary svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-policy {
  font-size: 11.5px;
  color: var(--text-3);
  line-height: 1.6;
  text-align: center;
  margin-top: 18px;
}
.contact-policy a {
  color: var(--text-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-policy a:hover {
  color: var(--brand);
}

/* ── Department cards ── */
.dept-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dept-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 14px;
  align-items: center;
  transition: all 0.15s;
}
.dept-card:hover {
  border-color: var(--brand);
  box-shadow: 0 6px 22px rgba(193, 39, 45, 0.08);
}
.dept-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--tag-bg);
  color: var(--brand);
  display: grid;
  place-items: center;
}
.dept-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.dept-info .ttl {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.dept-info .desc {
  font-size: 12.5px;
  color: var(--text-2);
  margin-top: 2px;
}
.dept-info .v {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--brand);
  margin-top: 4px;
}
.dept-arr {
  color: var(--text-3);
  font-size: 18px;
  transition: all 0.15s;
}
.dept-card:hover .dept-arr {
  color: var(--brand);
  transform: translateX(2px);
}

/* ── Bureau card ── */
.bureau-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  margin-top: 20px;
}
.bureau-card .ttl {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bureau-card .ttl::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--brand);
}
.bureau-card h3 {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  color: var(--ink);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.bureau-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.bureau-item {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}
.bureau-item b {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-size: 13.5px;
  margin-bottom: 2px;
}
.bureau-item .addr {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--text-3);
  display: block;
  margin-top: 4px;
}

/* ── Map band ── */
.map-band {
  background: var(--paper);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.map-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: center;
}
.map-text h2 {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 42px;
  color: var(--ink);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.map-text p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0 0 20px;
}
.map-addr-block {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
}
.map-addr-block .lbl {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.map-addr-block .line {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
}
.map-addr-block .mono {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--text-2);
  margin-top: 6px;
}
.map-viz {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.map-viz img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2);
}
.map-pin {
  position: absolute;
  left: 56%;
  top: 60%;
}
.map-pin .pin-dot {
  width: 16px;
  height: 16px;
  border-radius: 99px;
  background: var(--brand);
  border: 3px solid #fff;
  box-shadow: 0 0 0 6px rgba(193, 39, 45, 0.25);
  position: relative;
}
.map-pin .pin-dot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 99px;
  border: 2px solid var(--brand);
  opacity: 0.4;
  animation: pinPulse 2s infinite;
}
@keyframes pinPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}
.map-pin .pin-label {
  background: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
}
.map-pin .pin-label b {
  color: var(--brand);
  font-weight: 700;
}

/* ── FAQ ── */
.faq-section {
  padding: 56px 0;
}
.faq-section .faq-hd {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 36px;
  color: var(--ink);
  margin: 0 0 28px;
  letter-spacing: -0.01em;
}
.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.faq-item {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  transition: border-color 0.15s;
  cursor: pointer;
}
.faq-item:hover {
  border-color: var(--brand);
}
.faq-item.open {
  border-color: var(--brand);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  user-select: none;
}
.faq-plus {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 99px;
  background: var(--tag-bg);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 16px;
  transition:
    transform 0.2s,
    background 0.15s;
  line-height: 1;
}
.faq-item.open .faq-plus {
  background: var(--brand);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.55;
  margin-top: 8px;
}

/* ── Contact responsive ── */
@media (max-width: 1000px) {
  .contact-hero-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-hero h1 {
    font-size: 48px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .map-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq-list {
    grid-template-columns: 1fr;
  }
  .bureau-list {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════
   DTNews About page
   ══════════════════════════════════════════ */

/* ── Hero ── */
.about-hero {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: "ABOUT";
  position: absolute;
  font-family: var(--italic);
  font-style: italic;
  font-size: 380px;
  line-height: 0.8;
  color: rgba(193, 39, 45, 0.04);
  right: -40px;
  top: -60px;
  letter-spacing: -0.05em;
  pointer-events: none;
}
.about-hero .crumb {
  font-size: 12.5px;
  color: var(--text-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.about-hero .crumb .sep {
  color: var(--text-3);
}
.about-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 56px;
  align-items: end;
}
.about-hero h1 {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 80px;
  line-height: 0.94;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 18px;
  text-wrap: pretty;
}
.about-hero h1 .red {
  color: var(--brand);
}
.about-hero .lede {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0 0 22px;
  max-width: 620px;
  text-wrap: pretty;
}
.about-hero .meta-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.about-hero .meta-row .stat .n {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 36px;
  color: var(--brand);
  letter-spacing: -0.01em;
  line-height: 1;
}
.about-hero .meta-row .stat .l {
  font-size: 11px;
  color: var(--text-2);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 600;
}
.about-hero-img {
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--border);
  position: relative;
}
.about-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-hero-img .credit {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(14, 14, 17, 0.7);
  backdrop-filter: blur(8px);
  color: #fff;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.4px;
  padding: 5px 10px;
  border-radius: 4px;
}

/* ── Section heading ── */
.about-sec {
  padding: 56px 0 8px;
}
.about-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 32px;
}
.about-head .left {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.about-head h2 {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 44px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: pretty;
}
.about-head .kicker {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.about-head .kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--brand);
}
.about-head .kicker.kicker-accent {
  color: var(--accent);
}
.about-head .kicker.kicker-accent::before {
  background: var(--accent);
}
.about-head .right p {
  max-width: 380px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0;
  text-wrap: pretty;
}
.about-link {
  color: var(--brand);
  font-weight: 600;
}
.about-link:hover {
  text-decoration: underline;
}

/* ── Mission split ── */
.mission-band {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}
.mission-grid .label {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.mission-grid h2 {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 56px;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
  margin: 0;
}
.mission-grid h2 em {
  font-style: italic;
  color: var(--brand);
}
.mission-grid p {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 14px;
  text-wrap: pretty;
}
.mission-grid p:last-child {
  margin-bottom: 0;
}
.mission-grid .signed {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-2);
}
.mission-grid .signed .av {
  width: 36px;
  height: 36px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--brand), #7d1418);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.mission-grid .signed b {
  color: var(--ink);
  font-weight: 600;
}

/* ── Principles ── */
.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-bottom: 56px;
}
.principle {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.2s;
  position: relative;
}
.principle:hover {
  border-color: var(--brand);
  box-shadow: 0 12px 28px rgba(193, 39, 45, 0.1);
  transform: translateY(-2px);
}
.principle .num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
  font-weight: 600;
  letter-spacing: 0.6px;
}
.principle h3 {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.principle p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0;
}

/* ── Timeline ── */
.timeline-band {
  background: var(--paper);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}
.timeline {
  position: relative;
  padding: 14px 0 14px 32px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--brand) 0%,
    var(--brand-30, rgba(193, 39, 45, 0.3)) 100%
  );
}
.timeline .row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 14px 0;
  align-items: start;
  position: relative;
}
.timeline .row::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 22px;
  width: 12px;
  height: 12px;
  border-radius: 99px;
  background: var(--paper);
  border: 3px solid var(--brand);
  box-shadow: 0 0 0 3px var(--paper);
}
.timeline .row.live::before {
  background: var(--brand);
  animation: tl-pulse 1.6s infinite;
}
@keyframes tl-pulse {
  0% {
    box-shadow:
      0 0 0 3px var(--paper),
      0 0 0 6px rgba(193, 39, 45, 0.4);
  }
  70% {
    box-shadow:
      0 0 0 3px var(--paper),
      0 0 0 14px rgba(193, 39, 45, 0);
  }
  100% {
    box-shadow:
      0 0 0 3px var(--paper),
      0 0 0 6px rgba(193, 39, 45, 0);
  }
}
.timeline .year {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 36px;
  color: var(--brand);
  letter-spacing: -0.01em;
  line-height: 1;
}
.timeline .item h4 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.timeline .item p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0;
  max-width: 640px;
}

/* ── Newsroom by numbers ── */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-bottom: 56px;
}
.number-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.2s;
}
.number-card.dark {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.number-card.brand {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.number-card.brand::before {
  content: "DT";
  position: absolute;
  font-family: var(--italic);
  font-style: italic;
  font-size: 170px;
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.08);
  right: -16px;
  top: -28px;
  letter-spacing: -0.05em;
}
.number-card .n {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 64px;
  color: var(--brand);
  letter-spacing: -0.01em;
  line-height: 1;
}
.number-card.dark .n,
.number-card.brand .n {
  color: #fff;
}
.number-card .l {
  font-size: 13px;
  color: var(--text-2);
  letter-spacing: 0.3px;
}
.number-card.dark .l,
.number-card.brand .l {
  color: rgba(255, 255, 255, 0.75);
}
.number-card .desc {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 6px;
  line-height: 1.5;
}
.number-card.dark .desc {
  color: rgba(255, 255, 255, 0.55);
}
.number-card.brand .desc {
  color: rgba(255, 255, 255, 0.7);
}

/* ── Leadership ── */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-bottom: 56px;
}
.leader {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.2s;
}
.leader:hover {
  border-color: var(--brand);
  box-shadow: 0 12px 28px rgba(193, 39, 45, 0.1);
  transform: translateY(-2px);
}
.leader .photo {
  aspect-ratio: 4/5;
  background: var(--cream) center/cover no-repeat;
  position: relative;
}
.leader .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.leader .photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(14, 14, 17, 0.6));
}
.leader .photo .role {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 2;
  font-size: 10.5px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.leader .info {
  padding: 16px 18px 18px;
}
.leader h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.leader p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.leader .socials {
  display: flex;
  gap: 6px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.leader .socials a {
  width: 26px;
  height: 26px;
  border-radius: 99px;
  display: grid;
  place-items: center;
  color: var(--text-3);
  transition: all 0.15s;
}
.leader .socials a:hover {
  color: var(--brand);
  background: var(--tag-bg);
}
.leader .socials svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Bureaus map ── */
.bureaus-band {
  background: var(--ink);
  color: #fff;
  padding: 72px 0;
}
.bureaus-band h2 {
  color: #fff;
}
.bureaus-band .about-head .right p {
  color: rgba(255, 255, 255, 0.7);
}
.bureaus-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}
.bureaus-map {
  background: #1c1c22;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.bureaus-map img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: grayscale(1);
}
.bureaus-map .pins {
  position: absolute;
  inset: 0;
}
.bureaus-map .pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.bureaus-map .pin .dot {
  width: 14px;
  height: 14px;
  border-radius: 99px;
  background: var(--brand);
  border: 3px solid #fff;
  box-shadow: 0 0 0 5px rgba(193, 39, 45, 0.3);
}
.bureaus-map .pin .lbl {
  font-family: var(--mono);
  font-size: 10px;
  background: #fff;
  color: var(--ink);
  padding: 3px 7px;
  border-radius: 4px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.bureaus-map .pin.hq .dot {
  background: #fff;
  animation: pin-pulse-white 1.8s infinite;
}
@keyframes pin-pulse-white {
  0% {
    box-shadow:
      0 0 0 5px rgba(255, 255, 255, 0.2),
      0 0 0 0 rgba(255, 255, 255, 0.6);
  }
  70% {
    box-shadow:
      0 0 0 5px rgba(255, 255, 255, 0.2),
      0 0 0 18px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow:
      0 0 0 5px rgba(255, 255, 255, 0.2),
      0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.bureaus-map .pin.hq .lbl {
  background: var(--brand);
  color: #fff;
}
.bureaus-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.bureau-row {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}
.bureau-row:first-child {
  border-top: 0;
  padding-top: 4px;
}
.bureau-row .city {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  letter-spacing: -0.01em;
}
.bureau-row .city .hq {
  background: var(--brand);
  color: #fff;
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  margin-left: 8px;
  letter-spacing: 1px;
  vertical-align: middle;
}
.bureau-row .chief {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 3px;
}
.bureau-row .stats {
  font-family: var(--mono);
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.5);
  text-align: right;
}
.bureau-row .stats b {
  color: #fff;
  font-weight: 500;
}

/* ── Recognition ── */
.recognition {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  padding-bottom: 56px;
}
.recognition .award {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.15s;
}
.recognition .award:hover {
  border-color: var(--brand);
}
.recognition .award .icn {
  width: 32px;
  height: 32px;
  background: var(--tag-bg);
  color: var(--brand);
  border-radius: 8px;
  display: grid;
  place-items: center;
}
.recognition .award .icn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.recognition .award .yr {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
  font-weight: 600;
}
.recognition .award .nm {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.recognition .award .src {
  font-size: 11px;
  color: var(--text-2);
  margin-top: auto;
}

/* ── Trust quotes ── */
.trust-band {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.trust-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.trust-card .quote-mark {
  font-family: var(--italic);
  font-style: italic;
  font-size: 80px;
  line-height: 0.6;
  color: var(--brand);
  height: 30px;
}
.trust-card blockquote {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.45;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.005em;
}
.trust-card .src {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-card .src .av {
  width: 32px;
  height: 32px;
  border-radius: 99px;
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.trust-card .src .who {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.trust-card .src .role {
  font-size: 11px;
  color: var(--text-2);
  font-family: var(--mono);
}
.av-navy {
  background: linear-gradient(135deg, #1e3a8a, #152b69);
}
.av-emerald {
  background: linear-gradient(135deg, #047857, #065f46);
}
.av-rust {
  background: linear-gradient(135deg, #7c2d12, #5a1f08);
}

/* ── Join CTA ── */
.join-band {
  background: var(--paper);
  border-top: 1px solid var(--border);
  padding: 72px 0;
}
.join-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: end;
}
.join-kicker {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.join-kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--brand);
  display: block;
}
.join-grid h2 {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 64px;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0 0 14px;
  text-wrap: pretty;
}
.join-grid h2 em {
  font-style: italic;
  color: var(--brand);
}
.join-grid .lede {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0 0 26px;
  max-width: 540px;
}
.join-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.join-actions .btn {
  padding: 13px 22px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.15s;
}
.join-actions .btn.primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 6px 18px rgba(193, 39, 45, 0.28);
}
.join-actions .btn.primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
}
.join-actions .btn.secondary {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--border);
}
.join-actions .btn.secondary:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.join-actions .btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.join-openings {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
}
.join-openings .ttl {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.join-openings .ttl .ct {
  font-family: var(--mono);
  color: var(--text-3);
  font-weight: 500;
  letter-spacing: 0.3px;
}
.opening-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-top: 1px solid var(--border);
}
.opening-row:first-of-type {
  border-top: 0;
  padding-top: 2px;
}
.opening-row .info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.opening-row .info .nm {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}
.opening-row .info .meta {
  font-size: 11px;
  color: var(--text-3);
  font-family: var(--mono);
}
.opening-row .arr {
  color: var(--text-3);
  font-size: 16px;
  transition: all 0.15s;
}
.opening-row:hover .nm {
  color: var(--brand);
}
.opening-row:hover .arr {
  color: var(--brand);
  transform: translateX(2px);
}

@media (max-width: 1000px) {
  .about-hero-grid,
  .mission-grid,
  .bureaus-grid,
  .join-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .principles,
  .numbers-grid,
  .leadership-grid {
    grid-template-columns: 1fr 1fr;
  }
  .recognition {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .about-hero h1 {
    font-size: 52px;
  }
  .mission-grid h2,
  .join-grid h2 {
    font-size: 40px;
  }
}

/* ═══════════════════════════════════════════════════════════
   DTNews — Careers page
   ═══════════════════════════════════════════════════════════ */

.careers-hero {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}
.careers-hero::before {
  content: "JOIN";
  position: absolute;
  font-family: var(--italic);
  font-style: italic;
  font-size: 380px;
  line-height: 0.8;
  color: rgba(193, 39, 45, 0.04);
  right: -40px;
  top: -60px;
  letter-spacing: -0.05em;
  pointer-events: none;
}
.careers-hero .crumb {
  font-size: 12.5px;
  color: var(--text-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.careers-hero .crumb .sep {
  color: var(--text-3);
}
.careers-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 56px;
  align-items: end;
}
.careers-hero h1 {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 76px;
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 18px;
}
.careers-hero h1 em {
  font-style: italic;
  color: var(--brand);
}
.careers-hero .lede {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0 0 22px;
  max-width: 580px;
}
.careers-hero .quick-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.careers-hero .quick-cta .btn {
  padding: 11px 18px;
  border-radius: 99px;
  font-size: 13.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.15s;
}
.careers-hero .quick-cta .btn.primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 6px 18px rgba(193, 39, 45, 0.22);
}
.careers-hero .quick-cta .btn.primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
}
.careers-hero .quick-cta .btn.secondary {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--border);
}
.careers-hero .quick-cta .btn.secondary:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.careers-hero .quick-cta .btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.careers-hero-side {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.careers-hero-side .ttl {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.careers-hero-side .ttl .live {
  background: var(--brand);
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.careers-hero-side .ttl .live::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 99px;
  background: #fff;
  animation: blink 1.4s infinite;
}
.careers-hero-side .stat-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-top: 1px solid var(--border);
}
.careers-hero-side .stat-row:first-of-type {
  border-top: 0;
  padding-top: 0;
}
.careers-hero-side .stat-row .lbl {
  font-size: 13px;
  color: var(--text-2);
}
.careers-hero-side .stat-row .val {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
}
.careers-hero-side .stat-row .val.red {
  color: var(--brand);
}

/* ── Filter bar ── */
.jobs-filter-bar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 64px;
  z-index: 60;
}
.jobs-filter-row {
  padding: 14px 0;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 12px;
  align-items: center;
}
.jobs-search {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.jobs-search input {
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
}
.jobs-search input::placeholder {
  color: var(--text-3);
}
.jobs-search svg {
  width: 16px;
  height: 16px;
  color: var(--text-3);
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.jobs-search kbd {
  background: var(--cream);
  color: var(--text-2);
  font-family: var(--mono);
  font-size: 10.5px;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid var(--border);
}
.jobs-filter-row .fsel {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 9px 32px 9px 14px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236B7280' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

/* Department chips */
.dept-chips {
  padding: 18px 0 8px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.dept-chip {
  padding: 8px 14px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s;
  cursor: pointer;
}
.dept-chip:hover {
  color: var(--brand);
  border-color: var(--brand);
}
.dept-chip.active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(193, 39, 45, 0.22);
}
.dept-chip .ct {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
  font-weight: 500;
}
.dept-chip.active .ct {
  color: rgba(255, 255, 255, 0.8);
}

/* ── Careers section layout ── */
.careers-sec {
  padding: 40px 0 8px;
}
.careers-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 24px;
}
.careers-head .left {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.careers-head h2 {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 36px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0;
}
.careers-head .count {
  font-size: 12.5px;
  color: var(--text-3);
  font-family: var(--mono);
}
.careers-head .link {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.careers-head .link:hover {
  color: var(--accent);
}

/* ── Spotlight cards ── */
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.spotlight {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.2s;
}
.spotlight:hover {
  border-color: var(--brand);
  box-shadow: 0 16px 32px rgba(193, 39, 45, 0.1);
  transform: translateY(-2px);
}
.spotlight .img {
  aspect-ratio: 16/9;
  background: var(--cream) center/cover no-repeat;
  position: relative;
  overflow: hidden;
}
.spotlight .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.spotlight:hover .img img {
  transform: scale(1.04);
}
.spotlight .img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14, 14, 17, 0.6));
}
.spotlight .img .tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--brand);
  color: #fff;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  padding: 4px 9px;
  border-radius: 4px;
}
.spotlight .img .pay {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 4px;
}
.spotlight .body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.spotlight .dept {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.spotlight h3 {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
  margin: 0;
  line-height: 1.18;
  letter-spacing: -0.01em;
}
.spotlight p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.5;
  margin: 4px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.spotlight .meta {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--text-3);
  flex-wrap: wrap;
}
.spotlight .meta .item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.spotlight .meta svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.spotlight .meta b {
  color: var(--ink);
  font-weight: 500;
}

/* ── Job listings ── */
.jobs-shell {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 36px;
  align-items: start;
}
.jobs-col {
  min-width: 0;
}
.job-row {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  transition: all 0.15s;
}
.job-row:hover {
  border-color: var(--brand);
  box-shadow: 0 6px 18px rgba(193, 39, 45, 0.06);
  transform: translateY(-1px);
}
.job-row .info {
  min-width: 0;
}
.job-row .dept-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--brand);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.job-row .dept-row .new {
  background: var(--brand);
  color: #fff;
  padding: 1px 7px;
  border-radius: 3px;
  font-size: 9px;
  letter-spacing: 1px;
}
.job-row .dept-row .sep {
  color: var(--text-3);
}
.job-time {
  color: var(--text-3);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  font-family: var(--mono);
  font-size: 11px;
}
.job-row h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.25;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}
.job-row .desc {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.5;
  margin: 6px 0 0;
  max-width: 92%;
}
.job-row .meta {
  margin-top: 12px;
  display: flex;
  gap: 16px;
  align-items: center;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-3);
  flex-wrap: wrap;
}
.job-row .meta .item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.job-row .meta svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.job-row .meta b {
  color: var(--ink);
  font-weight: 500;
}
.job-row .meta .pay {
  color: var(--brand);
}
.job-row .actions {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 8px;
}
.job-row .actions .btn-apply {
  background: var(--brand);
  color: #fff;
  padding: 10px 18px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s;
  white-space: nowrap;
}
.job-row .actions .btn-apply:hover {
  background: var(--accent);
  transform: translateY(-1px);
}
.job-row .actions .btn-apply svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.job-row .actions .save {
  width: 32px;
  height: 32px;
  border-radius: 99px;
  display: grid;
  place-items: center;
  color: var(--text-3);
  border: 1px solid var(--border);
  transition: all 0.15s;
  cursor: pointer;
  background: transparent;
}
.job-row .actions .save:hover {
  color: var(--brand);
  border-color: var(--brand);
  background: var(--tag-bg);
}
.job-row .actions .save.saved {
  color: var(--brand);
  border-color: var(--brand);
  background: var(--tag-bg);
}
.job-row .actions .save svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Sidebar ── */
.careers-side {
  position: sticky;
  top: 152px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.side-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
}
.side-card.accent-l {
  border-left: 3px solid var(--brand);
}
.side-card .h {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.benefit-row {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  align-items: start;
}
.benefit-row .ic {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--tag-bg);
  color: var(--brand);
  display: grid;
  place-items: center;
}
.benefit-row .ic svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.benefit-row .info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.benefit-row .nm {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.benefit-row .desc {
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.45;
}

.locations-list {
  display: flex;
  flex-direction: column;
}
.location-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-top: 1px solid var(--border);
  font-size: 13.5px;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.15s;
}
.location-row:first-of-type {
  border-top: 0;
  padding-top: 2px;
}
.location-row:hover {
  color: var(--brand);
}
.location-row .ct {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
}
.location-row.active {
  color: var(--brand);
  font-weight: 600;
}
.location-row.active .ct {
  color: var(--brand);
}

.referral-card {
  background: var(--brand);
  color: #fff;
  border-radius: 14px;
  padding: 22px 20px;
  position: relative;
  overflow: hidden;
}
.referral-card::before {
  content: "DT";
  position: absolute;
  font-family: var(--italic);
  font-style: italic;
  font-size: 180px;
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.06);
  right: -20px;
  top: -20px;
  letter-spacing: -0.05em;
}
.referral-card .lbl {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.4px;
  opacity: 0.85;
  position: relative;
  z-index: 1;
}
.referral-card h4 {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 6px 0 10px;
  position: relative;
  z-index: 1;
}
.referral-card p {
  font-size: 12.5px;
  opacity: 0.88;
  margin: 0 0 14px;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
.referral-card .btn {
  background: #fff;
  color: var(--brand);
  padding: 9px 16px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
  transition: transform 0.15s;
}
.referral-card .btn:hover {
  transform: translateY(-1px);
}
.referral-card .btn svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Culture band ── */
.culture-band {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
  margin-top: 56px;
}
.culture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.culture-text .kicker {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.culture-text .kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--brand);
}
.culture-text h2 {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 48px;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0 0 18px;
}
.culture-text h2 em {
  font-style: italic;
  color: var(--brand);
}
.culture-text p {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 14px;
}
.culture-text p:last-child {
  margin-bottom: 0;
}
.culture-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  aspect-ratio: 1;
}
.culture-photos .ph {
  background: var(--paper) center/cover no-repeat;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.culture-photos .ph.big {
  grid-row: 1 / span 2;
}
.culture-photos .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Process timeline ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.process-step {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 18px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.15s;
}
.process-step:hover {
  border-color: var(--brand);
  box-shadow: 0 10px 22px rgba(193, 39, 45, 0.08);
}
.process-step .num {
  width: 32px;
  height: 32px;
  border-radius: 99px;
  background: var(--brand);
  color: #fff;
  font-family: var(--italic);
  font-style: italic;
  font-size: 16px;
  font-weight: 400;
  display: grid;
  place-items: center;
  line-height: 1;
  box-shadow:
    0 0 0 4px var(--paper),
    0 0 0 6px var(--brand);
}
.process-step h4 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  margin: 4px 0 0;
  letter-spacing: -0.01em;
}
.process-step p {
  font-size: 12.5px;
  color: var(--text-2);
  line-height: 1.5;
  margin: 0;
}
.process-step .when {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
  margin-top: auto;
}
.process-step .when b {
  color: var(--brand);
  font-weight: 500;
}

/* ── Testimonials ── */
.team-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.team-quote {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.15s;
}
.team-quote:hover {
  border-color: var(--brand);
}
.team-quote .quote-mark {
  font-family: var(--italic);
  font-style: italic;
  font-size: 64px;
  line-height: 0.4;
  color: var(--brand);
  height: 22px;
}
.team-quote blockquote {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.005em;
}
.team-quote .src {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
}
.team-quote .src .av {
  width: 40px;
  height: 40px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--brand), #7d1418);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.team-quote .src .av.av-navy {
  background: linear-gradient(135deg, #1e3a8a, #152b69);
}
.team-quote .src .av.av-rust {
  background: linear-gradient(135deg, #7c2d12, #5a1f08);
}
.team-quote .src .who {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}
.team-quote .src .role {
  font-size: 11.5px;
  color: var(--text-2);
  font-family: var(--mono);
}
.team-quote .src .tenure {
  font-size: 11px;
  color: var(--text-3);
  font-family: var(--mono);
}

/* ── No openings CTA ── */
.no-match {
  background: var(--paper);
  border: 1px dashed var(--border);
  border-radius: 16px;
  padding: 36px;
  text-align: center;
  margin-top: 36px;
}
.no-match h3 {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 30px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.no-match p {
  font-size: 14px;
  color: var(--text-2);
  margin: 0 0 18px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}
.no-match .btn {
  background: var(--brand);
  color: #fff;
  padding: 11px 22px;
  border-radius: 99px;
  font-size: 13.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 6px 18px rgba(193, 39, 45, 0.22);
}
.no-match .btn:hover {
  background: var(--accent);
}
.no-match .btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Missing keyframes for careers hero live dot */
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}

@media (max-width: 1100px) {
  .careers-hero-grid,
  .culture-grid,
  .jobs-shell {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .spotlight-grid,
  .team-quotes {
    grid-template-columns: 1fr 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-grid::before {
    display: none;
  }
  .careers-hero h1 {
    font-size: 56px;
  }
  .jobs-filter-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════
   DTNews — Corrections page
   ═══════════════════════════════════════════════════════════ */

.corr-hero {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  padding: 48px 0 40px;
  position: relative;
  overflow: hidden;
}
.corr-hero::before {
  content: "NOTE";
  position: absolute;
  font-family: var(--italic);
  font-style: italic;
  font-size: 320px;
  line-height: 0.8;
  color: rgba(193, 39, 45, 0.04);
  right: -20px;
  top: -40px;
  letter-spacing: -0.05em;
  pointer-events: none;
}
.corr-hero .crumb {
  font-size: 12.5px;
  color: var(--text-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.corr-hero .crumb .sep {
  color: var(--text-3);
}
.corr-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: end;
}
.corr-hero h1 {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 60px;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 16px;
}
.corr-hero h1 em {
  font-style: italic;
  color: var(--brand);
}
.corr-hero .lede {
  font-family: var(--serif);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0 0 16px;
  max-width: 560px;
}
.corr-hero .pillrow {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.corr-hero .pillrow .pill {
  background: var(--tag-bg);
  color: var(--brand);
  font-size: 11.5px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 99px;
}
.corr-stats {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.corr-stats .ttl {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin: 0 0 4px;
}
.corr-stats .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-top: 1px solid var(--border);
}
.corr-stats .row:first-of-type {
  border-top: 0;
  padding-top: 0;
}
.corr-stats .row .lbl {
  font-size: 13px;
  color: var(--text-2);
}
.corr-stats .row .val {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
}
.corr-stats .row .val.red {
  color: var(--brand);
}

/* Filter bar */
.corr-filter {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 64px;
  z-index: 60;
}
.corr-filter-row {
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.corr-filter-row .left {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.corr-filter-row .right {
  display: flex;
  gap: 8px;
  align-items: center;
}
.corr-chip {
  padding: 7px 14px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s;
  cursor: pointer;
}
.corr-chip:hover {
  color: var(--brand);
  border-color: var(--brand);
}
.corr-chip.active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(193, 39, 45, 0.22);
}
.corr-chip .ct {
  font-family: var(--mono);
  font-size: 11px;
  opacity: 0.7;
}
.corr-search {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 260px;
}
.corr-search input {
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
}
.corr-search input::placeholder {
  color: var(--text-3);
}
.corr-search svg {
  width: 14px;
  height: 14px;
  color: var(--text-3);
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Body grid */
.corr-shell {
  padding: 40px 0 56px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 36px;
  align-items: start;
}
.corr-list {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.corr-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 24px;
  transition: all 0.15s;
}
.corr-card:hover {
  border-color: var(--brand);
  box-shadow: 0 6px 18px rgba(193, 39, 45, 0.06);
}
.corr-card.major {
  border-left: 3px solid var(--brand);
}

.corr-head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--text-3);
}
.corr-head .badge {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--tag-bg);
  color: var(--brand);
}
.corr-head .badge.major {
  background: var(--brand);
  color: #fff;
}
.corr-head .badge.clarify {
  background: #fef3c7;
  color: #92400e;
}
.corr-head .badge.update {
  background: #dbeafe;
  color: #1d4ed8;
}
.corr-head .sep {
  color: var(--text-3);
}
.corr-head .stamp b {
  color: var(--ink);
  font-weight: 500;
}
.corr-head .ref {
  background: var(--cream);
  padding: 2px 7px;
  border-radius: 4px;
  color: var(--ink);
  border: 1px solid var(--border);
  font-weight: 500;
}

.corr-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 10px;
}
.corr-card h3 a {
  color: inherit;
}
.corr-card h3 a:hover {
  color: var(--brand);
}

.corr-card .diff {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 12px 0;
}
.corr-card .diff .col {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  position: relative;
}
.corr-card .diff .lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.corr-card .diff .col.was .lbl {
  color: var(--brand);
}
.corr-card .diff .col.is .lbl {
  color: #047857;
}
.corr-card .diff .col.was .lbl::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 99px;
}
.corr-card .diff .col.is .lbl::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #047857;
  border-radius: 99px;
}
.corr-card .diff p {
  font-family: var(--serif);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}
.corr-card .diff .col.was p {
  text-decoration: line-through;
  text-decoration-color: rgba(193, 39, 45, 0.6);
  color: var(--text-2);
}
.corr-card .diff .col.is p mark {
  background: rgba(4, 120, 87, 0.15);
  padding: 1px 4px;
  border-radius: 3px;
  color: inherit;
}

.corr-card .reason {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
  margin: 8px 0 0;
}
.corr-card .reason b {
  color: var(--ink);
  font-weight: 600;
}

.corr-card .foot {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-3);
  font-family: var(--mono);
  flex-wrap: wrap;
}
.corr-card .foot .item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.corr-card .foot svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.corr-card .foot b {
  color: var(--ink);
  font-weight: 500;
  font-family: var(--sans);
}
.corr-card .foot .read {
  margin-left: auto;
  color: var(--brand);
  font-weight: 600;
  font-family: var(--sans);
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition:
    gap 0.15s,
    color 0.15s;
}
.corr-card .foot .read:hover {
  color: var(--accent);
  gap: 7px;
}
.corr-card .foot .read svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Corrections sidebar */
.corr-side {
  position: sticky;
  top: 152px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.corr-side .side-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
}
.corr-side .side-card.accent-l {
  border-left: 3px solid var(--brand);
}
.corr-side .side-card h4 {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.policy-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.policy-row {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
}
.policy-row .num {
  font-family: var(--italic);
  font-style: italic;
  font-size: 22px;
  color: var(--brand);
  line-height: 1;
}
.policy-row .info .nm {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.policy-row .info .desc {
  font-size: 11.5px;
  color: var(--text-2);
  line-height: 1.5;
  margin-top: 2px;
}

.report-card {
  background: var(--brand);
  color: #fff;
  border-radius: 14px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.report-card::before {
  content: "DT";
  position: absolute;
  font-family: var(--italic);
  font-style: italic;
  font-size: 180px;
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.06);
  right: -20px;
  top: -20px;
  letter-spacing: -0.05em;
}
.report-card .lbl {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.4px;
  opacity: 0.85;
  position: relative;
}
.report-card h5 {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  margin: 6px 0 10px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  position: relative;
}
.report-card p {
  font-size: 12.5px;
  opacity: 0.88;
  margin: 0 0 14px;
  line-height: 1.5;
  position: relative;
}
.report-card .btn {
  background: #fff;
  color: var(--brand);
  padding: 9px 16px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  transition: transform 0.15s;
}
.report-card .btn:hover {
  transform: translateY(-1px);
}
.report-card .btn svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Pagination */
.pagination {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.pagination button {
  width: 36px;
  height: 36px;
  border-radius: 99px;
  background: var(--paper);
  border: 1px solid var(--border);
  display: inline-grid;
  place-items: center;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-2);
  transition: all 0.15s;
  cursor: pointer;
}
.pagination .nav-arr {
  width: auto;
  padding: 0 14px;
  gap: 6px;
  display: inline-flex;
  align-items: center;
}
.pagination button:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.pagination .pg-active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(193, 39, 45, 0.28);
}
.pagination .gap {
  border: 0;
  background: transparent;
  color: var(--text-3);
  cursor: default;
}
.pagination svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1000px) {
  .corr-grid,
  .corr-shell {
    grid-template-columns: 1fr;
  }
  .corr-card .diff {
    grid-template-columns: 1fr;
  }
  .corr-hero h1 {
    font-size: 44px;
  }
}

/* Corrections sidebar — related links variant */
.policy-row-link .num {
  font-size: 18px;
  color: var(--ink);
  font-family: var(--sans);
  font-style: normal;
}
.policy-row-link .info a {
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}
.policy-row-link .info a:hover {
  color: var(--brand);
}

/* ═══════════════════════════════════════════════════════════
   DTNews — Mobile Responsive Overrides
   ═══════════════════════════════════════════════════════════ */

/* ── Mobile nav drawer components (always present) ── */
.mob-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  flex-shrink: 0;
}
.mob-menu-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mob-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
}
.mob-nav.open {
  display: block;
}
.mob-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 14, 17, 0.55);
  backdrop-filter: blur(4px);
}
.mob-nav-panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(320px, 90vw);
  background: var(--paper);
  border-right: 1px solid var(--line);
  box-shadow: 4px 0 28px rgba(14, 14, 17, 0.14);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mob-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.mob-nav-links {
  flex: 1;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow-y: auto;
}
.mob-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  border-radius: 10px;
  transition: all 0.15s;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
  text-align: left;
}
.mob-nav-link:hover {
  background: var(--tag-bg);
  color: var(--brand);
}
.mob-nav-link.active {
  background: var(--brand);
  color: #fff;
  font-weight: 700;
}
.mob-search-btn {
  color: var(--text-2);
}
.mob-nav-sep {
  height: 1px;
  background: var(--line);
  margin: 6px 2px;
}
.mob-nav-bottom {
  padding: 16px 20px;
  border-top: 1px solid var(--line);
  flex-shrink: 0;
}
.mob-login-btn {
  background: var(--brand);
  color: #fff;
  padding: 13px 16px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: background 0.15s;
  width: 100%;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(193, 39, 45, 0.25);
}
.mob-login-btn:hover {
  background: var(--accent);
}
.mob-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 99px;
  display: grid;
  place-items: center;
  color: var(--text-2);
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  flex-shrink: 0;
}
.mob-close-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ═══════════════════════════════════════════════════════════
   Nav compression — ≤1400px (medium laptop, prevents link crowding)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1400px) {
  .nav-link {
    padding: 9px 8px;
    font-size: 13px;
  }
  .nav-sep {
    margin: 0 5px;
  }
  .search {
    width: 160px;
  }
  .search kbd {
    display: none;
  }
  .btn-app {
    padding: 9px 13px;
    font-size: 12.5px;
  }
}

/* ═══════════════════════════════════════════════════════════
   Nav collapse — ≤1100px (small laptop / tablet landscape)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .wrap {
    padding: 0 24px;
  }
  .nav-links {
    display: none;
  }
  .search-label {
    display: none;
  }
  .search kbd {
    display: none;
  }
  .search {
    width: auto;
    padding: 8px 10px;
    min-width: 0;
  }
  .btn-app-desk {
    display: none;
  }
  .mob-menu-btn {
    display: inline-flex;
  }
  .trend-scroll {
    margin: 0 -24px;
    padding: 4px 24px 12px;
  }
  .epaper-row {
    margin: 0 -24px;
    padding: 4px 24px 12px;
  }
}

/* ═══════════════════════════════════════════════════════════
   Tablet and below — ≤768px
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* ── Core layout ── */
  .wrap {
    padding: 0 16px;
  }

  /* ── Header ── */
  .nav-row {
    height: 56px;
    gap: 8px;
  }
  .logo .dt {
    font-size: 28px;
  }
  .logo .news {
    font-size: 16px;
  }
  .logo .dot {
    width: 5px;
    height: 5px;
  }
  .nav-links {
    display: none;
  }
  .search {
    width: auto;
    padding: 8px 10px;
    min-width: 0;
  }
  .search-label {
    display: none;
  }
  .search kbd {
    display: none;
  }
  .btn-app-desk {
    display: none;
  }
  .mob-menu-btn {
    display: inline-flex;
  }
  .locale-dropdown {
    min-width: 160px;
  }

  /* ── Breaking ticker ── */
  .ticker-row {
    height: 36px;
    gap: 10px;
  }
  .ticker-strip {
    font-size: 12px;
    gap: 28px;
  }
  .ticker-pill {
    font-size: 10px;
    padding: 4px 8px;
    gap: 5px;
  }

  /* ── Hero ── */
  .hero {
    padding: 20px 0 16px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hero-content {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
  .hero-content h1 {
    font-size: 22px;
    margin: 0 0 10px;
  }
  .hero-content .kicker {
    font-size: 10px;
    margin-bottom: 10px;
  }
  .hero-meta {
    font-size: 11.5px;
    gap: 8px;
  }
  .hero-meta .stat {
    display: none;
  }
  .hero-side {
    flex-direction: row;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 12px;
    padding-bottom: 4px;
  }
  .hero-side::-webkit-scrollbar {
    display: none;
  }
  .side-card {
    flex-shrink: 0;
    width: 280px;
    flex: none;
  }

  /* ── Category chips ── */
  .chips {
    padding: 6px 0 20px;
  }
  .chip {
    padding: 8px 14px;
    font-size: 12px;
  }

  /* ── Section header ── */
  .sec {
    padding: 20px 0;
  }
  .sec-head {
    margin-bottom: 14px;
  }
  .sec-title h2 {
    font-size: 24px;
  }
  .sec-link {
    font-size: 12px;
  }

  /* ── Latest news grid ── */
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* ── Live banner ── */
  .live-banner {
    grid-template-columns: auto 1fr;
    gap: 14px;
    padding: 16px 18px;
    margin: 24px 0;
  }
  .live-mini-bars {
    display: none;
  }
  .btn-watch {
    grid-column: 1 / -1;
    justify-content: center;
    padding: 11px 18px;
  }
  .live-icon {
    width: 44px;
    height: 44px;
  }
  .live-text h3 {
    font-size: 20px;
  }
  .live-text p {
    font-size: 12px;
  }

  /* ── Trending scroll ── */
  .trend-scroll {
    margin: 0 -16px;
    padding: 4px 16px 12px;
  }
  .trend-card {
    width: 200px;
  }

  /* ── Live TV band ── */
  .lt-band {
    padding: 32px 0;
  }
  .lt-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* ── Video grid ── */
  .vid-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 14px;
  }
  .vid-card.big {
    grid-row: auto;
  }
  .vid-thumb {
    min-height: 180px;
  }
  .vid-card.big .vid-play {
    width: 52px;
    height: 52px;
  }
  .vid-card.big h3 {
    font-size: 18px;
  }
  .vid-card.big .vid-body {
    padding: 14px 16px;
  }

  /* ── Shows grid ── */
  .shows-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* ── Audio grid ── */
  .audio-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .audio-card {
    grid-template-columns: 80px 1fr;
    gap: 12px;
  }
  .audio-cover {
    width: 80px;
    height: 80px;
  }

  /* ── E-Paper row ── */
  .epaper-row {
    margin: 0 -16px;
    padding: 4px 16px 12px;
  }

  /* ── Footer ── */
  footer {
    margin-top: 32px;
    padding: 36px 0 20px;
  }
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 28px;
  }
  .foot-brand p {
    max-width: 100%;
  }
  .foot-store {
    flex-wrap: wrap;
  }
  .foot-bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 12px;
    padding-top: 18px;
  }

  /* ── E-paper page ── */
  .ep-hero-top h1 {
    font-size: 36px;
  }
  .ep-hero-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .ep-controls-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .ep-tabs {
    max-width: 100%;
  }
  .ep-actions {
    flex-wrap: wrap;
  }
  .ep-actions select {
    max-width: 100%;
  }
  .ep-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .thumb-rail {
    position: static;
  }
  .ep-right {
    position: static;
  }
  .viewer-stage {
    min-height: auto;
    padding: 16px;
  }
  .page-shell {
    max-width: 100%;
  }
  .zoom-fab {
    position: relative;
    bottom: auto;
    right: auto;
    justify-content: center;
    margin-top: 12px;
  }

  /* ── Shorts page ── */
  .shorts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .shorts-rail {
    display: none;
  }
  .up-next {
    display: none;
  }
  .shorts-top h1 {
    font-size: 28px;
  }
  .shorts-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .short {
    width: min(360px, calc(100vw - 64px));
  }
  .player-stage {
    gap: 8px;
  }
  .player-stage .nav-btn {
    width: 36px;
    height: 36px;
  }
  .player-col {
    width: 100%;
    align-items: center;
  }
  .shorts-filters {
    max-width: 100%;
  }

  /* ── Topics page ── */
  .topics-hero {
    padding: 24px 0 18px;
    overflow: hidden;
  }
  .topics-hero::before {
    display: none;
  }
  .topics-hero .row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .topics-hero h1 {
    font-size: 44px;
  }
  .topics-hero p {
    font-size: 14px;
  }
  .topics-hero .nums {
    gap: 20px;
    padding-top: 18px;
  }
  .topics-anchors {
    top: 56px;
  }
  .topics-anchor {
    padding: 12px 14px;
    font-size: 12.5px;
  }
  .topics-head h2 {
    font-size: 26px;
  }

  /* ── Feature grid (Topics) ── */
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* ── A-Z grid (Topics) ── */
  .az-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .az-letters {
    position: static;
  }
  .az-rows {
    grid-template-columns: 1fr 1fr;
    gap: 4px 16px;
    padding: 0 16px 16px;
  }

  /* ── Content grid (Topics) ── */
  .content-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* ── Followed grid (Topics) ── */
  .followed-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* ── Feeds page ── */
  .feeds-shell {
    padding: 20px 0 40px;
  }
  .feeds-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .feeds-rail {
    position: static;
  }
  .feeds-right {
    position: static;
  }

  /* ── Search page ── */
  .search-hero {
    padding: 24px 0 16px;
  }
  .search-bigbox {
    padding: 10px 14px;
  }
  .search-bigbox input {
    font-size: 20px;
  }
  .search-bigbox kbd {
    display: none;
  }
  .search-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .filters-rail {
    position: static;
  }
  .search-right {
    position: static;
  }
  .result {
    grid-template-columns: 110px 1fr;
    gap: 14px;
    padding: 16px 0;
  }
  .result .thumb {
    width: 110px;
  }
  .result h3 {
    font-size: 16px;
  }

  /* ── Article page ── */
  .hero-img {
    aspect-ratio: 4/3;
    max-height: 300px;
  }
  .hero-caption {
    padding: 10px 16px 0;
  }
  .article-shell {
    padding: 20px 16px 40px;
    gap: 28px;
  }
  h1.article-h {
    font-size: 28px;
  }
  .standfirst {
    font-size: 16px;
  }
  .pullquote {
    font-size: 22px;
    padding: 4px 0 4px 18px;
  }
  .article-body p {
    font-size: 16px;
  }

  /* ── Auth pages ── */
  .auth-shell {
    grid-template-columns: 1fr;
  }
  .auth-art {
    display: none;
  }

  /* ── Markets strip ── */
  .markets-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* ── Embed card (feeds) ── */
  .embed {
    grid-template-columns: 100px 1fr;
  }

  /* ── Post composer ── */
  .composer {
    grid-template-columns: 36px 1fr;
    gap: 10px;
  }
  .composer .av {
    width: 36px;
    height: 36px;
  }

  /* ── Careers page ── */
  .careers-hero {
    padding: 36px 0 28px;
  }
  .careers-hero::before {
    display: none;
  }
  .careers-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .careers-hero h1 {
    font-size: 48px;
  }
  .jobs-shell {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .careers-side {
    position: static;
  }
  .spotlight-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .jobs-filter-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .job-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .job-row .actions {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  /* ── About page ── */
  .about-hero h1 {
    font-size: 52px;
  }

  /* ── Corrections page ── */
  .corr-hero h1 {
    font-size: 36px;
  }
  .corr-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .corr-shell {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .corr-side {
    position: static;
  }
  .corr-search {
    width: 100%;
    box-sizing: border-box;
  }
  .corr-filter-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .corr-filter-row .right {
    justify-content: flex-start;
  }

  /* ── Contact page ── */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* ── General utils ── */
  .sticky-below-nav {
    top: 56px;
  }
}

/* ═══════════════════════════════════════════════════════════
   Small tablet transition — 480px–768px: 2-column grids
   ═══════════════════════════════════════════════════════════ */
@media (min-width: 480px) and (max-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .lt-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ═══════════════════════════════════════════════════════════
   Extra-small mobile — ≤480px
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .wrap {
    padding: 0 12px;
  }

  /* Hero */
  .hero-content h1 {
    font-size: 18px;
  }
  .side-card {
    width: 240px;
  }

  /* Section titles */
  .sec-title h2 {
    font-size: 20px;
  }

  /* Feature grid: 1 column on small phones */
  .feature-grid {
    grid-template-columns: 1fr;
  }

  /* Content grid: 1 column */
  .content-grid {
    grid-template-columns: 1fr;
  }

  /* Topics hero */
  .topics-hero h1 {
    font-size: 32px;
  }

  /* E-paper hero */
  .ep-hero-top h1 {
    font-size: 28px;
  }

  /* Shorts */
  .shorts-top h1 {
    font-size: 22px;
  }
  .short {
    width: calc(100vw - 56px);
    min-width: 260px;
  }

  /* Search results — stack on very small */
  .result {
    grid-template-columns: 1fr;
  }
  .result .thumb {
    width: 100%;
  }

  /* Trend scroll */
  .trend-scroll {
    margin: 0 -12px;
    padding: 4px 12px 12px;
  }
  .trend-card {
    width: 180px;
  }

  /* E-paper row */
  .epaper-row {
    margin: 0 -12px;
    padding: 4px 12px 12px;
  }

  /* Live banner: fully stacked */
  .live-banner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 16px;
  }
  .live-icon {
    justify-self: start;
  }

  /* Footer */
  .foot-store .pill {
    flex: 1;
    justify-content: center;
  }

  /* AZ rows */
  .az-rows {
    grid-template-columns: 1fr;
  }

  /* Audio card */
  .audio-card {
    grid-template-columns: 70px 1fr;
    gap: 10px;
  }
  .audio-cover {
    width: 70px;
    height: 70px;
  }

  /* Careers */
  .careers-hero h1 {
    font-size: 38px;
  }
  .spotlight-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Subscribe page ───────────────────────────────────── */

.sub-hero {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}
.sub-hero::before {
  content: "DT+";
  position: absolute;
  font-family: var(--italic);
  font-style: italic;
  font-size: 380px;
  line-height: 0.8;
  color: rgba(193, 39, 45, 0.05);
  right: -40px;
  top: -50px;
  letter-spacing: -0.05em;
  pointer-events: none;
}
.sub-hero .crumb {
  font-size: 12.5px;
  color: var(--text-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.sub-hero .crumb .sep {
  color: var(--text-3);
}
.sub-hero h1 {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 72px;
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 18px;
  max-width: 920px;
  text-wrap: pretty;
  position: relative;
  z-index: 1;
}
.sub-hero h1 em {
  font-style: italic;
  color: var(--brand);
}
.sub-hero .lede {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0 0 22px;
  max-width: 720px;
  position: relative;
  z-index: 1;
}
.sub-hero .trust {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.sub-hero .trust .item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--text-2);
  font-family: var(--mono);
}
.sub-hero .trust .item svg {
  width: 14px;
  height: 14px;
  color: var(--brand);
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.sub-hero .trust .item b {
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 500;
}

.billing-toggle {
  display: inline-flex;
  padding: 4px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 99px;
  align-items: center;
  gap: 4px;
}
.billing-toggle button {
  padding: 8px 18px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  cursor: pointer;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  border: none;
  background: none;
}
.billing-toggle button.active {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 3px 10px rgba(193, 39, 45, 0.22);
}
.billing-toggle .save-tag {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 99px;
  font-family: var(--mono);
}

.toggle-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 32px 0 0;
}
.toggle-row .note {
  font-size: 12.5px;
  color: var(--text-3);
  font-family: var(--mono);
}
.toggle-row .note b {
  color: var(--brand);
  font-family: var(--sans);
  font-weight: 600;
}

.plans-shell {
  padding: 36px 0 64px;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.plan {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: all 0.2s;
}
.plan:hover {
  border-color: var(--line-hi);
}
.plan.featured {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  box-shadow: 0 20px 40px rgba(15, 15, 20, 0.15);
  transform: translateY(-6px);
}
.plan.featured::before {
  content: "MOST POPULAR";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  padding: 5px 14px;
  border-radius: 99px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.4px;
  box-shadow: 0 6px 18px rgba(193, 39, 45, 0.4);
}
.plan-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: var(--brand);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.plan-tag::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--brand);
}
.plan.featured .plan-tag {
  color: var(--accent);
}
.plan.featured .plan-tag::before {
  background: var(--accent);
}
.plan-name {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1;
}
.plan.featured .plan-name {
  color: #fff;
}
.plan-desc {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0;
  min-height: 40px;
}
.plan.featured .plan-desc {
  color: rgba(255, 255, 255, 0.65);
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.plan.featured .plan-price {
  border-color: rgba(255, 255, 255, 0.1);
}
.plan-price .cur {
  font-family: var(--sans);
  font-size: 18px;
  color: var(--text-2);
  font-weight: 500;
}
.plan.featured .plan-price .cur {
  color: rgba(255, 255, 255, 0.6);
}
.plan-price .amt {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 56px;
  color: var(--brand);
  letter-spacing: -0.02em;
  line-height: 1;
}
.plan.featured .plan-price .amt {
  color: var(--accent);
}
.plan-price .per {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-3);
  margin-left: 6px;
}
.plan-price .strike {
  color: var(--text-3);
  text-decoration: line-through;
  font-family: var(--mono);
  font-size: 13px;
  margin-left: 6px;
}
.plan-price-meta {
  font-size: 11.5px;
  color: var(--text-3);
  font-family: var(--mono);
  margin-top: 4px;
}
.plan-price-meta b {
  color: var(--brand);
  font-family: var(--sans);
  font-weight: 600;
}
.plan.featured .plan-price-meta {
  color: rgba(255, 255, 255, 0.55);
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 0;
  margin: 0;
}
.plan-features li {
  list-style: none;
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.5;
  padding-left: 24px;
  position: relative;
}
.plan.featured .plan-features li {
  color: rgba(255, 255, 255, 0.92);
}
.plan-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 99px;
  background: var(--tag-bg)
    url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23C1272D' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E")
    center/10px no-repeat;
}
.plan-features li.muted {
  color: var(--text-3);
}
.plan-features li.muted::before {
  background: var(--bg)
    url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='3' stroke-linecap='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E")
    center/8px no-repeat;
}
.plan.featured .plan-features li::before {
  background: rgba(237, 32, 39, 0.18)
    url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23ED2027' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E")
    center/10px no-repeat;
}
.plan-features li b {
  font-weight: 600;
  color: var(--brand);
}
.plan.featured .plan-features li b {
  color: var(--accent);
}

.plan-cta {
  margin-top: auto;
  padding: 12px 18px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: all 0.15s;
  font-family: var(--sans);
  border: none;
}
.plan-cta.primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 6px 18px rgba(193, 39, 45, 0.28);
}
.plan-cta.primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
}
.plan-cta.outline {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--border);
}
.plan-cta.outline:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.plan.featured .plan-cta {
  background: var(--brand);
  color: #fff;
}
.plan.featured .plan-cta:hover {
  background: var(--accent);
}
.plan-cta svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.plan-extra {
  font-size: 11px;
  color: var(--text-3);
  text-align: center;
  font-family: var(--mono);
  margin-top: -8px;
}
.plan.featured .plan-extra {
  color: rgba(255, 255, 255, 0.55);
}

/* Add-ons */
.sub-addons {
  margin-top: 56px;
}
.sub-addons-head {
  margin-bottom: 20px;
}
.sub-addons-head h2 {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0;
}
.sub-addons-head p {
  font-size: 13px;
  color: var(--text-2);
  margin: 4px 0 0;
}
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.addon {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.15s;
}
.addon:hover {
  border-color: var(--brand);
}
.addon .ic {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--tag-bg);
  color: var(--brand);
  display: grid;
  place-items: center;
}
.addon .ic svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.addon h4 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}
.addon p {
  font-size: 12.5px;
  color: var(--text-2);
  line-height: 1.5;
  margin: 0;
  min-height: 36px;
}
.addon .foot {
  margin-top: auto;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid var(--border);
}
.addon .price {
  font-family: var(--italic);
  font-style: italic;
  font-size: 22px;
  color: var(--brand);
  letter-spacing: -0.01em;
}
.addon .price .per {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
  font-style: normal;
  margin-left: 4px;
}
.addon .add {
  font-size: 12px;
  font-weight: 600;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
}
.addon .add:hover {
  color: var(--accent);
}
.addon .add svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
}

/* Comparison table */
.compare-band {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.compare-band h2 {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 42px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 28px;
}
.compare-table {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.compare-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 0;
  align-items: center;
  border-top: 1px solid var(--border);
  padding: 14px 22px;
}
.compare-row:first-child {
  border-top: 0;
  background: var(--bg);
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--text-2);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 16px 22px;
}
.compare-row.section {
  background: var(--cream);
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--brand);
  padding: 12px 22px;
  letter-spacing: -0.01em;
}
.compare-row .feat {
  font-size: 13.5px;
  color: var(--ink);
}
.compare-row .feat .desc {
  font-size: 11.5px;
  color: var(--text-3);
  margin-top: 2px;
  font-family: var(--mono);
}
.compare-row .col {
  text-align: center;
}
.compare-row .col .y {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 99px;
  background: var(--tag-bg);
  color: var(--brand);
}
.compare-row .col.featured-col .y {
  background: var(--brand);
  color: #fff;
}
.compare-row .col .y svg {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  fill: none;
  stroke-width: 3;
}
.compare-row .col .n {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 99px;
  background: var(--bg);
  color: var(--text-3);
}
.compare-row .col .n svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  fill: none;
  stroke-width: 3;
}
.compare-row .col .v {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink);
  font-weight: 500;
}
.compare-row .col.featured-col .v {
  color: var(--brand);
  font-weight: 600;
}

/* Testimonials */
.testimonial-band {
  padding: 56px 0;
}
.testimonial-band h2 {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 42px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.testimonial-band .sub {
  font-size: 13.5px;
  color: var(--text-2);
  margin-bottom: 28px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testimonial {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.15s;
}
.testimonial:hover {
  border-color: var(--brand);
}
.testimonial .quote-mark {
  font-family: var(--italic);
  font-style: italic;
  font-size: 56px;
  line-height: 0.4;
  color: var(--brand);
  height: 18px;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.005em;
}
.testimonial .src {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: center;
}
.testimonial .src .av {
  width: 36px;
  height: 36px;
  border-radius: 99px;
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.testimonial .src .who {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.testimonial .src .role {
  font-size: 11px;
  color: var(--text-2);
  font-family: var(--mono);
}

/* FAQ */
.sub-faq {
  padding: 56px 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
}
.sub-faq h2 {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 42px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}
.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.faq-item {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  cursor: pointer;
  transition: all 0.15s;
}
.faq-item:hover {
  border-color: var(--brand);
}
.faq-item .q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  gap: 12px;
}
.faq-item .q .plus {
  width: 24px;
  height: 24px;
  border-radius: 99px;
  background: var(--tag-bg);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-weight: 700;
  transition: all 0.2s;
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1;
}
.faq-item.open .q .plus {
  background: var(--brand);
  color: #fff;
  transform: rotate(45deg);
}
.faq-item .a {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.6;
  margin-top: 12px;
}

/* Final CTA */
.final-cta {
  padding: 64px 0;
  background: var(--brand);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "DT";
  position: absolute;
  font-family: var(--italic);
  font-style: italic;
  font-size: 460px;
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.06);
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  letter-spacing: -0.05em;
}
.final-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.final-cta h2 {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 48px;
  margin: 0 0 8px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-wrap: pretty;
  max-width: 620px;
}
.final-cta h2 em {
  font-style: italic;
}
.final-cta p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 540px;
  line-height: 1.55;
}
.final-cta .actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.final-cta .btn-w {
  background: #fff;
  color: var(--brand);
  padding: 13px 22px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: transform 0.15s;
  text-decoration: none;
}
.final-cta .btn-w:hover {
  transform: translateY(-1px);
}
.final-cta .btn-w svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
}
.final-cta .btn-o {
  background: transparent;
  color: #fff;
  padding: 13px 22px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: background 0.15s;
  text-decoration: none;
}
.final-cta .btn-o:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Subscribe responsive */
@media (max-width: 1000px) {
  .sub-hero h1 {
    font-size: 52px;
  }
  .plans-grid {
    grid-template-columns: 1fr;
  }
  .plan.featured {
    transform: none;
  }
  .compare-table {
    overflow-x: auto;
  }
  .compare-row {
    min-width: 640px;
  }
  .addons-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .faq-list {
    grid-template-columns: 1fr;
  }
  .final-cta h2 {
    font-size: 36px;
  }
}
@media (max-width: 560px) {
  .sub-hero h1 {
    font-size: 38px;
  }
  .plan-name {
    font-size: 26px;
  }
  .plan-price .amt {
    font-size: 44px;
  }
}

/* ── Profile page ─────────────────────────────────────── */

.pf-cover {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--cream);
}
.pf-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pf-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 14, 17, 0.1),
    rgba(14, 14, 17, 0.5)
  );
}
.pf-cover .edit {
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 7px 14px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.15s;
}
.pf-cover .edit:hover {
  background: var(--brand);
  color: #fff;
}
.pf-cover .edit svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pf-header {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  padding: 0 0 24px;
}
.pf-header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: end;
  margin-top: -56px;
  position: relative;
}
.pf-av {
  width: 120px;
  height: 120px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--brand), #7d1418);
  border: 5px solid var(--paper);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 48px;
  box-shadow: 0 8px 28px rgba(15, 15, 20, 0.18);
  position: relative;
  flex-shrink: 0;
}
.pf-av .verified {
  position: absolute;
  bottom: 6px;
  right: 6px;
  width: 28px;
  height: 28px;
  border-radius: 99px;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  border: 3px solid var(--paper);
}
.pf-av .verified svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pf-info {
  padding-bottom: 12px;
}
.pf-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 40px;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1;
  margin: 0 0 8px;
}
.pf-name .badge {
  font-family: var(--sans);
  font-style: normal;
  background: var(--tag-bg);
  color: var(--brand);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 4px 10px;
  border-radius: 99px;
  text-transform: uppercase;
}
.pf-handle {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 10px;
}
.pf-bio {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0 0 12px;
  max-width: 560px;
}
.pf-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12.5px;
  color: var(--text-3);
  font-family: var(--mono);
  flex-wrap: wrap;
}
.pf-meta .item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.pf-meta svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.pf-meta b {
  color: var(--ink);
  font-weight: 500;
  font-family: var(--sans);
}

.pf-actions {
  display: flex;
  gap: 8px;
  padding-bottom: 12px;
  flex-shrink: 0;
}
.pf-actions .btn {
  padding: 9px 16px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s;
}
.pf-actions .btn.primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 14px rgba(193, 39, 45, 0.22);
}
.pf-actions .btn.primary:hover {
  background: var(--accent);
}
.pf-actions .btn.secondary {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--border);
}
.pf-actions .btn.secondary:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.pf-actions .btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pf-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
}
.pf-stat {
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.15s;
  cursor: pointer;
}
.pf-stat:last-child {
  border-right: 0;
}
.pf-stat:hover {
  background: var(--cream);
}
.pf-stat .n {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 30px;
  color: var(--brand);
  letter-spacing: -0.01em;
  line-height: 1;
}
.pf-stat .l {
  font-size: 10.5px;
  color: var(--text-2);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-weight: 600;
}

.pf-tabs {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 64px;
  z-index: 60;
}
.pf-tabs-row {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.pf-tabs-row::-webkit-scrollbar {
  display: none;
}
.pf-tab {
  padding: 14px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-2);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  cursor: pointer;
  font-family: var(--sans);
}
.pf-tab:hover {
  color: var(--brand);
}
.pf-tab.active {
  color: var(--brand);
  font-weight: 600;
  border-bottom-color: var(--brand);
}
.pf-tab .ct {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
}
.pf-tab.active .ct {
  color: var(--brand);
}
.pf-tab svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.pf-shell {
  padding: 32px 0 56px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}

.pf-sec-h {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}
.pf-sec-h h2 {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0;
}
.pf-sec-h .link {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
}
.pf-sec-h .link:hover {
  color: var(--accent);
}

/* Reading history */
.pf-list {
  display: flex;
  flex-direction: column;
}
.pf-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 18px;
  padding: 16px 0;
  align-items: center;
  border-top: 1px solid var(--border);
}
.pf-row:first-child {
  border-top: 0;
  padding-top: 4px;
}
.pf-row:hover h4 {
  color: var(--brand);
}
.pf-row .thumb {
  width: 140px;
  aspect-ratio: 16/10;
  border-radius: 10px;
  overflow: hidden;
  background: var(--cream) center/cover no-repeat;
}
.pf-row .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pf-row .info {
  min-width: 0;
}
.pf-row .cat {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.pf-row h4 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 16.5px;
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
  text-wrap: pretty;
  transition: color 0.15s;
}
.pf-row .meta {
  margin-top: 6px;
  font-size: 11.5px;
  color: var(--text-3);
  font-family: var(--mono);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pf-row .meta b {
  color: var(--ink);
  font-weight: 500;
  font-family: var(--sans);
}
.pf-row .actions {
  display: flex;
  gap: 6px;
}
.pf-row .actions button {
  width: 30px;
  height: 30px;
  border-radius: 99px;
  border: 1px solid var(--border);
  color: var(--text-3);
  display: grid;
  place-items: center;
  transition: all 0.15s;
  background: none;
  cursor: pointer;
}
.pf-row .actions button:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--tag-bg);
}
.pf-row .actions button.on {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.pf-row .actions svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pf-row .progress {
  height: 3px;
  background: var(--border);
  border-radius: 99px;
  margin-top: 8px;
  overflow: hidden;
}
.pf-row .progress .bar {
  height: 100%;
  background: var(--brand);
}

/* Sidebar */
.pf-side {
  position: sticky;
  top: 152px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pf-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
}
.pf-card.accent-l {
  border-left: 3px solid var(--brand);
}
.pf-card .h {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.topic-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.topic-chips a {
  font-size: 12px;
  padding: 5px 11px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 99px;
  color: var(--ink);
  transition: all 0.15s;
}
.topic-chips a.on {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  font-weight: 600;
}
.topic-chips a:hover:not(.on) {
  border-color: var(--brand);
  color: var(--brand);
}

.sub-card {
  background: var(--brand);
  color: #fff;
  border-radius: 14px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.sub-card::before {
  content: "DT";
  position: absolute;
  font-family: var(--italic);
  font-style: italic;
  font-size: 160px;
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.07);
  right: -20px;
  top: -20px;
  letter-spacing: -0.05em;
}
.sub-card .lbl {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.4px;
  opacity: 0.85;
  position: relative;
}
.sub-card h5 {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  margin: 6px 0 6px;
  position: relative;
  letter-spacing: -0.01em;
}
.sub-card .plan {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
}
.sub-card .plan .n {
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 600;
}
.sub-card .plan .l {
  font-size: 11px;
  opacity: 0.7;
}
.sub-card .btn {
  background: #fff;
  color: var(--brand);
  padding: 8px 14px;
  border-radius: 99px;
  font-size: 12.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  position: relative;
  text-decoration: none;
}
.sub-card .btn svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
}

.author-list {
  display: flex;
  flex-direction: column;
}
.author-row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 9px 0;
  border-top: 1px solid var(--border);
}
.author-row:first-child {
  border-top: 0;
  padding-top: 2px;
}
.author-row .av {
  width: 36px;
  height: 36px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--brand), #7d1418);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.author-row .nm {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.author-row .role {
  font-size: 11px;
  color: var(--text-3);
  font-family: var(--mono);
}
.author-row .pill {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 99px;
  background: var(--paper);
  color: var(--text-2);
  border: 1px solid var(--border);
}
.author-row .pill.on {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

/* ── Profile tab panels ── */
.pf-panel {
  display: none;
}
.pf-panel.active {
  display: block;
}

/* Saved grid */
.pf-saved-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pf-saved-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.2s;
}
.pf-saved-card:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(193, 39, 45, 0.08);
}
.pf-saved-card .ph {
  aspect-ratio: 16/9;
  background: var(--cream) center/cover no-repeat;
  position: relative;
}
.pf-saved-card .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pf-saved-card .ph .save {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 99px;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(193, 39, 45, 0.35);
}
.pf-saved-card .ph .save svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
  stroke: none;
}
.pf-saved-card .body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.pf-saved-card .cat {
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background: var(--tag-bg);
  padding: 3px 9px;
  border-radius: 99px;
}
.pf-saved-card h4 {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--ink);
  margin: 0;
  line-height: 1.22;
  letter-spacing: -0.005em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pf-saved-card .foot {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--text-3);
  font-family: var(--mono);
  display: flex;
  justify-content: space-between;
}

/* Topics */
.pf-topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.pf-topic {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 14px;
  align-items: center;
  transition: all 0.15s;
}
.pf-topic:hover {
  border-color: var(--brand);
}
.pf-topic .ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--tag-bg);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-family: var(--italic);
  font-style: italic;
  font-size: 20px;
  font-weight: 400;
}
.pf-topic .info .nm {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.pf-topic .info .stat {
  font-size: 11.5px;
  color: var(--text-3);
  font-family: var(--mono);
  margin-top: 2px;
}
.pf-topic .info .stat .new {
  color: var(--brand);
  font-weight: 600;
}
.pf-topic .toggle {
  padding: 5px 12px;
  border-radius: 99px;
  background: var(--brand);
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
  border: 1px solid var(--brand);
  cursor: pointer;
  font-family: var(--sans);
  transition: all 0.15s;
}
.pf-topic .toggle.off {
  background: transparent;
  color: var(--text-2);
  border-color: var(--border);
}

/* Following */
.pf-follow-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.pf-follow {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 14px;
  align-items: center;
  transition: all 0.15s;
}
.pf-follow:hover {
  border-color: var(--brand);
}
.pf-follow .av {
  width: 56px;
  height: 56px;
  border-radius: 99px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.pf-follow .info .nm {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
}
.pf-follow .info .nm .v {
  width: 14px;
  height: 14px;
  border-radius: 99px;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
}
.pf-follow .info .nm .v svg {
  width: 8px;
  height: 8px;
  stroke: currentColor;
  fill: none;
  stroke-width: 3;
}
.pf-follow .info .role {
  font-size: 12px;
  color: var(--text-2);
  font-family: var(--mono);
  margin-top: 2px;
}
.pf-follow .info .stat {
  font-size: 11px;
  color: var(--text-3);
  font-family: var(--mono);
  margin-top: 4px;
}
.pf-follow .btn {
  padding: 7px 14px;
  border-radius: 99px;
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--sans);
  transition: all 0.15s;
}
.pf-follow .btn.on {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

/* Comments */
.pf-comments {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pf-comment {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  transition: border-color 0.15s;
}
.pf-comment:hover {
  border-color: var(--brand);
}
.pf-comment .on-article {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.pf-comment .on-article a {
  color: var(--brand);
}
.pf-comment h5 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  margin: 0 0 12px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.pf-comment .body {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0 0 12px;
  padding-left: 14px;
  border-left: 3px solid var(--tag-bg);
}
.pf-comment .foot {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--text-3);
  flex-wrap: wrap;
}
.pf-comment .foot .item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.pf-comment .foot svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.pf-comment .foot .like {
  color: var(--brand);
  font-weight: 500;
  font-family: var(--sans);
}

/* Newsletter cards */
.pf-nl-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pf-nl {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 18px;
  align-items: center;
  transition: all 0.15s;
}
.pf-nl:hover {
  border-color: var(--brand);
}
.pf-nl.subscribed {
  border-left: 3px solid var(--brand);
}
.pf-nl .cover {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  color: #fff;
  font-family: var(--italic);
  font-style: italic;
  font-size: 26px;
  font-weight: 400;
  display: grid;
  place-items: center;
}
.pf-nl .info .nm {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.pf-nl .info .meta {
  font-size: 12px;
  color: var(--text-2);
  font-family: var(--mono);
  margin-top: 4px;
}
.pf-nl .info p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
  margin: 6px 0 0;
  max-width: 540px;
}
.pf-nl .actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: end;
}
.pf-nl .toggle-pill {
  padding: 7px 16px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
  border: 1px solid transparent;
  font-family: var(--sans);
}
.pf-nl .toggle-pill.on {
  background: var(--brand);
  color: #fff;
}
.pf-nl .toggle-pill.off {
  background: var(--paper);
  color: var(--text-2);
  border-color: var(--border);
}
.pf-nl .preview-link {
  font-size: 11.5px;
  color: var(--text-3);
  font-family: var(--mono);
  cursor: pointer;
}

/* Profile responsive */
@media (max-width: 980px) {
  .pf-header-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pf-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .pf-name {
    font-size: 30px;
  }
  .pf-stats {
    grid-template-columns: repeat(5, 1fr);
  }
  .pf-stat {
    padding: 14px 8px;
  }
  .pf-stat .n {
    font-size: 22px;
  }
  .pf-shell {
    grid-template-columns: 1fr;
  }
  .pf-side {
    position: static;
  }
  .pf-row {
    grid-template-columns: 100px 1fr;
  }
  .pf-row .thumb {
    width: 100px;
  }
  .pf-row .actions {
    grid-column: 2;
    justify-self: end;
  }
  .pf-saved-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pf-topics-grid,
  .pf-follow-grid {
    grid-template-columns: 1fr;
  }
  .pf-nl {
    grid-template-columns: 48px 1fr;
    gap: 12px;
  }
  .pf-nl .actions {
    grid-column: 2;
    align-items: start;
    flex-direction: row;
  }
  .pf-nl .cover {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}
@media (max-width: 560px) {
  .pf-cover {
    height: 160px;
  }
  .pf-av {
    width: 88px;
    height: 88px;
    font-size: 36px;
    border-width: 4px;
  }
  .pf-header-row {
    margin-top: -44px;
  }
  .pf-name {
    font-size: 26px;
  }
  .pf-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .pf-stat:nth-child(4),
  .pf-stat:nth-child(5) {
    border-top: 1px solid var(--border);
  }
  .pf-stat:nth-child(3) {
    border-right: 0;
  }
  .pf-row {
    grid-template-columns: 1fr;
  }
  .pf-row .thumb {
    width: 100%;
    aspect-ratio: 16/9;
  }
  .pf-saved-grid {
    grid-template-columns: 1fr;
  }
}

/* ─────────────────────────────────────────────
   DTNews Channel Profile
   ───────────────────────────────────────────── */

.ch-cover {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: var(--cream);
}
.ch-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ch-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 14, 17, 0.1),
    rgba(14, 14, 17, 0.55)
  );
}
.ch-cover .live-bar {
  position: absolute;
  top: 18px;
  left: 20px;
  z-index: 2;
  background: var(--brand);
  color: #fff;
  padding: 7px 14px;
  border-radius: 6px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.4px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 14px rgba(193, 39, 45, 0.35);
}
.ch-cover .live-bar::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: #fff;
  animation: blink 1.4s infinite;
}
.ch-cover .watching {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 2;
  background: rgba(14, 14, 17, 0.6);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 7px 12px;
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.ch-cover .watching svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.ch-cover .play-now {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
  z-index: 2;
  cursor: pointer;
  border: none;
}
.ch-cover .play-now svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
.ch-cover .play-now::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 99px;
  animation: pulseRing 2s infinite;
}
@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
@keyframes blink {
  50% {
    opacity: 0.35;
  }
}

.ch-header {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  padding: 0 0 28px;
}
.ch-header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: end;
  margin-top: -64px;
  position: relative;
}
.ch-logo {
  width: 140px;
  height: 140px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--brand), #7d1418);
  border: 6px solid var(--paper);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--display, var(--sans));
  font-weight: 800;
  font-size: 56px;
  letter-spacing: -0.04em;
  box-shadow: 0 10px 32px rgba(193, 39, 45, 0.3);
  flex-shrink: 0;
  position: relative;
}
.ch-logo .live-dot {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 24px;
  height: 24px;
  border-radius: 99px;
  background: var(--brand);
  border: 4px solid var(--paper);
  animation: pulseDot 1.6s infinite;
}
@keyframes pulseDot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(193, 39, 45, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(193, 39, 45, 0);
  }
}

.ch-info {
  padding-bottom: 14px;
  min-width: 0;
}
.ch-name {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 44px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.ch-name .verified {
  font-family: var(--sans);
  font-style: normal;
  background: var(--brand);
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 99px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.ch-name .verified svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ch-handle {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 12px;
}
.ch-tagline {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0 0 12px;
  max-width: 600px;
}
.ch-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--text-3);
  font-family: var(--mono);
}
.ch-meta .item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.ch-meta svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.ch-meta b {
  color: var(--ink);
  font-weight: 500;
  font-family: var(--sans);
}

.ch-actions {
  display: flex;
  gap: 8px;
  padding-bottom: 14px;
  flex-shrink: 0;
}
.ch-actions .btn {
  padding: 10px 20px;
  border-radius: 99px;
  font-size: 13.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.15s;
  cursor: pointer;
  border: none;
}
.ch-actions .btn.primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 6px 18px rgba(193, 39, 45, 0.25);
}
.ch-actions .btn.primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
}
.ch-actions .btn.primary.on {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--border);
  box-shadow: none;
}
.ch-actions .btn.primary.on:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.ch-actions .btn.secondary {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--border);
}
.ch-actions .btn.secondary:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.ch-actions .btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ch-stats {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.ch-stat {
  padding: 18px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ch-stat:last-child {
  border-right: 0;
}
.ch-stat .n {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  color: var(--brand);
  letter-spacing: -0.01em;
  line-height: 1;
}
.ch-stat .l {
  font-size: 10.5px;
  color: var(--text-2);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-weight: 600;
}

.ch-tabs {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 64px;
  z-index: 60;
}
.ch-tabs-row {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.ch-tabs-row::-webkit-scrollbar {
  display: none;
}
.ch-tab {
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
  font-family: var(--sans);
}
.ch-tab:hover {
  color: var(--brand);
}
.ch-tab.active {
  color: var(--brand);
  font-weight: 600;
  border-bottom-color: var(--brand);
}
.ch-tab .ct {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
}
.ch-tab.active .ct {
  color: var(--brand);
}
.ch-tab svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.ch-shell {
  padding: 32px 0 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: start;
}

.ch-sec-h {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
}
.ch-sec-h h2 {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 30px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0;
}
.ch-sec-h .link {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.ch-sec-h .link:hover {
  color: var(--accent);
}

.ch-panel {
  display: none;
}
.ch-panel.active {
  display: block;
}

.ch-live {
  background: #0e0e11;
  color: #fff;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 28px;
  border: 1px solid var(--border);
}
.ch-live-vid {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--cream) center/cover no-repeat;
}
.ch-live-vid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ch-live-vid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    transparent 30%,
    rgba(0, 0, 0, 0.7)
  );
}
.ch-live-vid .tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--brand);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ch-live-vid .tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: #fff;
  animation: blink 1.4s infinite;
}
.ch-live-vid .watching {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.ch-live-vid .watching svg {
  width: 13px;
  height: 13px;
}
.ch-live-vid .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--brand);
  display: grid;
  place-items: center;
  z-index: 2;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}
.ch-live-vid .play svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}
.ch-live-vid .bottom {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  color: #fff;
}
.ch-live-vid .show {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.ch-live-vid h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.01em;
  max-width: 80%;
}
.ch-live-info {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #1a1a22;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.ch-live-info .anchor {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ch-live-info .av {
  width: 40px;
  height: 40px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--brand), #7d1418);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.ch-live-info .who {
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
}
.ch-live-info .role {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--mono);
}
.ch-live-info .spacer {
  flex: 1;
}
.ch-live-info .btn-watch {
  background: var(--brand);
  color: #fff;
  padding: 9px 20px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  cursor: pointer;
}
.ch-live-info .btn-watch svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}
.ch-live-info .btn-watch:hover {
  background: var(--accent);
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.schedule-row {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  align-items: center;
  transition: all 0.15s;
}
.schedule-row:hover {
  border-color: var(--brand);
}
.schedule-row.live {
  border-left: 3px solid var(--brand);
  background: linear-gradient(90deg, var(--tag-bg) 0%, var(--paper) 30%);
}
.schedule-row .time {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  color: var(--brand);
  line-height: 1;
  text-align: center;
}
.schedule-row .time .pm {
  font-size: 11px;
  color: var(--text-3);
  font-family: var(--mono);
  font-style: normal;
  display: block;
  margin-top: 3px;
}
.schedule-row .info .nm {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.schedule-row .info .host {
  font-size: 12px;
  color: var(--text-3);
  font-family: var(--mono);
  margin-top: 2px;
}
.schedule-row .badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  padding: 4px 9px;
  border-radius: 4px;
}
.schedule-row.live .badge {
  background: var(--brand);
  color: #fff;
}
.schedule-row .badge.upcoming {
  background: var(--cream);
  color: var(--text-2);
}
.schedule-row .badge.replay {
  background: var(--paper);
  color: var(--text-3);
  border: 1px solid var(--border);
}

.shows-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.show-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.2s;
}
.show-card:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(193, 39, 45, 0.08);
}
.show-card .ph {
  aspect-ratio: 16/10;
  background: var(--cream) center/cover no-repeat;
  position: relative;
  overflow: hidden;
}
.show-card .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.show-card:hover .ph img {
  transform: scale(1.04);
}
.show-card .ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14, 14, 17, 0.6));
}
.show-card .ph .when {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: rgba(14, 14, 17, 0.85);
  color: #fff;
  padding: 4px 9px;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.show-card .ph .live-tag {
  background: var(--brand);
  color: #fff;
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: 1.2px;
  font-size: 10px;
}
.show-card .ph .live-tag::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 99px;
  background: var(--accent);
  animation: blink 1.4s infinite;
}
.show-card .ph .upcoming::before {
  display: none;
}
.show-card .ph .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand);
  display: grid;
  place-items: center;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.2s;
}
.show-card:hover .ph .play {
  opacity: 1;
}
.show-card .ph .play svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.show-card .body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.show-card .cat {
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background: var(--tag-bg);
  padding: 3px 9px;
  border-radius: 99px;
}
.show-card h3 {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  color: var(--ink);
  margin: 2px 0 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.show-card .host {
  font-size: 12.5px;
  color: var(--text-2);
  font-family: var(--mono);
}
.show-card .foot {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--text-3);
  font-family: var(--mono);
  display: flex;
  justify-content: space-between;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.video-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}
.video-card:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(193, 39, 45, 0.08);
}
.video-card .ph {
  aspect-ratio: 16/9;
  position: relative;
  background: var(--cream) center/cover no-repeat;
  overflow: hidden;
}
.video-card .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.video-card:hover .ph img {
  transform: scale(1.04);
}
.video-card .ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(14, 14, 17, 0.55));
}
.video-card .ph .dur {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(14, 14, 17, 0.85);
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 2;
}
.video-card .ph .live-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--brand);
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  z-index: 2;
}
.video-card .ph .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--brand);
  display: grid;
  place-items: center;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.2s;
  border: none;
  cursor: pointer;
}
.video-card:hover .ph .play {
  opacity: 1;
}
.video-card .ph .play svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.video-card .body {
  padding: 13px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.video-card .cat {
  font-size: 10px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.video-card h4 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-card .meta {
  margin-top: auto;
  padding-top: 8px;
  font-size: 11px;
  color: var(--text-3);
  font-family: var(--mono);
  display: flex;
  justify-content: space-between;
}

.ch-news-list {
  display: flex;
  flex-direction: column;
}
.ch-news-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  align-items: center;
  transition: all 0.15s;
}
.ch-news-row:first-child {
  border-top: 0;
  padding-top: 4px;
}
.ch-news-row:hover h4 {
  color: var(--brand);
}
.ch-news-row .thumb {
  width: 180px;
  aspect-ratio: 16/10;
  border-radius: 10px;
  overflow: hidden;
  background: var(--cream) center/cover no-repeat;
}
.ch-news-row .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ch-news-row .info .cat {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.ch-news-row h4 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}
.ch-news-row .desc {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.5;
  margin: 6px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ch-news-row .meta {
  margin-top: 8px;
  font-size: 11.5px;
  color: var(--text-3);
  font-family: var(--mono);
  display: flex;
  gap: 12px;
}
.ch-news-row .meta b {
  color: var(--ink);
  font-weight: 500;
  font-family: var(--sans);
}

.anchor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.anchor-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}
.anchor-card:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(193, 39, 45, 0.08);
}
.anchor-card .ph {
  aspect-ratio: 4/5;
  background: var(--cream) center/cover no-repeat;
  position: relative;
}
.anchor-card .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.anchor-card .ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(14, 14, 17, 0.6));
}
.anchor-card .ph .role {
  position: absolute;
  bottom: 10px;
  left: 12px;
  right: 12px;
  z-index: 2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: #fff;
  text-transform: uppercase;
}
.anchor-card .ph .on-air {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: var(--brand);
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.anchor-card .ph .on-air::before {
  content: "";
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 99px;
  animation: blink 1.4s infinite;
}
.anchor-card .body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.anchor-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}
.anchor-card .show-line {
  font-size: 12px;
  color: var(--text-2);
  font-family: var(--mono);
}
.anchor-card .bio {
  font-size: 12.5px;
  color: var(--text-2);
  line-height: 1.5;
  margin: 4px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.anchor-card .foot {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 6px;
}
.anchor-card .foot .btn {
  flex: 1;
  padding: 7px 0;
  text-align: center;
  border-radius: 99px;
  font-size: 11.5px;
  font-weight: 600;
  display: block;
}
.anchor-card .foot .btn.primary {
  background: var(--brand);
  color: #fff;
}
.anchor-card .foot .btn.primary:hover {
  background: var(--accent);
}
.anchor-card .foot .btn.secondary {
  background: var(--paper);
  color: var(--text-2);
  border: 1px solid var(--border);
}
.anchor-card .foot .btn.secondary:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.about-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.about-block {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}
.about-block .h {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.about-block .h::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--brand);
}
.about-block h3 {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.about-block p {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-2);
  margin: 0 0 12px;
}
.about-block p:last-child {
  margin-bottom: 0;
}
.about-block ul {
  padding-left: 20px;
  margin: 0;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}
.about-block ul li::marker {
  color: var(--brand);
}
.about-band .award-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.about-band .award {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
}
.about-band .award .yr {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--brand);
  font-weight: 600;
}
.about-band .award .nm {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ink);
  margin-top: 4px;
  line-height: 1.35;
}
.about-band .contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.about-band .contact-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
}
.about-band .contact-item .ic {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--tag-bg);
  color: var(--brand);
  display: grid;
  place-items: center;
}
.about-band .contact-item .ic svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.about-band .contact-item .lbl {
  font-size: 10.5px;
  color: var(--text-3);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-weight: 600;
}
.about-band .contact-item .v {
  font-size: 13px;
  color: var(--ink);
  font-family: var(--mono);
  margin-top: 2px;
}

.ch-side {
  position: sticky;
  top: 160px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ch-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
}
.ch-card.accent-l {
  border-left: 3px solid var(--brand);
}
.ch-card .h {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ch-card .h .live-mini {
  background: var(--brand);
  color: #fff;
  font-size: 9.5px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.ch-card .h .live-mini::before {
  content: "";
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 99px;
  animation: blink 1.4s infinite;
}

.about-list {
  display: flex;
  flex-direction: column;
}
.about-row {
  padding: 8px 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--text-2);
}
.about-row:first-of-type {
  border-top: 0;
  padding-top: 0;
}
.about-row b {
  color: var(--ink);
  font-weight: 500;
  font-family: var(--sans);
}
.about-row .v {
  font-family: var(--mono);
  color: var(--ink);
  font-weight: 500;
}

.platform-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.platform-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--bg);
  transition: all 0.15s;
}
.platform-row:hover {
  background: var(--tag-bg);
}
.platform-row .ic {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 11px;
}
.platform-row .nm {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.platform-row .ch-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
}

.anchor-list {
  display: flex;
  flex-direction: column;
}
.anchor-row {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid var(--border);
}
.anchor-row:first-of-type {
  border-top: 0;
  padding-top: 2px;
}
.anchor-row .av {
  width: 38px;
  height: 38px;
  border-radius: 99px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), #7d1418);
}
.anchor-row .nm {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.anchor-row .show-line {
  font-size: 11.5px;
  color: var(--text-3);
  font-family: var(--mono);
  margin-top: 1px;
}
.anchor-row .pill {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--brand);
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--tag-bg);
  letter-spacing: 0.6px;
}

@media (max-width: 980px) {
  .ch-header-row {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: -54px;
  }
  .ch-name {
    font-size: 32px;
  }
  .ch-actions {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .ch-shell {
    grid-template-columns: 1fr;
  }
  .ch-side {
    position: static;
  }
  .ch-stats {
    grid-template-columns: repeat(5, 1fr);
  }
  .ch-stat {
    padding: 14px 8px;
  }
  .ch-stat .n {
    font-size: 24px;
  }
  .schedule-grid {
    grid-template-columns: 1fr;
  }
  .shows-grid {
    grid-template-columns: 1fr 1fr;
  }
  .video-grid {
    grid-template-columns: 1fr 1fr;
  }
  .anchor-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-band .award-grid,
  .about-band .contact-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .ch-cover {
    height: 180px;
  }
  .ch-cover .play-now {
    width: 56px;
    height: 56px;
  }
  .ch-cover .play-now svg {
    width: 20px;
    height: 20px;
  }
  .ch-logo {
    width: 96px;
    height: 96px;
    font-size: 38px;
    border-width: 4px;
    border-radius: 16px;
  }
  .ch-name {
    font-size: 26px;
  }
  .ch-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .ch-stat:nth-child(4),
  .ch-stat:nth-child(5) {
    border-top: 1px solid var(--border);
  }
  .ch-stat:nth-child(3) {
    border-right: 0;
  }
  .shows-grid {
    grid-template-columns: 1fr;
  }
  .ch-live-vid h3 {
    font-size: 16px;
    max-width: 100%;
  }
  .video-grid,
  .anchor-grid {
    grid-template-columns: 1fr;
  }
  .ch-news-row {
    grid-template-columns: 1fr;
  }
  .ch-news-row .thumb {
    width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════
   CATEGORY LISTING PAGE
   ═══════════════════════════════════════════════════════ */

/* Category hero */
.cat-hero {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  padding: 36px 0 40px;
}
.cat-hero-row {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: center;
}
.cat-crumbs {
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--text-2);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cat-crumbs a:hover {
  color: var(--brand);
}
.cat-crumbs .sep {
  color: var(--text-3);
}
.cat-h1 {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 56px;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
  margin: 0 0 14px;
}
.cat-desc {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 0 18px;
}
.cat-stats {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.cat-badge {
  background: var(--brand);
  color: #fff;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 99px;
  letter-spacing: 0.4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cat-badge .dot {
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 99px;
  opacity: 0.8;
}
.cat-meta-mini {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--text-2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cat-meta-mini .live {
  color: var(--brand);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.cat-meta-mini .live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--brand);
  animation: blink 1.4s infinite;
}
.cat-hero-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 2/1;
  background: var(--cream);
}
.cat-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cat-hero-img .last {
  position: absolute;
  left: 14px;
  bottom: 12px;
  background: rgba(255, 255, 255, 0.92);
  padding: 5px 10px;
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-2);
}
.cat-hero-img .last b {
  color: var(--brand);
  font-weight: 600;
}

/* Subcategory tabs */
.subtabs {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 72px;
  z-index: 70;
}
.subtabs-row {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.subtabs-row::-webkit-scrollbar {
  display: none;
}
.subtab {
  flex-shrink: 0;
  padding: 16px 20px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition:
    color 0.15s,
    border-color 0.15s;
  white-space: nowrap;
}
.subtab:hover {
  color: var(--brand);
}
.subtab.active {
  color: var(--brand);
  border-bottom-color: var(--brand);
  font-weight: 600;
}
.subtab .num {
  margin-left: 6px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
  font-weight: 500;
}
.subtab.active .num {
  color: var(--brand);
}

/* Filter bar */
.filterbar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.filterbar-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.filter-side,
.sort-side {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-lbl {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-2);
  margin-right: 4px;
  font-weight: 500;
}
.fchip {
  background: var(--paper);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.fchip:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.fchip.active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(193, 39, 45, 0.22);
}
.fchip svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.fchip.active svg {
  stroke: #fff;
}
.sort-sel {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 12px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
}
.view-toggle {
  display: inline-flex;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 3px;
  gap: 2px;
}
.view-toggle button {
  width: 30px;
  height: 28px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: var(--text-3);
  border: none;
  background: none;
  cursor: pointer;
}
.view-toggle button.on {
  background: var(--brand);
  color: #fff;
}
.view-toggle svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* Section */
.section-wrap {
  padding: 32px 0;
}

/* Featured card */
.featured {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 340px;
}
.featured-img {
  background: var(--cream) center/cover no-repeat;
  position: relative;
  min-height: 340px;
}
.featured-img .frame {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.featured-img .live-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--brand);
  color: #fff;
  padding: 6px 11px;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.4px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.featured-img .live-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: #fff;
  animation: blink 1.4s infinite;
}
.featured-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.featured-label {
  display: inline-flex;
  background: var(--tag-bg);
  color: var(--brand);
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 5px 11px;
  border-radius: 20px;
  text-transform: uppercase;
  align-self: flex-start;
}
.featured-body h2 {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 34px;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 4px 0 6px;
  text-wrap: pretty;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.featured-body .lede {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.featured-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--text-2);
  margin-top: 4px;
}
.featured-meta .av {
  width: 28px;
  height: 28px;
  border-radius: 99px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--brand), #7d1418);
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  display: grid;
  place-items: center;
}
.featured-meta .who {
  color: var(--ink);
  font-weight: 500;
}
.featured-meta .sep {
  width: 3px;
  height: 3px;
  background: var(--text-3);
  border-radius: 99px;
}
.featured-meta .stat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--mono);
  font-size: 12px;
}
.featured-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.featured-foot a {
  color: var(--brand);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition:
    gap 0.15s,
    color 0.15s;
}
.featured-foot a:hover {
  color: var(--accent);
  gap: 8px;
}
.featured-foot .icns {
  display: flex;
  gap: 6px;
}
.featured-foot .icn-btn {
  width: 34px;
  height: 34px;
  border-radius: 99px;
  border: 1px solid var(--border);
  background: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--text-2);
  transition: all 0.15s;
}
.featured-foot .icn-btn:hover {
  background: var(--tag-bg);
  color: var(--brand);
  border-color: var(--tag-bg);
}
.featured-foot .icn-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Main grid */
.main-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 36px;
  margin-top: 36px;
  align-items: start;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 18px;
}
.section-head h2 {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0;
}
.section-head .count-mini {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--text-3);
}

/* Article cards */
.card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(193, 39, 45, 0.08);
}
.card-img {
  position: relative;
  height: 180px;
  background: var(--cream) center/cover no-repeat;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.card:hover .card-img img {
  transform: scale(1.05);
}
.card-img .play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand);
  display: grid;
  place-items: center;
}
.card-img .play-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.card-img .premium-lock {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, #fcd34d, #b45309);
  color: #fff;
  padding: 3px 7px;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.card-img .premium-lock svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
}
.card-img .duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(15, 15, 15, 0.85);
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 11px;
}
.card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.card-tag {
  align-self: flex-start;
  background: var(--tag-bg);
  color: var(--brand);
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 9px;
  border-radius: 99px;
  text-transform: uppercase;
}
.card h3 {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin: 2px 0;
  text-wrap: pretty;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card .excerpt {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-foot {
  margin-top: auto;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
  font-size: 11.5px;
  color: var(--text-2);
}
.card-foot .who {
  font-weight: 500;
  color: var(--ink);
}
.card-foot .who-sep {
  color: var(--text-3);
  margin: 0 6px;
}
.card-foot .time {
  font-family: var(--mono);
  color: var(--text-3);
}
.card-foot .icns {
  display: flex;
  gap: 4px;
}
.card-foot .icn-btn {
  width: 26px;
  height: 26px;
  border-radius: 99px;
  background: none;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--text-3);
  transition: all 0.15s;
}
.card-foot .icn-btn:hover {
  background: var(--tag-bg);
  color: var(--brand);
}
.card-foot .icn-btn svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Grid / list views */
.grid-view {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.list-view {
  display: flex;
  flex-direction: column;
}
.list-view .card {
  flex-direction: row;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-bottom: 1px solid var(--border);
  transform: none !important;
  box-shadow: none !important;
  padding: 18px 0;
  gap: 22px;
}
.list-view .card:first-child {
  border-top: 1px solid var(--border);
}
.list-view .card:hover {
  background: transparent;
}
.list-view .card:hover h3 {
  color: var(--brand);
}
.list-view .card-img {
  width: 240px;
  height: 144px;
  flex-shrink: 0;
  border-radius: 10px;
}
.list-view .card-body {
  padding: 0;
  gap: 10px;
}
.list-view .card h3 {
  font-size: 22px;
  -webkit-line-clamp: 2;
}
.list-view .card .excerpt {
  font-size: 14px;
  -webkit-line-clamp: 3;
}

/* Pagination */
.pagination {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.pagination button,
.pagination a {
  width: 38px;
  height: 38px;
  border-radius: 99px;
  background: var(--paper);
  border: 1px solid var(--border);
  display: inline-grid;
  place-items: center;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}
.pagination .nav-arr {
  width: auto;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pagination button:hover:not(:disabled),
.pagination a:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.pagination button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.pagination button.active,
.pagination a.active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(193, 39, 45, 0.28);
}
.pagination .gap {
  color: var(--text-3);
  padding: 0 4px;
  border: 0;
  background: transparent;
  cursor: default;
}
.pagination .gap:hover {
  border: 0;
  color: var(--text-3);
}

/* Category sidebar — prefixed to avoid conflicts with article sidebar */
.cat-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
  position: sticky;
  top: 140px;
}
.cat-side-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
}
.cat-accent-left {
  border-left: 3px solid var(--brand);
}
.cat-accent-top {
  border-top: 3px solid var(--brand);
}
.cat-side-title {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cat-side-title.muted {
  color: var(--text-2);
}
.cat-live-pill {
  background: var(--brand);
  color: #fff;
  font-size: 9.5px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.cat-live-pill .dot {
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 99px;
  animation: blink 1.4s infinite;
}

/* Trending list */
.cat-most-list {
  display: flex;
  flex-direction: column;
}
.cat-most-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  text-decoration: none;
}
.cat-most-item:first-child {
  border-top: 0;
  padding-top: 2px;
}
.cat-rank {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 20px;
  color: var(--brand);
  line-height: 1.1;
  text-align: center;
}
.cat-most-item h5 {
  margin: 0;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.32;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cat-most-item:hover h5 {
  color: var(--brand);
}
.cat-views {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
  margin-top: 4px;
}

/* Browse list */
.cat-browse-list {
  display: flex;
  flex-direction: column;
}
.cat-browse-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 8px;
  margin: 0 -8px;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text-2);
  border-top: 1px solid var(--border);
  text-decoration: none;
  transition:
    color 0.15s,
    background 0.15s;
}
.cat-browse-item:first-child {
  border-top: 0;
}
.cat-browse-item:hover {
  color: var(--brand);
}
.cat-browse-item.active {
  background: var(--tag-bg);
  color: var(--brand);
  font-weight: 600;
  border-top-color: transparent;
}
.cat-arr {
  color: var(--text-3);
  font-size: 13px;
}
.cat-browse-item:hover .cat-arr,
.cat-browse-item.active .cat-arr {
  color: var(--brand);
}
.cat-cnt {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
  margin-left: auto;
  margin-right: 8px;
}

/* Breaking news */
.cat-brk-list {
  display: flex;
  flex-direction: column;
}
.cat-brk-item {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--border);
}
.cat-brk-item:first-child {
  border-top: 0;
  padding-top: 2px;
}
.cat-brk-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--brand);
  margin-top: 6px;
  flex-shrink: 0;
}
.cat-brk-text {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cat-brk-time {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
  margin-top: 3px;
}

/* Ad slot */
.cat-ad-slot {
  background: var(--cream);
  border: 1px dashed var(--border);
  border-radius: 14px;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-3);
}
.cat-ad-icon {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--text-3);
  border-radius: 8px;
  display: grid;
  place-items: center;
  margin-bottom: 6px;
}
.cat-ad-icon svg {
  width: 18px;
  height: 18px;
}
.cat-ad-lbl {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.cat-ad-size {
  font-family: var(--mono);
  font-size: 11px;
}

/* Scoped overrides — ensure article sidebar styles don't bleed in */
.cat-page .nl-h {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.cat-page .nl-p {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
  margin: 0 0 14px;
}

/* Category page responsive */
@media (max-width: 1100px) {
  .cat-hero-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cat-hero-img {
    max-width: 480px;
  }
  .cat-h1 {
    font-size: 44px;
  }
  .main-grid {
    grid-template-columns: 1fr;
  }
  .cat-sidebar {
    position: static;
  }
  .featured {
    grid-template-columns: 1fr;
  }
  .featured-img {
    min-height: 220px;
  }
  .grid-view {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .cat-h1 {
    font-size: 36px;
  }
  .featured-body {
    padding: 20px;
  }
  .featured-body h2 {
    font-size: 26px;
  }
  .grid-view {
    grid-template-columns: 1fr;
  }
  .list-view .card-img {
    width: 120px;
    height: 90px;
  }
  .list-view .card h3 {
    font-size: 16px;
  }
  .subtab {
    padding: 12px 14px;
    font-size: 13px;
  }
}

/* ═══════════════════════════════════════════════════════
   ARTICLE / NEWS DETAILS
   ═══════════════════════════════════════════════════════ */

/* Reading progress bar */
.reading-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  height: 3px;
  background: var(--brand);
  transition: width 0.1s linear;
  pointer-events: none;
}

/* Hero image */
.hero-img {
  width: 100%;
  max-height: 520px;
  aspect-ratio: 21/9;
  overflow: hidden;
  background: var(--cream);
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-caption {
  max-width: 1160px;
  margin: 0 auto;
  padding: 12px 40px 0;
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--text-2);
  font-style: italic;
}
.hero-caption b {
  font-style: normal;
  font-weight: 500;
  color: var(--ink);
}

/* Two-column shell */
.article-shell {
  max-width: 1160px;
  margin: 0 auto;
  padding: 32px 40px 64px;
  display: grid;
  grid-template-columns: minmax(0, 740px) 280px;
  gap: 56px;
  align-items: start;
  position: relative;
}
.article-col {
  min-width: 0;
}

/* Breadcrumbs */
.crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--text-2);
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.crumbs a {
  color: var(--text-2);
}
.crumbs a:hover {
  color: var(--brand);
}
.crumbs .sep {
  color: var(--text-3);
}
.crumbs .cat-chip {
  margin-left: 4px;
  background: var(--brand);
  color: #fff;
  padding: 3px 10px;
  border-radius: 99px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

/* Breaking tag */
.article-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--tag-bg);
  color: var(--brand);
  padding: 5px 13px;
  border-radius: 99px;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.article-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--brand);
  animation: blink 1.6s infinite;
}

/* Headline */
.article-h {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 20px;
  text-wrap: pretty;
}

/* Standfirst */
.standfirst {
  font-family: var(--sans);
  font-size: 17.5px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0 0 26px;
  text-wrap: pretty;
}

/* Meta row */
.meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 14px 0 16px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.meta-row .av {
  width: 38px;
  height: 38px;
  border-radius: 99px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--brand), #7d1418);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  display: grid;
  place-items: center;
}
.meta-row .who {
  font-family: var(--sans);
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 500;
}
.meta-row .who a {
  color: var(--brand);
}
.meta-row .sub {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--text-2);
}
.meta-row .dot {
  width: 3px;
  height: 3px;
  border-radius: 99px;
  background: var(--text-3);
  flex-shrink: 0;
}
.meta-row .stat {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.meta-row .grow {
  flex: 1;
}
.meta-row .actions {
  display: flex;
  gap: 6px;
}

/* Article body */
.article-body p {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.85;
  color: var(--ink);
  margin: 0 0 1.4em;
}
.article-body p.lede::first-letter {
  font-family: var(--italic);
  font-style: italic;
  color: var(--brand);
  font-weight: 400;
  font-size: 68px;
  line-height: 0.82;
  float: left;
  padding: 6px 10px 0 0;
  margin-top: 6px;
}
.article-body strong {
  font-weight: 600;
  color: var(--ink);
}
.article-body a {
  color: var(--brand);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.article-body h2 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  margin: 2.2em 0 0.7em;
  letter-spacing: -0.01em;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.article-body h2 .num {
  font-family: var(--italic);
  font-style: italic;
  color: var(--brand);
  font-size: 28px;
  font-weight: 400;
}

/* Pull quote */
.pullquote {
  border-left: 4px solid var(--brand);
  padding: 4px 0 4px 24px;
  margin: 28px 0;
  font-family: var(--italic);
  font-style: italic;
  font-size: 28px;
  line-height: 1.32;
  color: var(--brand);
  text-wrap: pretty;
}
.pullquote-by {
  margin-top: 10px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 12px;
  color: var(--text-2);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-weight: 500;
}

/* Factbox */
.factbox {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 24px;
  margin: 28px 0;
}
.factbox .head {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.factbox .head::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--brand);
}
.factbox ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.factbox li {
  position: relative;
  padding-left: 20px;
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink);
}
.factbox li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--brand);
}
.factbox li b {
  color: var(--ink);
  font-weight: 600;
}

/* Editor callout */
.callout {
  background: var(--cream);
  border-left: 3px solid var(--text-3);
  border-radius: 0 8px 8px 0;
  padding: 14px 20px;
  margin: 24px 0;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
}
.callout b {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 6px;
}

/* Inline figure */
.inline-img {
  margin: 28px 0;
}
.inline-img img {
  width: 100%;
  border-radius: 12px;
  background: var(--cream);
  display: block;
}
.inline-img figcaption {
  margin-top: 10px;
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--text-2);
  font-style: italic;
}
.inline-img figcaption b {
  font-style: normal;
  color: var(--ink);
  font-weight: 500;
}

/* Tags row */
.tags-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 36px 0 24px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.tags-row .lbl {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-2);
  margin-right: 4px;
}
.tag-pill {
  background: var(--tag-bg);
  color: var(--brand);
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  padding: 5px 13px;
  border-radius: 99px;
  transition:
    background 0.15s,
    color 0.15s;
}
.tag-pill:hover {
  background: var(--brand);
  color: #fff;
}

/* Author card */
.author-card {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 16px;
  align-items: start;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px;
  margin: 28px 0;
}
.author-av {
  width: 52px;
  height: 52px;
  border-radius: 99px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--brand), #7d1418);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  display: grid;
  place-items: center;
}
.author-info .name {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.author-info .role {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--text-2);
  margin-bottom: 10px;
}
.author-info p {
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0;
}
.author-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--brand);
  white-space: nowrap;
  margin-top: 4px;
}
.author-link:hover {
  opacity: 0.8;
}

/* Related articles */
.related-head {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 30px;
  color: var(--ink);
  margin: 36px 0 18px;
  letter-spacing: -0.01em;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.related-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  cursor: pointer;
}
.related-card:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(193, 39, 45, 0.08);
}
.related-card .img {
  aspect-ratio: 16/10;
  background: var(--cream);
  overflow: hidden;
}
.related-card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.related-card .body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.related-card .pill {
  align-self: flex-start;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--brand);
  text-transform: uppercase;
  background: var(--tag-bg);
  padding: 3px 8px;
  border-radius: 99px;
}
.related-card h4 {
  font-family: var(--serif);
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-card .meta {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--text-3);
}

/* Poll */
.poll {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 24px;
  margin: 32px 0;
}
.poll .ttl {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.poll .ttl::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--brand);
}
.poll h3 {
  font-family: var(--sans);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  margin: 0 0 16px;
}
.poll-opt {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: border-color 0.15s;
}
.poll-opt:hover {
  border-color: var(--brand);
}
.poll-opt.selected {
  border-color: var(--brand);
}
.poll-opt .fill {
  position: absolute;
  inset: 0;
  height: 100%;
  background: var(--tag-bg);
  z-index: 0;
  transition: width 0.4s ease;
}
.poll-opt.selected .fill {
  background: rgba(193, 39, 45, 0.12);
}
.poll-opt .row {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.poll-opt .left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
}
.poll-opt .radio {
  width: 16px;
  height: 16px;
  border-radius: 99px;
  flex-shrink: 0;
  border: 2px solid var(--border);
  background: #fff;
  transition:
    border-color 0.15s,
    background 0.15s;
}
.poll-opt.selected .radio {
  border-color: var(--brand);
  background: radial-gradient(
    circle at center,
    var(--brand) 45%,
    transparent 50%
  );
}
.poll-opt .pct {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
}
.poll-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  flex-wrap: wrap;
  gap: 10px;
}
.poll-foot .votes {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-2);
}
.btn-vote {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-vote:hover {
  background: var(--accent);
}

/* Comments */
.comments-head {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin: 32px 0 16px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.comments-head .count {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--text-2);
}
.comment-form {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  margin-bottom: 20px;
  align-items: start;
}
.comment-form textarea {
  width: 100%;
  min-height: 80px;
  resize: vertical;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  background: var(--paper);
  outline: none;
  transition: border-color 0.15s;
}
.comment-form textarea:focus {
  border-color: var(--brand);
}
.comment-form .controls {
  grid-column: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.comment-form .hint {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.4;
}
.btn-post {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 8px;
  flex-shrink: 0;
  background: var(--brand);
  color: #fff;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-post:hover {
  background: var(--accent);
}

.comment {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}
.comment.reply {
  padding-left: 10px;
}
.comment .av {
  width: 36px;
  height: 36px;
  border-radius: 99px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--brand), #7d1418);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  display: grid;
  place-items: center;
}
.comment .head {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.comment .who {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.comment .badge {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  background: var(--tag-bg);
  color: var(--brand);
  padding: 2px 7px;
  border-radius: 99px;
}
.comment .time {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--text-3);
  margin-left: auto;
}
.comment .body {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 10px;
}
.comment .actions {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 13px;
}
.comment .actions button,
.comment .actions a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text-2);
  transition: color 0.15s;
}
.comment .actions button:hover,
.comment .actions a:hover {
  color: var(--brand);
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
.side-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
}
.side-card.accent {
  border-left: 3px solid var(--brand);
}
.side-card.accent-top {
  border-top: 3px solid var(--brand);
}
.side-title {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.side-title .live {
  background: var(--brand);
  color: #fff;
  font-size: 9.5px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.side-title .live .dot {
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 99px;
  animation: blink 1.4s infinite;
}

.most-list {
  display: flex;
  flex-direction: column;
}
.most-item {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  padding: 11px 0;
  border-top: 1px solid var(--border);
  text-decoration: none;
}
.most-item:first-of-type {
  border-top: 0;
  padding-top: 0;
}
.most-item .rank {
  font-family: var(--italic);
  font-style: italic;
  font-size: 22px;
  color: var(--brand);
  line-height: 1;
  text-align: center;
  font-weight: 400;
}
.most-item h5 {
  margin: 0;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.most-item:hover h5 {
  color: var(--brand);
}
.most-item .views {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
  margin-top: 3px;
}

/* Ad slot */
.ad-slot {
  background: var(--cream);
  border: 1px dashed var(--border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 200px;
  text-align: center;
}
.ad-slot .ph-icon {
  color: var(--text-3);
}
.ad-slot .lbl {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-3);
}
.ad-slot .size {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
}

/* Breaking news sidebar */
.brk-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.brk-item {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 10px;
  align-items: start;
}
.brk-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--brand);
  margin-top: 5px;
  flex-shrink: 0;
}
.brk-item .text {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
  line-height: 1.4;
}
.brk-item .time {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--text-3);
  margin-top: 3px;
}

/* Newsletter card */
.nl-card {
}
.nl-h {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.nl-card p {
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--text-2);
  margin: 0 0 12px;
  line-height: 1.5;
}
.nl-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  outline: none;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 8px;
  display: block;
}
.nl-input:focus {
  border-color: var(--brand);
  background: #fff;
}
.nl-btn {
  width: 100%;
  padding: 10px;
  background: var(--brand);
  color: #fff;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.nl-btn:hover {
  background: var(--accent);
}
.nl-card .note {
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--text-3);
  text-align: center;
  display: block;
}

/* Icon buttons (shared with meta row) */
.icn-btn {
  width: 34px;
  height: 34px;
  border-radius: 99px;
  border: 1px solid var(--border);
  background: transparent;
  display: grid;
  place-items: center;
  color: var(--text-2);
  cursor: pointer;
  transition:
    color 0.15s,
    border-color 0.15s,
    background 0.15s;
}
.icn-btn:hover {
  color: var(--brand);
  border-color: var(--brand);
  background: var(--tag-bg);
}

/* Inline SVG icons */
.icn {
  display: inline-block;
  vertical-align: middle;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icn-sm {
  width: 14px;
  height: 14px;
}

/* Share rail */
.share-rail {
  display: none; /* hidden on mobile, shown on wide layouts via sticky float */
}
@media (min-width: 1200px) {
  .share-rail {
    display: block;
    position: fixed;
    left: max(20px, calc(50% - 680px));
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }
}
.share-rail-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.share-rail .label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-3);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin-bottom: 4px;
}
.share-rail .stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 99px;
  border: 1px solid var(--border);
  background: var(--paper);
  display: grid;
  place-items: center;
  color: var(--text-2);
  transition:
    color 0.15s,
    border-color 0.15s,
    background 0.15s;
}
.share-btn svg {
  width: 15px;
  height: 15px;
  display: block;
}
.share-btn:hover {
  color: var(--brand);
  border-color: var(--brand);
  background: var(--tag-bg);
}

/* ── Article Responsive ── */
@media (max-width: 1100px) {
  .article-shell {
    grid-template-columns: minmax(0, 1fr);
    padding: 28px 24px 56px;
    gap: 36px;
  }
  .sidebar {
    position: static;
  }
  .article-h {
    font-size: 36px;
  }
  .standfirst {
    font-size: 16px;
  }
  .article-body p {
    font-size: 16px;
    line-height: 1.78;
  }
  .related-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-img {
    aspect-ratio: 16/9;
  }
  .hero-caption {
    padding: 12px 24px 0;
  }
  .author-card {
    grid-template-columns: 48px 1fr;
  }
  .author-link {
    grid-column: 1 / -1;
  }
}
@media (max-width: 640px) {
  .article-h {
    font-size: 28px;
  }
  .article-body p {
    font-size: 15.5px;
  }
  .article-body p.lede::first-letter {
    font-size: 54px;
  }
  .pullquote {
    font-size: 22px;
    padding-left: 18px;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
  .meta-row .sub {
    flex-wrap: wrap;
  }
  .meta-row .actions {
    margin-left: 0;
    width: 100%;
    justify-content: flex-start;
  }
  .article-shell {
    padding: 20px 16px 40px;
  }
  .hero-caption {
    padding: 10px 16px 0;
  }
  .author-card {
    grid-template-columns: 44px 1fr;
    padding: 16px;
  }
  .comment-form .controls {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE POLISH — Profile · Channel · Category · Subscribe
   Two targeted ranges so rules don't fight the page-specific
   560px / 680px / 980px breakpoints already in place above.
   ═══════════════════════════════════════════════════════ */

/* ── Tablet portrait  561 – 768 px ── */
@media (min-width: 561px) and (max-width: 768px) {
  /* Profile — condense stats row, pull name size */
  .pf-name {
    font-size: 28px;
  }
  .pf-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .pf-stat:nth-child(4),
  .pf-stat:nth-child(5) {
    border-top: 1px solid var(--border);
  }
  .pf-stat:nth-child(3) {
    border-right: 0;
  }

  /* Channel — same treatment */
  .ch-name {
    font-size: 28px;
  }
  .ch-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .ch-stat:nth-child(4),
  .ch-stat:nth-child(5) {
    border-top: 1px solid var(--border);
  }
  .ch-stat:nth-child(3) {
    border-right: 0;
  }

  /* Category — smaller title, scrollable filter chips */
  .cat-h1 {
    font-size: 36px;
  }
  .filter-side {
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }
  .filter-side::-webkit-scrollbar {
    display: none;
  }

  /* Subscribe — rein in the large headline, 2-col addons/testimonials */
  .sub-hero h1 {
    font-size: 42px;
  }
  .sub-hero .lede {
    font-size: 16px;
  }
  .compare-band h2,
  .testimonial-band h2,
  .sub-faq h2 {
    font-size: 32px;
  }
  .final-cta h2 {
    font-size: 30px;
  }
  .final-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .addons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Standard phone  ≤ 480 px ── */
@media (max-width: 480px) {
  /* ── Profile ── */
  .pf-cover {
    height: 140px;
  }
  .pf-av {
    width: 76px;
    height: 76px;
    font-size: 30px;
    border-width: 4px;
  }
  .pf-header-row {
    margin-top: -38px;
  }
  .pf-name {
    font-size: 22px;
    flex-wrap: wrap;
  }
  .pf-bio {
    font-size: 13.5px;
  }
  .pf-actions {
    flex-wrap: wrap;
  }
  .pf-tab {
    padding: 12px 10px;
    font-size: 12px;
    gap: 4px;
  }
  .pf-tab svg {
    width: 13px;
    height: 13px;
  }
  .pf-tab .ct {
    display: none;
  }
  .pf-stat {
    padding: 10px 4px;
  }
  .pf-stat .n {
    font-size: 18px;
  }
  .pf-stat .l {
    font-size: 9px;
    letter-spacing: 0.2px;
  }
  .pf-sec-h {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .pf-row {
    gap: 10px;
  }
  .pf-follow-grid {
    grid-template-columns: 1fr;
  }
  .pf-nl {
    grid-template-columns: 40px 1fr;
  }
  .pf-nl .cover {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  /* ── Channel ── */
  .ch-logo {
    width: 76px;
    height: 76px;
    font-size: 30px;
    border-width: 4px;
    border-radius: 14px;
  }
  .ch-header-row {
    margin-top: -38px;
  }
  .ch-name {
    font-size: 22px;
  }
  .ch-tagline {
    font-size: 13.5px;
  }
  .ch-actions {
    flex-wrap: wrap;
  }
  .ch-tab {
    padding: 12px 10px;
    font-size: 12px;
    gap: 4px;
  }
  .ch-tab svg {
    width: 13px;
    height: 13px;
  }
  .ch-tab .ct {
    display: none;
  }
  .ch-stat {
    padding: 10px 4px;
  }
  .ch-stat .n {
    font-size: 18px;
  }
  .ch-stat .l {
    font-size: 9px;
    letter-spacing: 0.2px;
  }
  .ch-sec-h {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .ch-sec-h h2 {
    font-size: 22px;
  }
  .ch-live-vid h3 {
    font-size: 14px;
  }
  .ch-live-info {
    flex-wrap: wrap;
    gap: 8px;
  }
  .ch-live-info .btn-watch {
    width: 100%;
    justify-content: center;
  }
  .shows-grid {
    grid-template-columns: 1fr;
  }
  .anchor-grid {
    grid-template-columns: 1fr;
  }

  /* ── Category ── */
  .cat-hero {
    padding: 20px 0 24px;
  }
  .cat-h1 {
    font-size: 26px;
  }
  .cat-desc {
    font-size: 13px;
  }
  .cat-stats {
    gap: 6px;
    flex-wrap: wrap;
  }
  .filterbar-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .filter-side {
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    width: 100%;
    padding-bottom: 2px;
  }
  .filter-side::-webkit-scrollbar {
    display: none;
  }
  .sort-side {
    width: 100%;
    justify-content: space-between;
  }
  .featured-body {
    padding: 16px;
  }
  .featured-body h2 {
    font-size: 20px;
  }
  .featured-meta {
    flex-wrap: wrap;
    gap: 6px;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .section-head h2 {
    font-size: 22px;
  }
  .pagination {
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
  }

  /* ── Subscribe ── */
  .sub-hero {
    padding: 28px 0;
  }
  .sub-hero h1 {
    font-size: 30px;
  }
  .sub-hero .lede {
    font-size: 14.5px;
  }
  .sub-hero::before {
    font-size: 200px;
    top: -30px;
  }
  .billing-toggle button {
    padding: 7px 12px;
    font-size: 12px;
  }
  .toggle-row .note {
    display: none;
  }
  .compare-band {
    padding: 36px 0;
  }
  .compare-band h2 {
    font-size: 26px;
  }
  .testimonial-band {
    padding: 36px 0;
  }
  .testimonial-band h2 {
    font-size: 26px;
  }
  .sub-faq {
    padding: 36px 0;
  }
  .sub-faq h2 {
    font-size: 26px;
  }
  .final-cta {
    padding: 36px 0;
  }
  .final-cta h2 {
    font-size: 26px;
  }
  .final-cta::before {
    display: none;
  }
  .final-cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .plan {
    padding: 20px 16px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SPLASH SCREEN
   ═══════════════════════════════════════════════════════════════ */

/* ── Page transition classes ─────────────────────────────────── */
.sp-page-hidden {
  opacity: 0;
  pointer-events: none;
}
.sp-page-visible {
  opacity: 1;
  transition: opacity 0.6s ease 0.1s;
}

/* ── Root overlay ─────────────────────────────────────────────── */
.sp-root {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0e0e11;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: sp-fade-in 0.3s ease both;
}
.sp-root.sp-exit {
  animation: sp-fade-out 0.7s ease both;
  pointer-events: none;
}

/* ── Background ──────────────────────────────────────────────── */
.sp-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Gradient orbs */
.sp-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: sp-orb-in 1.2s ease forwards;
}
.sp-orb-1 {
  width: 520px; height: 520px;
  top: -140px; left: -120px;
  background: radial-gradient(circle, rgba(193,39,45,0.28) 0%, transparent 70%);
  animation-delay: 0.1s;
}
.sp-orb-2 {
  width: 400px; height: 400px;
  bottom: -100px; right: -80px;
  background: radial-gradient(circle, rgba(193,39,45,0.18) 0%, transparent 70%);
  animation-delay: 0.3s;
}
.sp-orb-3 {
  width: 300px; height: 300px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(237,32,39,0.10) 0%, transparent 70%);
  animation-delay: 0.5s;
  animation-name: sp-orb-pulse;
  animation-duration: 2.4s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  opacity: 0.6;
}

/* Grid */
.sp-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 100%);
  animation: sp-fade-in 1s ease 0.4s both;
}

/* Particles */
.sp-particle {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(193,39,45,0.6);
  animation: sp-particle-float 4s ease-in-out infinite;
}
.sp-p-0  { top: 15%; left: 12%; animation-delay: 0s;    animation-duration: 3.8s; }
.sp-p-1  { top: 25%; left: 88%; animation-delay: 0.4s;  animation-duration: 4.2s; }
.sp-p-2  { top: 60%; left: 8%;  animation-delay: 0.8s;  animation-duration: 3.5s; }
.sp-p-3  { top: 75%; left: 92%; animation-delay: 1.2s;  animation-duration: 4.6s; }
.sp-p-4  { top: 35%; left: 5%;  animation-delay: 0.2s;  animation-duration: 3.2s; width: 2px; height: 2px; }
.sp-p-5  { top: 80%; left: 20%; animation-delay: 0.6s;  animation-duration: 4.0s; }
.sp-p-6  { top: 10%; left: 55%; animation-delay: 1.0s;  animation-duration: 3.7s; width: 2px; height: 2px; }
.sp-p-7  { top: 90%; left: 65%; animation-delay: 0.3s;  animation-duration: 4.3s; }
.sp-p-8  { top: 45%; left: 95%; animation-delay: 0.7s;  animation-duration: 3.9s; width: 2px; height: 2px; }
.sp-p-9  { top: 55%; left: 3%;  animation-delay: 1.1s;  animation-duration: 4.1s; }
.sp-p-10 { top: 20%; left: 40%; animation-delay: 0.9s;  animation-duration: 3.6s; width: 2px; height: 2px; opacity: 0.4; }
.sp-p-11 { top: 70%; left: 50%; animation-delay: 0.5s;  animation-duration: 4.4s; opacity: 0.4; }

/* Diagonal accent lines */
.sp-line {
  position: absolute;
  height: 1px;
  width: 200px;
  background: linear-gradient(90deg, transparent, rgba(193,39,45,0.3), transparent);
  animation: sp-line-sweep 2.4s ease-in-out infinite;
}
.sp-line-1 { top: 30%; left: 0; animation-delay: 0.6s; }
.sp-line-2 { bottom: 35%; right: 0; transform: rotate(180deg); animation-delay: 1.4s; }

/* ── Main content ─────────────────────────────────────────────── */
.sp-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
  padding: 2rem;
}

/* ── Logo ─────────────────────────────────────────────────────── */
.sp-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.125rem;
  animation: sp-logo-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.sp-logo-ring {
  position: absolute;
  width: 110px; height: 110px;
  border-radius: 50%;
  border: 1px solid rgba(193,39,45,0.25);
  animation: sp-ring-pulse 2s ease-in-out 0.8s infinite;
}

.sp-logo-mark {
  width: 88px; height: 88px;
  border-radius: 20px;
  background: rgba(193,39,45,0.1);
  border: 1.5px solid rgba(193,39,45,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(193,39,45,0.2), inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative;
}
.sp-logo-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.06) 0%, transparent 60%);
}

.sp-wordmark {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  line-height: 1;
}
.sp-dt {
  font-family: var(--font-geist-sans), system-ui, sans-serif;
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #C1272D;
}
.sp-news {
  font-family: var(--font-instrument-serif), Georgia, serif;
  font-size: 2.25rem;
  font-weight: 400;
  font-style: italic;
  color: #ffffff;
  letter-spacing: -0.02em;
}
.sp-wordmark .sp-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #C1272D;
  margin-left: 3px;
  margin-bottom: 4px;
  align-self: flex-end;
  box-shadow: 0 0 8px rgba(193,39,45,0.8);
}

/* ── Tagline ──────────────────────────────────────────────────── */
.sp-tagline {
  font-family: var(--font-geist-sans), system-ui, sans-serif;
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: 0;
  display: flex;
  gap: 0.4em;
}
.sp-tag-1 {
  animation: sp-fade-up 0.6s ease 0.9s both;
}
.sp-tag-2 {
  animation: sp-fade-up 0.6s ease 1.05s both;
  color: rgba(193,39,45,0.8);
}

/* ── Divider ──────────────────────────────────────────────────── */
.sp-divider {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(193,39,45,0.5), transparent);
  animation: sp-divider-grow 0.7s ease 1.1s both;
}

/* ── Loader ───────────────────────────────────────────────────── */
.sp-loader-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  animation: sp-fade-up 0.6s ease 1.2s both;
}

.sp-progress-track {
  width: 160px;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 99px;
  overflow: hidden;
}
.sp-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #C1272D, #ED2027);
  border-radius: 99px;
  animation: sp-progress-fill 2.2s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
  box-shadow: 0 0 8px rgba(193,39,45,0.6);
}

.sp-dots {
  display: flex;
  gap: 0.375rem;
}
.sp-dot-pulse {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(193,39,45,0.7);
  animation: sp-dot-bounce 1.2s ease-in-out infinite;
}
.sp-d1 { animation-delay: 0s; }
.sp-d2 { animation-delay: 0.2s; }
.sp-d3 { animation-delay: 0.4s; }

/* ── Brand footer ─────────────────────────────────────────────── */
.sp-brand {
  font-family: var(--font-geist-sans), system-ui, sans-serif;
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.2);
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: sp-fade-up 0.6s ease 1.4s both;
}
.sp-brand-name {
  color: rgba(255,255,255,0.4);
  font-weight: 700;
}

/* ── Keyframes ────────────────────────────────────────────────── */
@keyframes sp-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes sp-fade-out {
  from { opacity: 1; }
  to   { opacity: 0; }
}
@keyframes sp-logo-rise {
  from { opacity: 0; transform: translateY(24px) scale(0.85); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes sp-fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes sp-orb-in {
  from { opacity: 0; transform: scale(0.7); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes sp-orb-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1);   opacity: 0.5; }
  50%       { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}
@keyframes sp-ring-pulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  50%  { transform: scale(1.15); opacity: 0.2; }
  100% { transform: scale(1);   opacity: 0.6; }
}
@keyframes sp-particle-float {
  0%,100% { transform: translateY(0); opacity: 0.6; }
  50%      { transform: translateY(-16px); opacity: 1; }
}
@keyframes sp-line-sweep {
  0%   { transform: translateX(-100%); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateX(100vw); opacity: 0; }
}
@keyframes sp-divider-grow {
  from { width: 0; }
  to   { width: 200px; }
}
@keyframes sp-progress-fill {
  0%   { width: 0%; }
  30%  { width: 35%; }
  60%  { width: 65%; }
  85%  { width: 88%; }
  100% { width: 100%; }
}
@keyframes sp-dot-bounce {
  0%, 80%, 100% { transform: scale(0.8); opacity: 0.4; }
  40%           { transform: scale(1.2); opacity: 1; }
}

/* ── Reduced motion ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .sp-root, .sp-root *, .sp-root *::before, .sp-root *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
