/* ── board: the data-driven roadmap and changelog additions (docs/spec/followups/adr-16) ────
   Loaded after content.css (slot "board" in src/config/css-order.ts). Only what the legacy
   sheets do not cover: markdown output in .zr-cl__what and the roadmap's failure note. */

/* Markdown bodies emit <strong>/<em>/<ol>, the legacy copy used <b>; style them the same. */
.zr-cl__what li strong, .zr-cl__what p strong{ font-weight:500; color:var(--pp-ink); }
.zr-cl__what ol{ margin:0 0 12px; padding-left:20px; display:flex; flex-direction:column; gap:8px; }
.zr-cl__what li > p{ margin:0; }
.zr-cl__what li > p + p{ margin-top:6px; }
.zr-cl__what h4{ margin:16px 0 8px; font-size:15.5px; font-weight:500; line-height:1.35; color:var(--pp-ink); }
.zr-cl__what a{ color:var(--zr-blue); text-decoration:none; }
.zr-cl__what a:hover{ text-decoration:underline; }
.zr-cl__what code{ font-size:.92em; }

/* The roadmap when the API could not be reached: one note across the three columns. */
.zr-rm__note{
  grid-column:1 / -1; margin:0; padding:22px 24px; text-align:center;
  background:#fff; border:1px solid #EDF1F7; border-radius:14px;
  font-size:14.5px; line-height:23px; color:var(--pp-dim); text-wrap:pretty;
}
.zr-rm__note a{ color:var(--zr-blue); text-decoration:none; }
.zr-rm__note a:hover{ text-decoration:underline; }
