/* Content hub + long-form article design system (guides.html, blog.html).
   Loaded on top of site.css. Original design — no third-party assets. v5.
   Shared classes (.chero/.cgrid/.ccard/.article/.callout/.toc) power BOTH the
   guides and blog pages; guide-only enhancements are scoped under `.article.guide`
   and the `.hub-*`, `.feat`, `.agestrip` components. */

/* ── Reading progress bar (guides.html JS sets width) ─────────────────────── */
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--primary), var(--accent)); z-index: 40;
  transition: width .08s linear; }

/* ── Content hero ─────────────────────────────────────────────────────────── */
.chero { position: relative; overflow: hidden; padding: 4.4rem 0 2.4rem;
  background: radial-gradient(120% 90% at 82% 0%, var(--primary-soft), transparent 60%); }
.chero .eyebrow { margin-bottom: .9rem; }
.chero h1 { font-size: clamp(2.2rem, 5.2vw, 3.15rem); line-height: 1.05; margin: 0 0 .7rem; max-width: 16ch; }
.chero p { color: var(--muted); font-size: 1.16rem; max-width: 42rem; margin: 0; line-height: 1.6; }
.chero .chero-stats { display: flex; flex-wrap: wrap; gap: 1.6rem; margin: 1.6rem 0 0; }
.chero .chero-stats div { display: flex; flex-direction: column; }
.chero .chero-stats b { font-size: 1.5rem; font-family: ui-rounded, "SF Pro Rounded", -apple-system, sans-serif;
  line-height: 1; color: var(--primary-ink); }
.chero .chero-stats span { font-size: .82rem; color: var(--muted); margin-top: .25rem; }

/* ── Hub section headings ─────────────────────────────────────────────────── */
.hub-section { margin: 3.4rem 0 0; scroll-margin-top: 76px; }
.hub-head { margin: 0 0 1.3rem; }
.hub-kicker { display: inline-flex; align-items: center; gap: .45rem; font-size: .74rem; font-weight: 800;
  letter-spacing: .07em; text-transform: uppercase; color: var(--primary-ink); }
.hub-head h2 { font-size: clamp(1.5rem, 3.2vw, 2rem); line-height: 1.12; margin: .5rem 0 .35rem; }
.hub-head p { color: var(--muted); margin: 0; max-width: 46rem; font-size: 1.04rem; }

/* ── Featured guide (flagship, horizontal) ────────────────────────────────── */
.feat { display: grid; grid-template-columns: .95fr 1.05fr; gap: 0; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; background: var(--card); box-shadow: var(--shadow);
  text-decoration: none; color: inherit; transition: transform .25s ease; }
.feat:hover { transform: translateY(-4px); text-decoration: none; }
.feat .feat-art { position: relative; min-height: 260px; display: grid; place-items: center;
  background: var(--art, linear-gradient(135deg, var(--primary), var(--primary-ink))); }
.feat .feat-art .glyph { width: 96px; height: 96px; padding: 22px; border-radius: 28px;
  background: rgba(255,255,255,.92); box-shadow: 0 18px 36px -14px rgba(0,0,0,.4); }
.feat .feat-art .feat-flag { position: absolute; top: 1rem; left: 1rem; font-size: .68rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase; color: var(--primary-ink); background: #fff;
  padding: .3rem .7rem; border-radius: 999px; }
.feat .feat-body { padding: 1.8rem 2rem 2rem; display: flex; flex-direction: column; }
.feat .feat-body .a-cat { font-size: .74rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  color: var(--primary-ink); }
.feat .feat-body h3 { font-size: clamp(1.4rem, 2.6vw, 1.85rem); line-height: 1.15; margin: .5rem 0 .5rem; }
.feat .feat-body p { color: var(--muted); margin: 0 0 1rem; line-height: 1.65; font-size: 1.02rem; }
.feat .feat-body .feat-more { margin-top: auto; font-weight: 700; color: var(--primary-ink);
  display: inline-flex; align-items: center; gap: .4rem; }
.feat .feat-body .meta { color: var(--muted); font-size: .85rem; margin: 0 0 1rem; }

/* ── Category filter bar (tiny JS toggles .hide on cards) ──────────────────── */
.catbar { position: sticky; top: 60px; z-index: 5; display: flex; gap: .5rem; flex-wrap: wrap;
  padding: .9rem 0; margin-bottom: 1.3rem; backdrop-filter: saturate(160%) blur(10px);
  background: color-mix(in srgb, var(--bg) 82%, transparent); border-bottom: 1px solid var(--border); }
