/* Phase 8p — Article page: hero and visual aids fixes */

/* ── Hero h1 — remove 15ch constraint, allow full column width ── */
.article-hero--editorial h1 {
  max-width: 100% !important;
  font-size: clamp(2rem, 4.5vw, 3.8rem) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.04em !important;
}

/* ── Hero layout — give main column more room ── */
.article-hero__layout {
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 18rem) !important;
  gap: clamp(1.5rem, 4vw, 3rem) !important;
  align-items: start !important;
}

/* ── Hero aside — hide the webp image, keep the callout ── */
.article-hero__visual {
  display: none !important;
}

/* ── Supporting visuals — constrain width and stack vertically ── */
.article-visual-aids__grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 2rem !important;
  max-width: 720px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.article-visual-aids__grid .telstar-explainer-figure {
  margin: 0 !important;
  border-radius: 0.5rem !important;
  box-shadow: 0 1px 3px rgba(11,37,69,0.07) !important;
}

.article-visual-aids__grid .telstar-explainer-figure img {
  aspect-ratio: auto !important;
  object-fit: contain !important;
  max-height: 420px !important;
}

/* ── Visual aids section background — match page surface ── */
.article-visual-aids {
  background: var(--telstar-surface-low, #F4F6F8) !important;
}

/* ── Article section heading ── */
.article-section-heading {
  margin-bottom: 1.5rem !important;
}

.article-section-heading h2 {
  font-size: clamp(1.4rem, 2vw, 1.8rem) !important;
  margin: 0.35rem 0 0.5rem !important;
}
