/* ══════════════════════════════════════════
   POST — article pages
══════════════════════════════════════════ */

/* ── POST PAGE (news-post, breakdown-post, on-this-day) ── */

.post-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.post-league-tag {
  font-family: var(--font-mono);
  font-size: var(--fs-pluto);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-mid);
}
.post-badge {
  font-family: var(--font-mono);
  font-size: var(--fs-pluto);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent);
  color: #111;
  padding: 2px 8px;
  border-radius: var(--r-sm);
  transition: background var(--t-accent);
}
.post-headline {
  font-family: var(--font-display);
  font-size: var(--fs-sun);
  letter-spacing: 0.03em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 16px;
}
.post-meta {
  font-family: var(--font-mono);
  font-size: var(--fs-pluto);
  color: var(--grey-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.post-image {
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16 / 9;
  max-height: 460px;
  object-fit: cover;
  border-radius: var(--r-lg);
  filter: brightness(0.75);
  display: block;
  margin-bottom: 32px;
}
.post-body {
  font-size: var(--fs-earth);
  font-weight: 300;
  color: var(--grey-hi);
  line-height: 1.55;
  max-width: 720px;
}
/* Vertical rhythm — stop h2/p from stacking tight */
.post-body > *:first-child {
  margin-top: 0;
}
.post-body p {
  margin: 0 0 1.15em;
}
.post-body p:last-child {
  margin-bottom: 0;
}
.post-body h2 {
  font-family: var(--font-display);
  font-size: var(--fs-mars);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.15;
  color: var(--white);
  margin: 1.75em 0 0.55em;
}
.post-body h2:first-child {
  margin-top: 0.35em;
}
.post-body h3 {
  font-family: var(--font-display);
  font-size: var(--fs-earth);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.2;
  color: var(--white);
  margin: 1.45em 0 0.45em;
}
.post-body ul,
.post-body ol {
  margin: 0 0 1.15em;
  padding-left: 1.35em;
  list-style: disc;
}
.post-body ol {
  list-style: decimal;
}
.post-body li {
  margin-bottom: 0.4em;
}
.post-body li:last-child {
  margin-bottom: 0;
}
.post-body strong {
  color: var(--white);
  font-weight: 600;
}
.post-pull-quote {
  border-left: 3px solid var(--accent);
  padding: 12px 20px;
  margin: 1.75em 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-earth);
  color: var(--white);
  line-height: 1.45;
  transition: border-color var(--t-accent);
}
/* On This Day */
.otd-detail-year {
  font-family: var(--font-display);
  font-size: var(--fs-supernova);
  color: var(--grey-lo);
  line-height: 0.85;
  margin-bottom: 12px;
}
