/* meaty.me blog — standalone stylesheet for the server-rendered blog pages.
   Tokens mirror the app's "paper & ink" design system (colour rationed to one
   ember accent). Kept separate from the SPA bundle so blog HTML renders without
   loading the React app. */

@import url("https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&family=Geist+Mono:wght@400;500;600&display=swap");

:root {
  /* Warm neutral ramp */
  --paper:        oklch(0.988 0.004 80);
  --paper-sunken: oklch(0.965 0.005 80);
  --paper-raised: oklch(1 0 0);
  --stone-200: oklch(0.920 0.004 78);
  --stone-300: oklch(0.872 0.005 76);
  --stone-400: oklch(0.715 0.006 70);
  --stone-500: oklch(0.565 0.007 64);
  --stone-600: oklch(0.445 0.007 60);
  --stone-700: oklch(0.345 0.007 58);
  --ink:       oklch(0.235 0.008 56);
  --ink-pure:  oklch(0.165 0.006 56);

  /* Ember accent */
  --ember-50:  oklch(0.965 0.018 34);
  --ember-100: oklch(0.925 0.045 33);
  --ember-300: oklch(0.760 0.130 31);
  --ember-500: oklch(0.620 0.196 29);
  --ember-600: oklch(0.555 0.190 28);
  --ember-700: oklch(0.480 0.165 28);
  --text-on-ember: oklch(0.99 0.01 40);

  /* Semantic aliases */
  --surface-card:    var(--paper-raised);
  --text-primary:    var(--ink);
  --text-body:       var(--stone-700);
  --text-muted:      var(--stone-500);
  --text-faint:      var(--stone-400);
  --border-hairline: var(--stone-200);
  --border-strong:   var(--stone-300);

  --font-sans: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "SF Mono", "Menlo", monospace;

  --positive-500: oklch(0.640 0.118 152);
  --positive-50:  oklch(0.960 0.020 152);

  --radius-md: 0.875rem;
  --radius-lg: 1.25rem;
  --shadow-sm: 0 1px 3px oklch(0.3 0.02 60 / 0.07), 0 1px 2px oklch(0.3 0.02 60 / 0.04);
  --shadow-md: 0 4px 12px oklch(0.3 0.02 60 / 0.08), 0 2px 4px oklch(0.3 0.02 60 / 0.05);
  --shadow-lg: 0 12px 32px oklch(0.3 0.02 60 / 0.12), 0 4px 8px oklch(0.3 0.02 60 / 0.06);
  --shadow-ember: 0 8px 24px oklch(0.62 0.196 29 / 0.32);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text-primary);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  /* Never let a stray wide element scroll the page sideways on mobile.
     `clip` (not `hidden`) keeps the sticky header working. */
  overflow-x: clip;
}
[id] { scroll-margin-top: 96px; }

/* ---------- shared bits ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.eyebrow--ember { color: var(--ember-700); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s var(--ease-out), transform .15s var(--ease-out);
}
.btn--primary { background: var(--ember-500); color: var(--text-on-ember); }
.btn--primary:hover { background: var(--ember-600); }
.btn--sm { height: 36px; padding: 0 15px; font-size: 13px; }
.btn--md { height: 44px; padding: 0 20px; font-size: 15px; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: oklch(0.988 0.004 80 / 0.82);
  border-bottom: 1px solid var(--border-hairline);
}
.site-header__inner {
  max-width: 1120px; margin: 0 auto; padding: 0 24px; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand img { border-radius: 8px; display: block; }
.brand__name { font-weight: 600; font-size: 18px; letter-spacing: -0.02em; color: var(--ink-pure); }
.brand__tld { color: var(--text-faint); font-weight: 500; }
.brand__section {
  margin-left: 6px; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted);
  border-left: 1px solid var(--border-strong); padding-left: 12px;
}
.site-nav { display: flex; align-items: center; gap: 24px; }
a[data-navlink] {
  color: var(--text-body); text-decoration: none; font-size: 14px; font-weight: 500;
  transition: color .15s var(--ease-out);
}
a[data-navlink]:hover { color: var(--ink-pure); }

/* ---------- post layout ---------- */
.post__grid {
  max-width: 1080px; margin: 0 auto; padding: 56px 24px 0;
  display: grid; grid-template-columns: 210px minmax(0, 720px);
  gap: 56px; justify-content: center; align-items: start;
}
.toc { position: sticky; top: 96px; }
.toc__label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-faint); margin-bottom: 14px;
}
.toc__nav {
  display: flex; flex-direction: column; gap: 11px; font-size: 14px; line-height: 1.35;
  border-left: 1px solid var(--border-hairline); padding-left: 16px;
}
a[data-toc] { color: var(--text-muted); text-decoration: none; transition: color .15s var(--ease-out); }
a[data-toc]:hover { color: var(--ink); }

