/* ==========================================================================
   Morrison Media Group — press article pages (v4.8)
   Extends main.css. Same tokens, same monochrome discipline: zero
   border-radius, zero shadows, no glass, no gradients.
   ========================================================================== */

/* ---------- Header block ---------- */

.press-article-header {
  padding-top: clamp(6.5rem, 13vh, 9rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
  max-width: 46rem;
}

.press-article-meta {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 22px;
}

.press-article-date {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--caption);
}

.press-article-header h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.press-article-deck {
  margin-top: 26px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 40rem;
}

/* ---------- Cover ---------- */

.press-article-cover {
  margin: clamp(2.5rem, 5vw, 4rem) 0;
  background: var(--band);
  overflow: hidden;
}

.press-article-cover img {
  display: block;
  width: 100%;
  height: auto;
}

/* ---------- Body ---------- */

.press-article-body {
  max-width: 34rem;
  margin: 0 auto;
  font-family: var(--font-body);
}

.press-article-body p {
  margin-bottom: 1.6em;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--body);
}

.press-article-body h2 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 2.2em 0 0.75em;
  font-size: clamp(1.3rem, 2.4vw, 1.6rem);
}

/* Body subheadings render as <h2> for correct heading order (no more h1->h3
   skip), but keep their original smaller visual size via this class rather
   than an element selector, so the true section-level h2s above (and any
   other heading on the page) are untouched. */
.press-article-subhead {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
}

.press-article-body a.inline-link {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.press-article-body a.inline-link:hover { color: var(--ink-soft); }

/* Pull quotes: direct quotations, indented, no border-left, no gradient. */
.press-pull-quote {
  margin: 2.4em 0;
  padding: 0 0 0 clamp(1.25rem, 4vw, 2.5rem);
}

.press-pull-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 0;
}

/* External coverage link-cards */
.press-link-card {
  display: block;
  margin: 2.2em 0;
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--ink);
}

.press-link-card-outlet {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--caption);
  margin-bottom: 10px;
}

.press-link-card-title {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.3;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--hairline-strong);
}
.press-link-card-title:hover { text-decoration-color: var(--ink); }

.press-link-card-blurb {
  margin-top: 10px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--body);
}

/* Inline body images recovered from the archive */
.press-article-inline-img {
  margin: 2.6em 0;
}
.press-article-inline-img img {
  display: block;
  width: 100%;
  height: auto;
}

/* Source line */
.press-article-source-line {
  max-width: 34rem;
  margin: clamp(3rem, 6vw, 4rem) auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline);
  font-size: 0.9rem;
  color: var(--caption);
}
.press-article-source-line a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.press-article-source-line a:hover { color: var(--ink-soft); }

/* ---------- Related section ---------- */

.press-related-section { border-top: 1px solid var(--hairline-strong); }

.press-related-grid { grid-template-columns: repeat(3, 1fr); }

a.related-card { display: flex; flex-direction: column; }
a.related-card .press-date { display: block; margin-top: 4px; }
a.related-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.3;
  color: var(--ink);
  margin-top: 8px;
}

@media (max-width: 900px) {
  .press-related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .press-related-grid { grid-template-columns: 1fr; }
}
