/* ============================================================================
   page-guides.css — Aurora Glass × Editorial.
   Page-specific styling for the listing/guide page types:
     • Start Here hub + Basics + How-Do-I sub-indexes
     • In Plain Language index + articles
     • Editor's Notes index + note articles
     • Browse-by-Category (tags) index + tag detail
     • The Tool page

   The Aurora design system (.pagehead, .crumbs, .article-head, .article-grid,
   .prose, .rail*, .glass, .btn*, .sec-head, .marker, .dispatch-grid/card,
   .callout, .pullquote) already lives in aurora.css, and the shared
   article-BODY bridge (.content-section, .related-link/.related-links,
   .price-cta, .cite, .bibliography, in-body .disclaimer) lives in
   page-peptides.css scoped under .prose. This file only adds:
     1. the listing card grids unique to these hubs;
     2. a few article-shell extras (guide hero image, note drop-cap);
     3. the guide-BODY components that are unique to Start-Here / Plain-Language
        guides (the reconstitution calculator, intro-note, formula box, worked
        example, research-area peptide cards, article CTA) — all scoped under
        .prose so they never leak onto other pages.
   ============================================================================ */

/* ============================================================
   1. SECTION RHYTHM — hub bands
   ============================================================ */
.guide-band { padding: 44px 0 8px; }
.guide-band + .guide-band { padding-top: 16px; }
.guide-band .sec-head { margin-bottom: 22px; }

/* Top grids sit just under a .pagehead — give them breathing room */
.guide-grid-top { margin-top: 30px; }

/* "What this is / isn't" lead note under the Start Here pagehead */
.start-note {
  margin: 26px 0 8px;
  padding: 22px 26px;
}
.start-note p {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  text-wrap: pretty;
}
.start-note strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   2. GUIDE CARD GRID  (Start Here, Plain Language, Tool features)
   ============================================================ */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.guide-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px 28px;
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.2s ease;
}
a.guide-card:hover { transform: translateY(-3px); }
.guide-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: balance;
}
.guide-card p {
  font-family: var(--serif);
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--muted);
  text-wrap: pretty;
}
.guide-card-foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--hairline);
}
.guide-card-meta {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--faint);
}
.guide-card-go {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}

/* ============================================================
   3. TAGS — category grid + tag-detail compound list
   ============================================================ */
.tag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.tag-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 26px;
  cursor: pointer;
  transition: transform 0.18s ease;
}
.tag-card:hover { transform: translateY(-3px); }
.tag-card-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.tag-card-desc {
  font-family: var(--serif);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
  text-wrap: pretty;
}
.tag-card-count {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--hairline);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.tag-note-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.tag-note-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 26px;
  cursor: pointer;
  transition: transform 0.18s ease;
}
.tag-note-card:hover { transform: translateY(-3px); }
.tag-note-card-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 21px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.tag-note-card-desc {
  font-family: var(--serif);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
  text-wrap: pretty;
}
.tag-note-card-arrow {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--hairline);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}

/* ============================================================
   4. EDITOR'S NOTES INDEX  (reuses .dispatch-grid/.dispatch-card)
   ============================================================ */
.notes-grid .note-dek {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  text-wrap: pretty;
}

/* ============================================================
   5. SECTION NAV (prev / next on sub-indexes & tag detail)
   ============================================================ */
.section-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin: 40px 0 8px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
}

/* ============================================================
   6. THE TOOL PAGE
   ============================================================ */
.tool-feature { cursor: default; }
.tool-feature:hover { transform: none; }
.tool-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  margin: 30px 0 8px;
  padding: 34px 40px;
}
.tool-cta-copy h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.015em;
  line-height: 1.12;
  color: var(--ink);
}
.tool-cta .tool-trust {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  margin-top: 10px;
  max-width: 40em;
}
.tool-cta .btn-accent { flex: 0 0 auto; }

/* ============================================================
   7. ARTICLE-SHELL EXTRAS  (guide / note / plain-language)
   ============================================================ */
.guide-hero-image {
  margin: 18px 0 4px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}
.guide-hero-image img { width: 100%; height: auto; display: block; }

/* Infographic / diagram inserted after the article header */
.guide-graphic {
  margin: 2rem 0;
  border-radius: var(--radius, 8px);
  overflow: hidden;
}
.guide-graphic img {
  width: 100%;
  height: auto;
  display: block;
}

/* Editor's note — accent drop-cap on the opening paragraph */
.prose.is-note .content-section.is-intro > p:first-of-type::first-letter,
.prose.is-note > .content-section:first-child p:first-of-type::first-letter {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 3.4em;
  float: left;
  line-height: 0.82;
  padding: 6px 12px 0 0;
  color: var(--accent);
}

/* "Keep reading" block appended inside .prose */
.prose .guide-keepreading { margin-top: 8px; }
.prose .guide-keepreading h2 { margin-top: 40px; }

/* ============================================================
   8. GUIDE-BODY COMPONENTS — unique to Start-Here / Plain-Language
      All scoped under .prose. (Shared body classes — .callout,
      .disclaimer, .price-cta, .comparison-table, .content-section,
      .related-link — are styled in page-peptides.css; not redefined here.)
   ============================================================ */