.post__title {
  margin: 0 0 20px; font-size: 46px; line-height: 1.08; font-weight: 600;
  letter-spacing: -0.03em; color: var(--ink-pure); text-wrap: balance;
}

.byline {
  display: flex; align-items: center; gap: 14px; padding: 18px 0;
  border-top: 1px solid var(--border-hairline); border-bottom: 1px solid var(--border-hairline);
  margin-bottom: 32px;
}
.byline__avatar, .author-bio__avatar {
  flex: none; border-radius: 999px; background: var(--ember-100); color: var(--ember-700);
  display: flex; align-items: center; justify-content: center; font-weight: 600;
}
.byline__avatar { width: 42px; height: 42px; font-size: 15px; }
.byline__who { flex: 1; min-width: 0; }
.byline__name { font-size: 14px; font-weight: 600; color: var(--ink); }
.byline__meta { font-size: 13px; color: var(--text-muted); }
.byline__read { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); }

/* waveform (record-button companion; painted dim on the phone/card mockups) */
.waveform { display: inline-flex; align-items: center; gap: 4px; height: 96px; }
.waveform span { width: 4px; border-radius: 999px; background: var(--text-on-ember); opacity: 0.6; flex: none; }

/* ---------- rendered markdown body ---------- */
.post-body { font-size: 19px; line-height: 1.75; color: var(--stone-700); }
.post-body h2 {
  margin: 44px 0 14px; font-size: 27px; line-height: 1.2; font-weight: 600;
  letter-spacing: -0.02em; color: var(--ink-pure);
}
.post-body h2:first-child { margin-top: 0; }
.post-body h3 {
  margin: 28px 0 12px; font-size: 20px; line-height: 1.3; font-weight: 600;
  letter-spacing: -0.01em; color: var(--ink);
}
.post-body p { margin: 0 0 20px; }
.post-body ul, .post-body ol { margin: 0 0 24px; padding-left: 24px; }
.post-body li { margin: 0 0 10px; }
.post-body strong { color: var(--ink); font-weight: 600; }
.post-body a {
  color: var(--ember-700); text-decoration: none;
  background-image: linear-gradient(var(--ember-300), var(--ember-300));
  background-size: 100% 1px; background-position: 0 1.15em; background-repeat: no-repeat;
  transition: background-size .2s var(--ease-out);
}
.post-body a:hover {
  background-image: linear-gradient(var(--ember-500), var(--ember-500));
  background-size: 100% 2px;
}
.post-body blockquote {
  margin: 32px 0; padding: 4px 0 4px 24px; border-left: 3px solid var(--ember-500);
  font-size: 25px; line-height: 1.4; font-weight: 500; letter-spacing: -0.02em;
  color: var(--ink); font-style: normal;
}
.post-body blockquote p { margin: 0; }
.post-body code {
  font-family: var(--font-mono); font-size: 0.88em; background: var(--paper-sunken);
  border: 1px solid var(--border-hairline); border-radius: 6px; padding: 1px 6px;
}
.post-body pre {
  background: var(--paper-sunken); border: 1px solid var(--border-hairline);
  border-radius: var(--radius-md); padding: 18px 20px; overflow-x: auto; font-size: 15px;
}
.post-body pre code { background: none; border: none; padding: 0; }
.post-body table {
  width: 100%; border-collapse: collapse; margin: 0 0 24px; font-size: 16px;
}
.post-body th, .post-body td {
  text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--border-hairline);
}
.post-body th { font-weight: 600; color: var(--ink); background: var(--paper-sunken); }
.post-body hr { border: none; border-top: 1px solid var(--border-hairline); margin: 40px 0; }
.post-body img {
  max-width: 100%; height: auto; display: block; margin: 0 0 24px;
  border-radius: 14px; border: 1px solid var(--border-hairline);
}