.chip { border: 1px solid var(--border); background: var(--card); color: var(--fg);
  font-weight: 600; font-size: .9rem; padding: .45rem .95rem; border-radius: 999px; cursor: pointer;
  transition: border-color .15s ease, background .15s ease; }
.chip:hover { border-color: var(--muted); }
.chip.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ── Card grid ────────────────────────────────────────────────────────────── */
.cgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.ccard { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--card); overflow: hidden; text-decoration: none; color: inherit;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.ccard:hover { transform: translateY(-6px); box-shadow: var(--shadow); text-decoration: none;
  border-color: color-mix(in srgb, var(--primary) 40%, var(--border)); }
.ccard.hide { display: none; }
/* Art tile: a category-tinted gradient with a floating icon chip (no stretched flat icons). */
.ccard .art { aspect-ratio: 16 / 9; position: relative; display: grid; place-items: center;
  background: var(--art, linear-gradient(135deg, var(--primary-soft), var(--bg-2))); }
.ccard .art > img, .ccard .art > svg { width: 60px; height: 60px; padding: 14px; border-radius: 18px;
  background: rgba(255,255,255,.92); box-shadow: 0 10px 22px -10px rgba(0,0,0,.35); display: block; }
.ccard .tag { position: absolute; top: .75rem; left: .75rem; font-size: .66rem; font-weight: 800;
  letter-spacing: .05em; text-transform: uppercase; color: var(--fg); background: rgba(255,255,255,.9);
  padding: .28rem .6rem; border-radius: 999px; backdrop-filter: blur(4px); }
.ccard .body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.ccard h3 { margin: 0; font-size: 1.16rem; line-height: 1.28; }
.ccard p { margin: 0; color: var(--muted); font-size: .95rem; line-height: 1.55; }
.ccard .meta { margin-top: auto; padding-top: .7rem; color: var(--muted); font-size: .82rem;
  display: flex; align-items: center; gap: .6rem; }
.ccard .meta .read::before { content: "⏱ "; }
.ccard .meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--muted); opacity: .6; }

/* ── Age-by-age strip ─────────────────────────────────────────────────────── */
.agestrip { display: grid; grid-template-columns: repeat(7, 1fr); gap: .7rem; }
.agecard { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .5rem;
  padding: 1.1rem .5rem 1rem; border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--card); text-decoration: none; color: inherit;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.agecard:hover { transform: translateY(-4px); box-shadow: var(--shadow); text-decoration: none;
  border-color: color-mix(in srgb, var(--primary) 45%, var(--border)); }
.agecard .age-badge { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  font-family: ui-rounded, "SF Pro Rounded", -apple-system, sans-serif; font-weight: 800; font-size: 1.05rem;
  color: #fff; background: var(--art, var(--primary)); line-height: 1; }
.agecard b { font-size: .92rem; line-height: 1.2; }
.agecard span { font-size: .74rem; color: var(--muted); line-height: 1.3; }

/* ── Long-form article ────────────────────────────────────────────────────── */
.article { max-width: 46rem; margin: 3rem auto 0; scroll-margin-top: 76px; }
.article + .article { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--border); }
/* Article hero: cohesive gradient banner with a floating icon chip (matches cards). */
.article .a-hero { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16 / 6;
  margin-bottom: 1.5rem; display: grid; place-items: center;
  background: var(--gc-grad, linear-gradient(135deg, var(--primary), var(--primary-ink))); }
.article .a-hero > img, .article .a-hero > svg { width: 84px; height: 84px; padding: 20px; border-radius: 24px;
  background: rgba(255,255,255,.92); box-shadow: 0 16px 30px -12px rgba(0,0,0,.4); display: block; }
.article .a-cat { font-size: .74rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  color: var(--gc, var(--primary-ink)); }
.article h2.a-title { font-size: clamp(1.75rem, 4vw, 2.35rem); line-height: 1.1; margin: .5rem 0 .4rem; }
.article .a-meta { color: var(--muted); font-size: .9rem; margin-bottom: 1.6rem;
  display: flex; align-items: center; flex-wrap: wrap; gap: .55rem; }
.article .a-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--muted); opacity: .6; }

/* Key-takeaways box (guides) */
.a-takeaways { background: var(--mint-soft); border: 1px solid color-mix(in srgb, var(--mint) 30%, var(--border));
  border-radius: var(--radius-sm); padding: 1.1rem 1.3rem; margin: 0 0 1.8rem; }