/* Lead "On this site / Not medical advice" note */
.prose .intro-note {
  margin: 0 0 26px;
  padding: 18px 22px;
  border-radius: 14px;
  background: var(--chip-bg);
  border: 1px solid var(--chip-border);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}
.prose .intro-note strong { color: var(--ink); font-weight: 600; }

/* Plain-language opening section (un-numbered lead block) */
.prose .intro-section > p:first-child { margin-top: 0; }

/* Generic "note box" callout used mid-article */
.prose .note-box {
  margin: 30px 0;
  padding: 20px 24px;
  border-radius: 16px;
  background: var(--good-bg);
  border: 1px solid color-mix(in oklch, var(--good) 26%, transparent);
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink);
}
.prose .note-box strong { font-weight: 700; }

/* Jump link to the in-page calculator */
.prose .calc-jump {
  display: inline-block;
  margin: 2px 0 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose .calc-jump:hover { color: var(--accent-deep, var(--accent)); }

/* ---- Formula box ---------------------------------------------------------- */
.prose .formula-box {
  margin: 26px 0;
  padding: 22px 26px;
  border-radius: 18px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
}
.prose .formula-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 10px;
}
.prose .formula-text {
  font-family: var(--mono);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
}

/* ---- Worked example card -------------------------------------------------- */
.prose .example-card {
  margin: 26px 0;
  padding: 22px 26px;
  border-radius: 18px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
}
.prose .example-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.prose .example-card table { width: 100%; border-collapse: collapse; }
.prose .example-card td {
  padding: 11px 0;
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink);
  border-bottom: 1px solid var(--hairline);
}
.prose .example-card tr:last-child td { border-bottom: none; }
.prose .example-card td:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  white-space: nowrap;
}

/* ---- Generic markdown comparison table (also used on a peptide page;
        FLAGGED for shared consolidation — minimal scoped style so guide
        bodies don't render a raw table) -------------------------------- */
.prose .comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-family: var(--sans);
  font-size: 14px;
}
.prose .comparison-table th,
.prose .comparison-table td {
  text-align: left;
  padding: 12px 14px;
  line-height: 1.5;
  color: var(--ink);
  border-bottom: 1px solid var(--hairline);
  vertical-align: top;
}
.prose .comparison-table thead th {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
}
.prose .comparison-table tbody tr:last-child td { border-bottom: none; }

/* ---- Research-area sections (women's-health style listing) ---------------- */
.prose .research-area { margin: 40px 0; }
.prose .research-area .area-desc {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  margin: 8px 0 20px;
  text-wrap: pretty;
}

/* In-body peptide cards (also FLAGGED: .peptide-card/.badge are shared,
   unstyled in live CSS; scoped under .prose here so guide bodies render). */
.prose .peptide-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
  margin: 18px 0;
}
.prose .peptide-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 24px;
  border-radius: 18px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
}
.prose .peptide-card .card-name {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.prose .peptide-card .card-desc {
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}
.prose .peptide-card .card-action { margin-top: auto; }
.prose .peptide-card .btn-card {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

/* Status badges inside guide bodies */
.prose .badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 99px;
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--chip-bg);
  border: 1px solid var(--chip-border);
  color: var(--muted);
}
.prose .badge-live,
.prose .badge-fda {
  background: var(--good-bg);
  border-color: color-mix(in oklch, var(--good) 30%, transparent);
  color: var(--good);
}
.prose .badge-soon {
  background: var(--warn-bg);
  border-color: color-mix(in oklch, var(--warn) 30%, transparent);
  color: var(--warn);
}