/* inline CTA */
.post__cta {
  background: var(--ember-50); border: 1px solid var(--ember-100); border-radius: var(--radius-lg);
  padding: 24px 26px; margin: 40px 0 32px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.post__cta > div { flex: 1; min-width: 220px; }
.post__cta-title { font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.post__cta-sub { font-size: 15px; color: var(--stone-600); }

/* author bio */
.author-bio {
  display: flex; gap: 16px; align-items: flex-start; margin-top: 28px; padding: 22px 24px;
  background: var(--paper-sunken); border: 1px solid var(--border-hairline); border-radius: var(--radius-lg);
}
.author-bio__avatar { width: 52px; height: 52px; font-size: 18px; }
.author-bio__name { font-size: 15px; font-weight: 600; color: var(--ink); }
.author-bio__role { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.author-bio__text { margin: 0; font-size: 14px; line-height: 1.6; color: var(--stone-600); }

/* ---------- related + index cards ---------- */
.related { border-top: 1px solid var(--border-hairline); margin-top: 56px; }
.related__inner, .blog-index__inner { max-width: 1080px; margin: 0 auto; padding: 56px 24px; }
.related__label, .blog-index__head .eyebrow {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-faint); margin-bottom: 22px; display: block;
}
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.post-card {
  display: block; text-decoration: none; border: 1px solid var(--border-hairline);
  border-radius: var(--radius-lg); overflow: hidden; background: var(--surface-card);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .18s var(--ease-out), transform .18s var(--ease-out);
}
.post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.post-card__body { padding: 18px 20px 22px; }
.post-card__title {
  font-size: 17px; font-weight: 600; line-height: 1.3; letter-spacing: -0.02em;
  color: var(--ink); margin: 8px 0 10px; text-wrap: balance;
}
.post-card__meta { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); }

/* Per-kind card covers — each post type reads differently at a glance. */
.card__cover {
  height: 150px; border-bottom: 1px solid var(--border-hairline);
  display: flex; align-items: center; overflow: hidden;
}
.card__cover--phone {
  background: var(--paper-sunken); flex-direction: column; justify-content: center; gap: 12px;
}
.card__cover--vs { background: var(--paper-sunken); justify-content: center; gap: 12px; }
.card__cover--quote {
  background: var(--ember-50); border-bottom-color: var(--ember-100); justify-content: center;
}
.card__cover--quote span {
  font-size: 120px; line-height: 0.7; font-weight: 600; color: var(--ember-300);
}
.card__cover--numeral {
  background: var(--ink-pure); flex-direction: column; align-items: flex-start;
  justify-content: center; padding: 0 20px; gap: 4px;
}
.card__numeral-kicker {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: oklch(0.7 0.03 60);
}
.card__numeral {
  font-family: var(--font-mono); font-size: 44px; font-weight: 600;
  color: var(--paper); letter-spacing: -0.02em; line-height: 1;
}

/* ---------- blog index ---------- */
.blog-index__head { max-width: 640px; margin-bottom: 40px; }
.blog-index__title {
  margin: 8px 0 16px; font-size: 44px; line-height: 1.08; font-weight: 600;
  letter-spacing: -0.03em; color: var(--ink-pure); text-wrap: balance;
}
.blog-index__sub { margin: 0; font-size: 20px; line-height: 1.5; color: var(--stone-600); }
.blog-index__empty { color: var(--text-muted); }

/* ---------- newsletter ---------- */
.newsletter { background: var(--ember-50); border-top: 1px solid var(--ember-100); }
.newsletter__inner { max-width: 680px; margin: 0 auto; padding: 56px 24px; text-align: center; }
.newsletter__title {
  margin: 0 0 12px; font-size: 30px; line-height: 1.15; font-weight: 600;
  letter-spacing: -0.02em; color: var(--ink-pure); text-wrap: balance;
}
.newsletter__sub { margin: 0 0 24px; font-size: 17px; line-height: 1.55; color: var(--stone-600); }

/* ---------- legal page ---------- */
.legal__inner { max-width: 760px; margin: 0 auto; padding: 56px 24px 8px; }
.legal__title { font-size: clamp(30px, 5vw, 42px); line-height: 1.06; letter-spacing: -0.03em;
  color: var(--ink-pure); margin: 0 0 8px; text-wrap: balance; }
.legal__updated { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); margin: 0 0 28px; }
.legal-note { background: var(--ember-50); border: 1px solid var(--ember-100);
  border-radius: var(--radius-md); padding: 14px 18px; margin: 0 0 28px; font-size: 14px; color: var(--ink); }
.legal-note code { font-size: 12.5px; }
.legal-toc { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 0 0 32px; padding: 0;
  list-style: none; font-family: var(--font-mono); font-size: 13px; }
.legal-toc a { color: var(--ember-700); text-decoration: none; }
.legal-toc a:hover { text-decoration: underline; }

/* ---------- footer ---------- */
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.footer-legal a { color: var(--text-muted); text-decoration: none; font-size: 13px;
  transition: color .15s var(--ease-out); }