.a-takeaways b { display: block; font-size: .78rem; letter-spacing: .05em; text-transform: uppercase;
  color: var(--mint); margin-bottom: .5rem; }
.a-takeaways ul { margin: 0; padding-left: 1.2rem; }
.a-takeaways li { margin: .3rem 0; line-height: 1.55; }

/* Table of contents */
.article .toc { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 1rem 1.2rem; margin: 0 0 1.8rem; }
.article .toc b { font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }
.article .toc ol { margin: .5rem 0 0; padding-left: 1.1rem; columns: 2; column-gap: 1.4rem; }
.article .toc li { margin: .25rem 0; break-inside: avoid; }
.article .toc a { color: var(--fg); }

/* Body typography */
.article .a-body h3 { font-size: 1.32rem; margin: 2.1rem 0 .6rem; scroll-margin-top: 76px;
  position: relative; padding-left: .95rem; }
.article .a-body h3::before { content: ""; position: absolute; left: 0; top: .18em; bottom: .18em;
  width: 4px; border-radius: 3px; background: var(--gc, var(--primary)); }
.article .a-body p { font-size: 1.06rem; line-height: 1.78; margin: 0 0 1rem; }
.article .a-body ul, .article .a-body ol { line-height: 1.7; margin: 0 0 1rem; padding-left: 1.3rem; }
.article .a-body li { margin: .4rem 0; }
.article .a-body li strong { color: var(--fg); }
.article .a-body .lead { font-size: 1.16rem; line-height: 1.7; color: var(--fg); margin-bottom: 1.2rem; }

/* Practical checklist block */
.a-check { list-style: none; padding: 0; margin: 1.2rem 0; display: grid; gap: .6rem; }
.a-check li { position: relative; padding: .7rem .9rem .7rem 2.4rem; margin: 0; border: 1px solid var(--border);
  border-radius: var(--radius-sm); background: var(--card); line-height: 1.5; }
.a-check li::before { content: "✓"; position: absolute; left: .85rem; top: .7rem; width: 1.15rem; height: 1.15rem;
  display: grid; place-items: center; font-size: .72rem; font-weight: 800; color: #fff;
  background: var(--mint); border-radius: 50%; }

/* "At a glance" spec rows (age guides) */
.a-glance { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; margin: 0 0 1.6rem; }
.a-glance div { border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--bg-2);
  padding: .8rem .9rem; }
.a-glance dt { font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted);
  font-weight: 700; margin: 0 0 .25rem; }
.a-glance dd { margin: 0; font-size: .95rem; line-height: 1.4; }

/* Figure */
.article .a-fig { border-radius: var(--radius-sm); overflow: hidden; margin: 1.4rem 0; border: 1px solid var(--border); }
.article .a-fig svg { width: 100%; height: auto; display: block; }

/* Callouts */
.callout { border-left: 4px solid var(--primary); background: var(--primary-soft); border-radius: 0 12px 12px 0;
  padding: 1rem 1.2rem; margin: 1.5rem 0; }
.callout.warn { border-left-color: var(--accent); background: var(--accent-soft); }
.callout.tip { border-left-color: var(--mint); background: var(--mint-soft); }
.callout b { display: block; margin-bottom: .25rem; }
.callout p { margin: 0; color: var(--fg); line-height: 1.6; }

/* App tie-in */
.a-app { display: flex; gap: 1rem; align-items: flex-start; border: 1px dashed color-mix(in srgb, var(--primary) 45%, var(--border));
  border-radius: var(--radius-sm); background: var(--primary-soft); padding: 1.1rem 1.3rem; margin: 1.6rem 0; }
.a-app .a-app-ic { flex: none; width: 40px; height: 40px; border-radius: 12px; background: #fff;
  display: grid; place-items: center; box-shadow: 0 8px 18px -10px rgba(0,0,0,.3); }
.a-app .a-app-ic img { width: 24px; height: 24px; }
.a-app b { display: block; margin-bottom: .2rem; }
.a-app p { margin: 0; color: var(--fg); line-height: 1.6; font-size: .98rem; }

/* Related guides footer */
.a-related { margin-top: 2.4rem; border-top: 1px solid var(--border); padding-top: 1.4rem; }
.a-related h4 { font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; color: var(--muted);
  margin: 0 0 .8rem; }
.a-related .rel-links { display: flex; flex-wrap: wrap; gap: .6rem; }
.a-related .rel-links a { display: inline-flex; align-items: center; gap: .4rem; font-size: .92rem; font-weight: 600;
  padding: .5rem .9rem; border: 1px solid var(--border); border-radius: 999px; background: var(--card);
  color: var(--fg); }
