/* ============================================================
   Step content
   The heading block every step opens with. .content itself
   re-animates on each step change.
   ============================================================ */

.content {
  flex: 1;
  min-width: 0;
  animation: fade .35s ease both;
}

/* "STEP 2 OF 7" */
.kicker {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: var(--space-4);
  font-feature-settings: 'tnum';
}

.h1 {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-tighter);
  margin: 0 0 var(--space-3);
  line-height: var(--lh-tight);
  color: var(--text);
}

/* A step with no lead paragraph carries the same gap on the heading itself,
   rather than rendering an empty <p> for its margin. */
.h1--solo {
  margin-bottom: var(--space-20);
}

.lead {
  font-size: var(--fs-lg);
  color: var(--text-3);
  margin: 0 0 var(--space-16);
  max-width: 60ch;
  text-wrap: pretty;
}