.footer-legal a:hover { color: var(--ink-pure); }
.site-footer { background: var(--paper); border-top: 1px solid var(--border-hairline); }
.site-footer__inner {
  max-width: 1120px; margin: 0 auto; padding: 40px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.site-footer__nav { display: flex; align-items: center; gap: 24px; }
.site-footer__copy { font-family: var(--font-mono); font-size: 12px; color: var(--text-faint); }

/* ========================================================================
   POST HERO — varies by kind so a guide, comparison, essay and changelog
   each open on a visibly different page (Blog Templates v2).
   ======================================================================== */
.post-hero--guide, .post-hero--comparison {
  background: var(--paper-sunken); border-bottom: 1px solid var(--border-hairline);
}
.post-hero__inner {
  max-width: 1080px; margin: 0 auto; padding: 52px 24px;
  display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 56px; align-items: center;
}
.post-hero__sub {
  margin: 0 0 28px; font-size: 21px; line-height: 1.55; color: var(--stone-600); text-wrap: pretty;
}
.post-hero__inner .post__title { margin: 14px 0 20px; }
.post-hero__media { justify-self: center; }
.post-hero .byline { margin: 0; border-bottom: none; padding-bottom: 0; }

/* opinion — centred essay opener */
.post-hero__center { max-width: 680px; margin: 0 auto; padding: 72px 24px 8px; text-align: center; }
.post-hero__badge { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.post__title--display { font-size: 52px; line-height: 1.05; }
.post-hero--opinion .post-hero__sub { max-width: 560px; margin: 0 auto 28px; }
.byline--center { justify-content: center; border-top: none; padding: 0; }
.byline--center .byline__who { flex: 0 1 auto; text-align: left; }

/* update — narrow column + dark version numeral */
.post-hero--update { padding-top: 56px; }
.post-hero--update .post-hero__narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.numeral-cover {
  margin: 24px 0 8px; border-radius: var(--radius-lg); background: var(--ink-pure);
  padding: 30px 34px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.numeral-cover__kicker {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: oklch(0.7 0.03 60); margin-bottom: 8px;
}
.numeral-cover__num {
  font-family: var(--font-mono); font-size: 64px; font-weight: 600; color: var(--paper); line-height: 1;
}

/* narrow body wrapper for single-column kinds */
.post__grid--narrow { grid-template-columns: minmax(0, 720px); max-width: 720px; padding-top: 40px; }

/* ========================================================================
   PHONE MOCKUP + RECORD BUTTON — the signature "watch the app work" art
   ======================================================================== */
.phone {
  width: 272px; flex: none; border-radius: 42px; background: var(--ink-pure);
  padding: 9px; box-shadow: var(--shadow-lg);
}
.phone__screen {
  border-radius: 34px; overflow: hidden; background: var(--paper);
  height: 540px; display: flex; flex-direction: column;
}
.phone__status {
  display: flex; align-items: center; justify-content: space-between; padding: 14px 22px 8px;
  font-family: var(--font-mono); font-size: 11px; color: var(--text-muted);
}
.phone__time { font-weight: 600; color: var(--ink); }
.phone__net { letter-spacing: 0.06em; text-transform: uppercase; }
.phone__batt { width: 16px; height: 9px; border: 1px solid var(--text-muted); border-radius: 3px; }
.phone__heading {
  padding: 4px 22px 0; font-size: 20px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink-pure);
}
.phone__stage {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px;
}
.phone__hint { font-size: 15px; color: var(--text-muted); }
.phone__foot { padding: 0 26px 30px; }
.phone__foot .waveform { height: 40px; }

.record-btn {
  width: var(--rb, 96px); height: var(--rb, 96px); border-radius: 999px; flex: none;
  background: var(--ember-500); box-shadow: var(--shadow-ember);
  display: inline-flex; align-items: center; justify-content: center; position: relative;
}
.record-btn::before {
  content: ""; position: absolute; inset: 14%; border: 2px solid var(--text-on-ember);
  border-radius: 999px; opacity: 0.5;
}
.record-btn::after {
  content: ""; width: 34%; height: 34%; border-radius: 999px; background: var(--text-on-ember);
}
.waveform--dim { gap: 3px; }
.waveform--dim span { width: 3px; background: var(--stone-300); opacity: 1; }
.waveform--tiny { height: 22px; }

/* ========================================================================
   VS COVER — comparison motif (brand-safe, no competitor asset needed)
   ======================================================================== */
.vs-cover { display: flex; align-items: center; gap: 14px; }
.vs-cover__chip {
  height: 84px; min-width: 96px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-family: var(--font-sans); font-weight: 600; font-size: 16px;
}
.vs-cover__chip--them { background: var(--paper-raised); border: 1px solid var(--border-strong); }
.vs-cover__chip--them span {
  width: 8px; height: 8px; border-radius: 999px; background: var(--stone-300);
}
.vs-cover__chip--meaty { background: var(--ember-500); color: var(--text-on-ember); box-shadow: var(--shadow-ember); }
.vs-cover__pill {
  font-family: var(--font-mono); font-size: 13px; font-weight: 600; color: var(--text-muted);
  width: 34px; height: 34px; border-radius: 999px; background: var(--surface-card);
  border: 1px solid var(--border-strong); display: flex; align-items: center; justify-content: center;
}

/* ========================================================================
   BODY VARIANTS — steps, verdict callout, drop cap
   ======================================================================== */
/* Guide & comparison ordered lists become numbered "steps" with ember badges. */
.post-body--guide ol, .post-body--comparison ol {
  list-style: none; counter-reset: step; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.post-body--guide ol li, .post-body--comparison ol li {
  counter-increment: step; position: relative; padding-left: 46px; margin: 0;
}
.post-body--guide ol li::before, .post-body--comparison ol li::before {
  content: counter(step); position: absolute; left: 0; top: -2px;
  width: 30px; height: 30px; border-radius: 999px;
  background: var(--ember-50); border: 1px solid var(--ember-100); color: var(--ember-700);
  font-family: var(--font-mono); font-size: 14px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}

/* Comparison lead paragraph (the "short answer") becomes a verdict callout. */
.post-body--comparison > p:first-child {
  background: var(--ember-50); border: 1px solid var(--ember-100); border-left: 3px solid var(--ember-500);
  border-radius: var(--radius-md); padding: 18px 22px; margin-bottom: 28px;
  font-size: 18px; line-height: 1.6; color: var(--ink);
}
.post-body--comparison table { border: 1px solid var(--border-hairline); border-radius: var(--radius-md); }
.post-body--comparison thead th { background: var(--paper-sunken); }
.post-body--comparison tbody td:last-child { color: var(--ink); font-weight: 500; }

/* Opinion — roomier measure and a drop cap on the opening paragraph. */
.post-body--opinion { font-size: 20px; line-height: 1.8; }
.post-body--opinion > p:first-child::first-letter {
  float: left; font-size: 64px; line-height: 0.8; font-weight: 600; color: var(--ember-500);
  padding: 8px 12px 0 0; letter-spacing: -0.03em;
}

/* ========================================================================
   FEATURED CARD — the lead post on the index
   ======================================================================== */
.feature-card {
  display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 40px; align-items: center;
  text-decoration: none; border: 1px solid var(--border-hairline); border-radius: var(--radius-lg);
  background: var(--surface-card); box-shadow: var(--shadow-sm); overflow: hidden;
  padding: 36px 40px; margin-bottom: 32px;
  transition: box-shadow .18s var(--ease-out), transform .18s var(--ease-out);
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feature-card--comparison, .feature-card--opinion, .feature-card--update { align-items: center; }
.feature-card__media { justify-self: center; transform: scale(0.86); }
.feature-card__title {
  margin: 12px 0 12px; font-size: 30px; line-height: 1.15; font-weight: 600;
  letter-spacing: -0.02em; color: var(--ink-pure); text-wrap: balance;
}
.feature-card__desc { margin: 0 0 16px; font-size: 17px; line-height: 1.55; color: var(--stone-600); }
.feature-card__meta { font-family: var(--font-mono); font-size: 13px; font-weight: 500; color: var(--ember-700); }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .post__grid { grid-template-columns: minmax(0, 1fr); gap: 0; padding-top: 32px; }
  .post__grid--narrow { max-width: 100%; }
  .toc { display: none; }
  .post__title { font-size: 34px; }
  .post__title--display { font-size: 38px; }
  .post-hero__inner, .feature-card { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .post-hero__media, .feature-card__media { display: none; }
  .post-hero__inner { padding: 36px 24px; }
  .numeral-cover__num { font-size: 48px; }
  .card-grid { grid-template-columns: 1fr; }
  .blog-index__title { font-size: 32px; }
}

/* Phones: slim the header so it fits without scrolling sideways. Keep the
   logo (→ home), the Guides link (→ blog index) and the CTA; drop the rest. */
@media (max-width: 600px) {
  .site-header__inner { padding: 0 16px; }
  .site-nav { gap: 16px; }
  .brand__section { display: none; }
  a[data-navlink][href="/"] { display: none; }
}