.a-related .rel-links a:hover { border-color: var(--primary); text-decoration: none; }

.a-back { display: inline-block; margin: 1.8rem 0 0; color: var(--primary-ink); font-weight: 600; }
.a-disc { color: var(--muted); font-size: .88rem; border-top: 1px solid var(--border); margin-top: 2.4rem;
  padding-top: 1rem; line-height: 1.6; }

/* Back-to-top button (guides.html JS toggles .show) */
.totop { position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 20; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--card); color: var(--fg); font-size: 1.2rem; cursor: pointer;
  box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: opacity .2s ease; }
.totop.show { opacity: 1; pointer-events: auto; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .feat { grid-template-columns: 1fr; }
  .feat .feat-art { min-height: 200px; }
  .agestrip { grid-auto-flow: column; grid-auto-columns: minmax(116px, 1fr); grid-template-columns: none;
    overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: .4rem; }
  .agecard { scroll-snap-align: start; }
}
@media (max-width: 900px) { .cgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) {
  .cgrid { grid-template-columns: 1fr; }
  .catbar { top: 0; }
  .article .toc ol { columns: 1; }
  .a-glance { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════════════════
   INDIVIDUAL GUIDE PAGE  (guides/<id>.html)
   A focused "paper": breadcrumb → title → topic figure → 2-column reading
   layout (sticky TOC rail + article body). Reuses .a-body/.a-takeaways/
   .callout/.a-related/.a-check/.a-glance/.a-app/.a-disc from above.
   ══════════════════════════════════════════════════════════════════════════ */
.gpage { max-width: 62rem; margin: 0 auto; padding: 1.6rem 0 3rem; }

/* Breadcrumb */
.crumb { display: flex; align-items: center; gap: .5rem; font-size: .88rem; color: var(--muted);
  margin: 0 0 1.4rem; flex-wrap: wrap; }
.crumb a { color: var(--muted); font-weight: 600; }
.crumb a:hover { color: var(--fg); text-decoration: none; }
.crumb .sep { opacity: .5; }
.crumb .here { color: var(--fg); }

/* Title block */
.gp-head { margin: 0 0 1.6rem; }
.gp-head .a-cat { color: var(--gc, var(--primary-ink)); }
.gp-head h1 { font-size: clamp(2rem, 4.6vw, 2.95rem); line-height: 1.06; margin: .5rem 0 .5rem; max-width: 20ch; }
.gp-head .gp-sub { font-size: clamp(1.08rem, 2vw, 1.28rem); line-height: 1.5; color: var(--muted);
  margin: 0 0 .9rem; max-width: 44rem; }
.gp-head .a-meta { margin: 0; display: flex; align-items: center; flex-wrap: wrap; gap: .55rem;
  color: var(--muted); font-size: .9rem; }
.gp-head .a-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--muted); opacity: .6; }

/* Topic figure */
.figure { margin: 0 0 2rem; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  background: var(--card); box-shadow: var(--shadow); }
.figure > img, .figure > svg { width: 100%; height: auto; display: block; }
.figure figcaption { padding: .85rem 1.2rem; font-size: .88rem; line-height: 1.5; color: var(--muted);
  border-top: 1px solid var(--border); background: var(--bg-2); }
.figure figcaption b { color: var(--gc, var(--primary-ink)); font-weight: 700; }
/* Small inline figure inside the body */
.a-body .figure { box-shadow: none; margin: 1.6rem 0; }

/* 2-column reading layout */
.gp-layout { display: grid; grid-template-columns: 15rem minmax(0, 1fr); gap: 2.6rem; align-items: start; }
.gp-rail { position: sticky; top: 78px; }
.rail-toc { border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--card);
  padding: 1rem 1.1rem; }
.rail-toc b { display: block; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 .6rem; }
.rail-toc ol { list-style: none; margin: 0; padding: 0; counter-reset: rt; }
.rail-toc li { counter-increment: rt; margin: 0; }
.rail-toc ol a { display: flex; gap: .55rem; align-items: baseline; padding: .4rem .3rem; border-radius: 8px;
  font-size: .92rem; line-height: 1.35; color: var(--muted); border-left: 2px solid transparent; }
.rail-toc ol a::before { content: counter(rt); font-size: .72rem; font-weight: 800; color: var(--gc, var(--primary));
  opacity: .6; flex: none; width: 1.1em; }
