/* ==========================================================================
   Archive templates — /articles/, /podcast/, /video-essays/.
   Shared page-hero component, three distinct list/grid bodies.
   ========================================================================== */

/* ========= SHARED PAGE HERO ========= */
.arc-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: end;
  padding: 32px 0 44px;
  /* No own rule — the framed filter band below carries the seam. */
  margin-bottom: 24px;
}
@media (min-width: 900px) {
  .arc-hero { grid-template-columns: 1.2fr 1fr; gap: 56px; }
}
.arc-hero .kicker {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.arc-hero .kicker::before {
  content: ""; display: inline-block;
  width: 10px; height: 10px;
  background: var(--accent);
}
.arc-hero h1 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(3rem, 7vw + 1rem, 9rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0;
  color: var(--ink);
}
.arc-hero h1 em { font-style: normal; font-weight: 800; color: inherit; }
.arc-hero .dek {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.125rem, 0.5vw + 1rem, 1.5rem);
  line-height: 1.4;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 0 18px;
}
.arc-hero .dek b { font-style: normal; font-weight: 700; color: var(--ink); }
.arc-hero .stats {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-mute);
  display: flex; gap: 20px; flex-wrap: wrap;
}
.arc-hero .stats b { color: var(--ink); font-weight: 600; }

/* ========= TOPIC FILTER CHIPS ========= */
.arc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 2vw, 32px);
  align-items: center;
  padding: 18px 0 20px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  margin-bottom: 40px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.arc-chips .chip {
  text-decoration: none;
  color: var(--ink);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.arc-chips .chip:hover {
  color: var(--ink-soft);
}
.arc-chips .chip.is-active {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

/* ========= TOPIC LABELS (on cards + singles — non-interactive text) ========= */
.ll-topic-labels {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.ll-topic-labels .t {
  color: var(--ink);
  font-weight: 500;
}
.ll-topic-labels .t + .t::before {
  content: "·";
  color: var(--ink-mute);
  margin-right: 12px;
  font-weight: 400;
}

/* ========= ARTICLES LIST (rows) ========= */
.arc-art-list { list-style: none; margin: 0; padding: 0; }
.arc-art-list > li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
  transition: background 0.15s;
}
@media (min-width: 800px) {
  .arc-art-list > li {
    grid-template-columns: 1fr 220px 100px;
    gap: 28px;
    padding: 32px 0;
  }
}
.arc-art-list > li:hover {
  background: rgba(255,198,95,0.08);
}
.arc-art-list > li:hover .ar-title a { color: var(--ink-soft); }

.arc-art-list .ar-mid .topic {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 8px;
}
.arc-art-list .ar-mid .topic b { color: var(--ink-mute); font-weight: 500; }
.arc-art-list .ar-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(1.5rem, 0.8vw + 1rem, 2rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}
.arc-art-list .ar-title a { text-decoration: none; color: inherit; transition: color 0.15s; }
.arc-art-list .ar-title em { font-style: normal; font-weight: 700; color: inherit; }
.arc-art-list .ar-mid p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.4;
  color: var(--ink-soft);
  margin: 0; max-width: 620px;
}

.arc-art-list .ar-byline {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-mute);
}
.arc-art-list .ar-byline b {
  color: var(--ink); font-weight: 400;
  display: block; margin-bottom: 4px;
  font-family: var(--serif); font-style: italic; font-size: 15px;
  letter-spacing: 0; text-transform: none;
}
.arc-art-list .ar-byline .date { display: block; margin-top: 4px; }

.arc-art-list .ar-read {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); text-align: left;
}
@media (min-width: 800px) { .arc-art-list .ar-read { text-align: right; } }
.arc-art-list .ar-read .big {
  font-family: var(--sans);
  font-weight: 800; font-style: normal;
  font-size: clamp(2rem, 1.5vw + 1rem, 2.75rem);
  line-height: 1; color: var(--ink);
  display: block; margin-bottom: 2px;
}
.arc-art-list .ar-read small { display: block; color: var(--ink-mute); }

