/* ==========================================================================
   Reading column — prose sections (.reading), the accent-numbered .flow step
   list, and the centred variant. Loaded BEFORE methods.css so the prose-link
   rule (.reading a:not(.btn)) can be overridden there for method tiles.
   ========================================================================== */
.reading {
  max-width: 720px;
}

.reading h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 22px;
}

.reading>p {
  font-size: 1.18rem;
  line-height: 1.65;
  color: var(--color-body);
}

.reading p.big {
  font-size: clamp(1.3rem, 2.6vw, 1.85rem);
  line-height: 1.45;
  color: var(--color-text);
  font-weight: 500;
}

.reading p strong {
  color: var(--color-text);
}

/* In-prose text links get a persistent underline (not colour alone) — WCAG 1.4.1.
   Excludes buttons that happen to sit in a reading column. */
.reading a:not(.btn) {
  color: var(--color-accent-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ------------------------------ Numbered flow --------------------------- */
.flow {
  list-style: none;
  counter-reset: flow;
  display: grid;
  gap: 20px;
  margin-top: 34px;
  max-width: 660px;
  padding: 0;
}

.flow li {
  counter-increment: flow;
  position: relative;
  padding-left: 56px;
  font-size: 1.15rem;
  color: var(--color-body);
}

.flow li strong {
  color: var(--color-text);
}

.flow li::before {
  content: counter(flow);
  position: absolute;
  left: 0;
  top: 6px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-accent-ink);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Centred prose sections that have no accompanying image. */
.reading--center {
  text-align: center;
}

.reading--center .flow {
  margin-inline: auto;
  text-align: left;
}

.reading--center .method-links {
  margin-inline: auto;
}