.rail-toc ol a:hover { color: var(--fg); text-decoration: none; background: var(--bg-2); }
.rail-toc ol a.active { color: var(--gc, var(--primary-ink)); font-weight: 700; }
.rail-toc ol a.active::before { opacity: 1; }
.rail-cta { display: block; margin-top: 1rem; text-align: center; font-weight: 700; font-size: .92rem;
  padding: .7rem 1rem; border-radius: 999px; background: var(--primary); color: #fff; }
.rail-cta:hover { color: #fff; text-decoration: none; filter: brightness(1.06); }

/* Article body wrapper on a guide page */
.gp-article { min-width: 0; }
.gp-article .a-body h2 { font-size: clamp(1.45rem, 3vw, 1.85rem); margin: 2.4rem 0 .6rem; scroll-margin-top: 78px;
  position: relative; padding-left: 1rem; }
.gp-article .a-body h2:first-child { margin-top: 0; }
.gp-article .a-body h2::before { content: ""; position: absolute; left: 0; top: .16em; bottom: .16em; width: 5px;
  border-radius: 3px; background: var(--gc, var(--primary)); }
.gp-article .a-body h3 { font-size: 1.2rem; margin: 1.6rem 0 .4rem; padding-left: 0; }
.gp-article .a-body h3::before { display: none; }

/* Prev / next pager */
.gp-pager { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.4rem; }
.gp-pager a { border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--card);
  padding: 1rem 1.2rem; color: inherit; }
.gp-pager a:hover { border-color: var(--primary); text-decoration: none; transform: translateY(-2px); }
.gp-pager small { display: block; color: var(--muted); font-size: .78rem; margin-bottom: .2rem; }
.gp-pager b { font-weight: 700; line-height: 1.3; }
.gp-pager .nx { text-align: right; }

@media (max-width: 900px) {
  .gp-layout { grid-template-columns: 1fr; gap: 0; }
  .gp-rail { position: static; margin: 0 0 1.8rem; }
  .rail-toc ol { columns: 2; column-gap: 1.2rem; }
  .rail-toc li { break-inside: avoid; }
  .rail-cta { display: none; }
}
@media (max-width: 560px) {
  .rail-toc ol { columns: 1; }
  .gp-pager { grid-template-columns: 1fr; }
  .gp-pager .nx { text-align: left; }
}

/* ══════════════════════════════════════════════════════════════════════════
   BLOG  (blog.html index + blog/<id>.html posts)
   Reuses the guide-page shell (.gpage/.gp-layout/.figure/.rail-toc) and adds a
   byline, an author card, and post-card date/author meta.
   ══════════════════════════════════════════════════════════════════════════ */

/* Byline on a post page + featured card */
.byline { display: flex; align-items: center; gap: .7rem; margin: .1rem 0 0; }
.byline .ava { flex: none; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: var(--card); border: 1px solid var(--border); overflow: hidden; }
.byline .ava img { width: 24px; height: 24px; border-radius: 7px; }
.byline .who { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.byline .who b { font-size: .95rem; }
.byline .who .sub { font-size: .85rem; color: var(--muted); display: flex; align-items: center;
  flex-wrap: wrap; gap: .5rem; }
.byline .who .sub .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--muted); opacity: .6; }

/* Blog-index post cards: category tag stays; meta row carries date + read time */
.ccard .meta time { color: var(--muted); }

/* Featured post byline (inside .feat .feat-body) */
.feat .feat-body .byline { margin-top: .2rem; }

/* Author bio card at the end of a post */
.a-author { display: flex; gap: 1rem; align-items: flex-start; border: 1px solid var(--border);
  border-radius: var(--radius-sm); background: var(--bg-2); padding: 1.2rem 1.3rem; margin: 2.2rem 0 0; }
.a-author .a-author-ic { flex: none; width: 48px; height: 48px; border-radius: 50%; display: grid;
  place-items: center; background: var(--card); border: 1px solid var(--border); overflow: hidden; }
.a-author .a-author-ic img { width: 28px; height: 28px; border-radius: 8px; }
.a-author b { display: block; margin-bottom: .25rem; }
.a-author p { margin: 0; color: var(--muted); font-size: .95rem; line-height: 1.6; }

/* Newsletter / get-the-app strip on the index (honest CTA, no fake signup) */
.blog-cta { margin: 3rem 0 0; border: 1px solid var(--border); border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary-soft), var(--bg-2)); padding: 2rem; text-align: center; }
.blog-cta h3 { margin: 0 0 .4rem; font-size: 1.4rem; }
.blog-cta p { margin: 0 auto 1.1rem; color: var(--muted); max-width: 34rem; }