/* ---- Sources list (where-to-buy style) ------------------------------------ */
.prose .sources-section { margin: 36px 0; }
.prose .sources-list {
  list-style: none;
  margin: 16px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.prose .sources-list li {
  padding-left: 0;
  position: static;
}
.prose .sources-list li::before { content: none; }

/* ---- In-body article CTA → accent glass band ------------------------------ */
.prose .article-cta {
  margin: 36px 0;
  padding: 26px 30px;
  border-radius: 22px;
  background: linear-gradient(120deg, color-mix(in oklch, var(--accent) 14%, var(--glass)), var(--glass));
  border: 1px solid color-mix(in oklch, var(--accent) 24%, var(--glass-border));
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.prose .article-cta .cta-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.prose .article-cta .cta-title,
.prose .article-cta .cta-heading {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 4px 0 6px;
}
.prose .article-cta .cta-sub,
.prose .article-cta .cta-desc {
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
  max-width: 40em;
}
.prose .article-cta .cta-text { min-width: 0; }
.prose .article-cta .btn-white,
.prose .article-cta .btn-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0 22px;
  border-radius: 99px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.15s ease;
}
.prose .article-cta .btn-white:hover,
.prose .article-cta .btn-cta:hover { transform: translateY(-1px); }
:root[data-theme="dark"] .prose .article-cta .btn-white,
:root[data-theme="dark"] .prose .article-cta .btn-cta { color: #14121F; }

/* ============================================================
   9. RECONSTITUTION CALCULATOR  (Start-Here bac-water guide)
      Functional JS lives in the markdown; this only skins the widget.
   ============================================================ */
#reconstitution-calculator { scroll-margin-top: 96px; }
.prose .recon-calc {
  margin: 28px 0;
  padding: 28px 30px;
  border-radius: 22px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
}
.prose .recon-calc > p {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}
.prose .calc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
  margin-top: 24px;
}
.prose .calc-field { display: flex; flex-direction: column; }
.prose .calc-field label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 8px;
}
.prose .calc-field .input-row { display: flex; align-items: stretch; }
.prose .calc-field input[type="number"],
.prose .calc-field select {
  height: 46px;
  padding: 0 14px;
  border: 1px solid var(--field-border);
  border-radius: 12px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--field);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  outline: none;
  transition: border-color 0.15s ease;
}
.prose .calc-field input[type="number"]:focus,
.prose .calc-field select:focus { border-color: var(--accent); }
.prose .calc-field .input-row input[type="number"] {
  flex: 1;
  min-width: 0;
  border-right: none;
  border-radius: 12px 0 0 12px;
}
.prose .calc-field .unit-badge {
  display: flex;
  align-items: center;
  height: 46px;
  padding: 0 15px;
  background: var(--chip-bg);
  border: 1px solid var(--field-border);
  border-left: none;
  border-radius: 0 12px 12px 0;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--muted);
  white-space: nowrap;
}
.prose .calc-field select { width: 100%; }
.prose .calc-field .input-row input.with-select {
  flex: 1;
  min-width: 0;
  border-right: none;
  border-radius: 12px 0 0 12px;
}
.prose .calc-field .input-row select.inline-unit {
  flex: 0 0 auto;
  width: auto;
  border-left: none;
  border-radius: 0 12px 12px 0;
  background: var(--chip-bg);
  font-family: var(--mono);
  font-size: 12.5px;
}
.prose .calc-field small {
  display: block;
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.45;
  color: var(--faint);
}
.prose .preset-row { display: flex; gap: 6px; margin-top: 8px; flex-wrap: wrap; }
.prose .preset-btn {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid var(--chip-border);
  border-radius: 99px;
  background: var(--chip-bg);
  color: var(--muted);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.prose .preset-btn:hover {
  background: var(--ink);
  border-color: transparent;
  color: var(--bg);
  transform: translateY(-1px);
}
:root[data-theme="dark"] .prose .preset-btn:hover { color: #14121F; }

/* Results */
.prose .calc-results {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--hairline);
}
.prose .result-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 12px 2px;
}
.prose .result-row + .result-row { box-shadow: 0 -1px 0 var(--hairline); }
.prose .result-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
}
.prose .result-value {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.prose .result-row.result-highlight {
  margin-top: 10px;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--good-bg);
  box-shadow: inset 0 0 0 1px color-mix(in oklch, var(--good) 30%, transparent);
}
.prose .result-row.result-highlight .result-label { color: var(--good); }
.prose .result-row.result-highlight .result-value {
  font-size: 22px;
  color: var(--good);
}

/* Calculator notices — match the in-body callout tone */
.prose .calc-notice {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink);
}
.prose .calc-notice.warn  { background: var(--warn-bg); color: var(--warn); }
.prose .calc-notice.error { background: var(--warn-bg); color: var(--warn); }
.prose .calc-notice.tip   { background: var(--good-bg); color: var(--good); }

/* ============================================================
   Start Here hub — TOC jump nav
   ============================================================ */
.start-here-toc {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 18px;
  padding: 14px 20px;
  margin: 20px 0 4px;
  font-family: var(--sans);
  font-size: 14px;
}
.start-here-toc .toc-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  opacity: .5;
  margin-right: 4px;
}
.start-here-toc .btn-link {
  font-size: 14px;
  font-weight: 500;
}

/* ============================================================
   Start Here hub — price comparison tool CTA break
   ============================================================ */
.tool-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 28px;
  margin: 36px 0;
  flex-wrap: wrap;
}
.tool-cta-body { flex: 1; min-width: 200px; }
.tool-cta-hook {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 4px;
}
.tool-cta-sub {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* ============================================================
   Footer — Start Here sub-links
   ============================================================ */
.foot-sub {
  padding-left: 14px;
  font-size: 13px !important;
  opacity: .75;
}
.foot-sub::before {
  content: "↳ ";
  opacity: .5;
}

/* ============================================================
   10. RESPONSIVE
   ============================================================ */
@media (max-width: 920px) {
  .guide-grid,
  .tag-grid,
  .tag-note-grid { grid-template-columns: 1fr; }
  .tool-cta { padding: 26px 24px; }
  .tool-cta .btn-accent { width: 100%; justify-content: center; }
}
@media (max-width: 600px) {
  .prose .article-cta,
  .prose .tool-cta { flex-direction: column; align-items: flex-start; }
  .prose .article-cta .btn-white,
  .prose .article-cta .btn-cta { width: 100%; justify-content: center; }
  .section-nav { flex-direction: column; align-items: flex-start; gap: 10px; }
}