/* ========= PODCAST LIST ========= */
.arc-pod-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 24px 0 36px;
  /* No own rule — the framed filter band directly below carries the seam. */
  margin-bottom: 8px;
}
@media (min-width: 900px) {
  .arc-pod-hero { grid-template-columns: 320px 1fr; gap: 48px; align-items: start; }
}
.arc-pod-hero .cover {
  background: var(--ink);
  color: var(--paper);
  padding: 24px;
  aspect-ratio: 1 / 1;
  display: flex; flex-direction: column; justify-content: space-between;
}
.arc-pod-hero .cover .show-kicker {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
}
.arc-pod-hero .cover h2 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(2.5rem, 4vw + 1rem, 4.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
}
.arc-pod-hero .cover h2 em { font-style: normal; font-weight: 800; color: var(--accent); }
.arc-pod-hero .cover .meta {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(242,236,222,0.6);
  display: flex; justify-content: space-between;
}
.arc-pod-hero .latest .kicker {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 10px;
}
.arc-pod-hero .latest h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(1.5rem, 1vw + 1rem, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
}
.arc-pod-hero .latest h3 a { text-decoration: none; color: inherit; }
.arc-pod-hero .latest h3 a:hover { color: var(--ink-soft); }
.arc-pod-hero .latest h3 em { font-style: normal; font-weight: 700; color: inherit; }
.arc-pod-hero .latest p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0 0 18px;
  max-width: 560px;
}
.arc-pod-hero .latest .listen-on {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-mute);
  display: flex; gap: 18px; align-items: center; flex-wrap: wrap;
}
.arc-pod-hero .latest .player {
  margin: 4px 0 20px;
}
.arc-pod-hero .latest .player iframe {
  display: block;
  width: 100%;
  height: 200px;
  border: 0;
  background: transparent;
}
.arc-pod-hero .latest .listen-on a {
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--ink); padding-bottom: 2px;
}

.arc-ep-list { list-style: none; margin: 0; padding: 0; }
.arc-ep-list > li {
  display: grid;
  /* auto column: the bold 800-weight numbers outgrew the old fixed 48px
     track and were jamming into the titles. Tabular figures keep the
     zero-padded numbers equal-width so rows still align. */
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
@media (min-width: 800px) {
  .arc-ep-list > li { grid-template-columns: auto 1fr 160px; gap: 32px; }
}
.arc-ep-list > li:hover { background: rgba(255,198,95,0.08); }
.arc-ep-list > li:hover .ep-title a { color: var(--ink-soft); }
.arc-ep-list .ep-num {
  font-family: var(--sans);
  font-weight: 800; font-style: normal;
  font-size: clamp(2rem, 2vw + 1rem, 3rem);
  line-height: 0.85;
  color: var(--ink);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.arc-ep-list .ep-topics { margin: 0 0 8px; }
.arc-ep-list .ep-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(1.25rem, 0.6vw + 1rem, 1.75rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.arc-ep-list .ep-title a { text-decoration: none; color: inherit; transition: color 0.15s; }
.arc-ep-list .ep-title em { font-style: normal; font-weight: 700; color: inherit; }
.arc-ep-list .ep-dek {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0 0 6px;
  max-width: 620px;
}
.arc-ep-list .ep-guest {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-mute);
}
.arc-ep-list .ep-guest b { color: var(--ink); font-weight: 500; }
.arc-ep-list .ep-meta {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-mute);
  text-align: left;
}
@media (min-width: 800px) { .arc-ep-list .ep-meta { text-align: right; } }
.arc-ep-list .ep-meta .big {
  font-family: var(--sans);
  font-weight: 800; font-style: normal;
  font-size: clamp(1.5rem, 1vw + 1rem, 2.25rem);
  line-height: 1;
  color: var(--ink);
  display: block; margin-bottom: 4px;
}

/* ========= VIDEOS GRID ========= */
.arc-vid-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 700px) { .arc-vid-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .arc-vid-grid { grid-template-columns: repeat(3, 1fr); gap: 48px 36px; } }
.arc-vid-grid .v-card {
  text-decoration: none; color: inherit;
  display: block;
}
.arc-vid-grid .v-card .thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--paper-2);
  border: 1px solid var(--ink);
  overflow: hidden;
  margin-bottom: 16px;
}
.arc-vid-grid .v-card .thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.25s;
}
.arc-vid-grid .v-card:hover .thumb img { transform: scale(1.04); }
.arc-vid-grid .v-card .thumb .dur {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(0,0,0,0.75);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.1em;
  padding: 4px 8px;
}
.arc-vid-grid .v-card .thumb .play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  opacity: 0.9;
  transition: transform 0.2s, opacity 0.2s;
}
.arc-vid-grid .v-card:hover .thumb .play { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
.arc-vid-grid .v-card .thumb .play svg { width: 22px; height: 22px; margin-left: 3px; }
.arc-vid-grid .v-card .cat {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 8px;
}
.arc-vid-grid .v-card h4 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(1.125rem, 0.5vw + 1rem, 1.5rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: var(--ink);
}
.arc-vid-grid .v-card h4 em { font-style: normal; font-weight: 700; color: inherit; }
.arc-vid-grid .v-card p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0;
}
