/* JAS Cleaning blog post styles — ported verbatim from the shared <style> block in
   src/website/blog/<slug>.html article pages. Linked from the Next /blog/[slug] route via PageStyles
   (precedence jas-4-page) so each post renders pixel-for-pixel like its finalized static page. */
  .post-hero { padding: 56px 56px 32px; max-width: 760px; margin: 0 auto; }
  .post-hero .meta { font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.14em; text-transform: uppercase; }
  .post-hero h1 { font-family: var(--display); font-size: 56px; line-height: 1.05; letter-spacing: -0.02em; margin: 18px 0; font-weight: 400; }
  .post-hero h1 em { color: var(--leaf); font-style: italic; }
  .post-hero .author { display: flex; align-items: center; gap: 12px; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .post-hero .av { width: 44px; height: 44px; border-radius: 999px; background: var(--coral-soft); color: #7C2D17; display: grid; place-items: center; font-family: var(--display); font-size: 20px; }
  .post-hero .author-name { font-size: 14px; font-weight: 500; }
  .post-hero .author-meta { font-family: var(--mono); font-size: 11px; color: var(--ink-3); margin-top: 2px; letter-spacing: 0.06em; }

  .post-body { max-width: 760px; margin: 0 auto; padding: 32px 56px 64px; font-size: 17px; line-height: 1.7; color: var(--ink); }
  .post-body p { margin-bottom: 18px; }
  .post-body h2 { font-family: var(--display); font-size: 32px; letter-spacing: -0.02em; margin: 36px 0 14px; font-weight: 400; }
  .post-body h3 { font-family: var(--display); font-size: 22px; letter-spacing: -0.01em; margin: 28px 0 10px; font-weight: 400; }
  .post-body ul, .post-body ol { padding-left: 22px; margin-bottom: 18px; }
  .post-body li { margin-bottom: 8px; }
  .post-body blockquote { border-left: 3px solid var(--leaf); padding: 4px 0 4px 20px; margin: 24px 0; font-family: var(--display); font-size: 22px; line-height: 1.4; color: var(--ink-2); font-style: italic; }

  .post-cta { background: var(--ink); color: var(--paper); border-radius: var(--r-lg); padding: 28px 32px; margin: 32px 0; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
  .post-cta h3 { font-family: var(--display); font-size: 24px; color: var(--paper); letter-spacing: -0.01em; }
  .post-cta p { color: rgba(244,239,230,0.75); font-size: 14px; margin-top: 4px; }

  .post-share { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); }

  @media (max-width: 900px) {
    .post-hero { padding: 32px 24px; }
    .post-hero h1 { font-size: 36px; }
    .post-body { padding: 24px 24px 48px; font-size: 16px; }
    .post-cta { grid-template-columns: 1fr; }
  }
