/* ═══ NEWSPAPER — editorial broadsheet, authoritative ═══
   Identity: red masthead rule, drop-cap opening, all-caps section
   eyebrows, asterism dividers, italic blockquotes with oversized
   quotation glyph. Think Sunday paper.
*/

body { line-height: 1.7; }

/* ── Masthead H1 ── */
h1 {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: var(--space-m) 0 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--text);
}
h1::before {
  content: "· · ·";
  display: block;
  color: var(--primary);
  font-size: 0.85rem;
  letter-spacing: 0.5em;
  margin-bottom: 0.85rem;
}

h2 {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}
h3 { font-size: 1.15rem; font-weight: 700; }

/* ── Subtitle as italic deck ── */
.subtitle {
  font-style: italic;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

/* ── Site header gets a tall red rule ── */
.site-header { border-top: 4px solid var(--primary); border-bottom: 1px solid var(--border); }
.site-header .site-name { font-size: 1.3rem; font-weight: 800; letter-spacing: -0.02em; }

/* ── Drop cap on the lede ── */
.prose p:first-of-type::first-letter {
  font-size: 3.2em;
  float: left;
  line-height: 0.8;
  margin: 0.05em 0.1em 0 0;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--primary);
}

/* ── Editorial body styling ── */
.prose strong { color: var(--primary); font-weight: 700; }
.prose a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

/* ── Pull-quote blockquote ── */
.prose blockquote {
  border-left: 3px solid var(--primary);
  font-style: italic;
  font-size: 1.1rem;
  padding: 0.5rem 1rem 0.5rem 1.25rem;
  background: var(--muted);
  margin: 2rem 0;
  position: relative;
}
.prose blockquote::before {
  content: "\201C"; /* curly opening quote */
  position: absolute;
  top: -0.6rem;
  right: 0.6rem;
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.18;
  line-height: 1;
  pointer-events: none;
}

/* ── Asterism section divider ── */
.prose hr {
  border: none;
  text-align: center;
  margin: 3rem auto;
  color: var(--text-muted);
}
.prose hr::before {
  content: "* * *";
  display: block;
  letter-spacing: 1em;
  font-size: 0.95rem;
}

/* ── Editorial CTAs and footer borders ── */
.cta { border-top: 2px solid var(--primary); border-bottom: 2px solid var(--primary); border-radius: 0; background: transparent; }
.site-footer { border-top: 2px solid var(--text); }
