/* ==========================================================================
   DIA BONITO · getting-here.css
   Getting Here: overview and the four journey steps.
   Hero, breaks, notes grid, and closing CTA come from style.css.
   ========================================================================== */

/* --- Overview
   Now sits inside the "getting-here-overview" full-bleed panel (see
   style.css for .panel-center). Just the text styling lives here. ----- */

.gh-overview-body {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(21px, 3vw, 28px);
  line-height: 1.58;
  color: var(--bone);
  max-width: 680px;
  margin: 0 auto;
}

/* .gh-overview-body runs wider than the shared .panel-backing default
   (660px), so the card needs to widen to match or it clips the text. */
[data-media-slot="getting-here-overview"] .panel-backing {
  max-width: calc(680px + 2 * clamp(28px, 4vw, 52px));
}

/* --- Journey steps ---------------------------------------------------------- */

.gh-step {
  padding: clamp(56px, 8vw, 100px) 0;
  text-align: center;
}

.gh-step-title {
  font-family: var(--serif);
  font-weight: 340;
  font-size: clamp(30px, 5vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--bone);
  max-width: 720px;
  margin: 0 auto;
  /* Also used in the flowing-ink journey-step sections against the flat
     --ink body background, where the shadow is invisible and harmless. */
  text-shadow:
    0 1px 3px rgba(10, 19, 16, 0.9),
    0 2px 20px rgba(10, 19, 16, 0.7),
    0 4px 40px rgba(10, 19, 16, 0.5);
}

.gh-step-rule { margin-top: 32px; margin-bottom: 40px; }

.gh-step-body {
  font-family: var(--serif);
  font-weight: 380;
  font-size: clamp(17px, 2vw, 19px);
  line-height: 1.8;
  color: var(--bone-2);
  max-width: 640px;
  margin: 0 auto 24px;
  text-align: left;
}

.gh-step-body:last-child { margin-bottom: 0; }
