/* ════════════════════════════════════════════════════════════════════════
   Editorial / article prose — CANONICAL long-form body typography.
   Single source of truth, shared by the blog SPA (article body) and the
   style guide (documentation). Render CMS / long-form HTML by wrapping it
   in <div class="prose">. All values use design-system tokens; the quote is
   the chosen "mint quotation mark" treatment (variant 4). Build copies this
   to /static/css/prose.css; the style guide links it directly.
   ════════════════════════════════════════════════════════════════════════ */

.prose { font-size: 16.5px; line-height: 1.75; color: var(--fg-body); }
.prose > :first-child { margin-top: 0; }
.prose p { margin: 0 0 18px; }
.prose h1 { font-size: 27px; font-weight: 800; letter-spacing: -.02em; line-height: 1.2; color: var(--fg-heading-2); margin: 28px 0 14px; }
.prose h2 { font-size: 23px; font-weight: 800; letter-spacing: -.02em; color: var(--fg-heading-2); margin: 34px 0 12px; }
.prose h3 { font-size: 18.5px; font-weight: 700; letter-spacing: -.01em; color: var(--fg-heading-2); margin: 26px 0 8px; }
.prose h4 { font-size: 16px; font-weight: 700; color: var(--fg-heading-2); margin: 22px 0 6px; }
.prose ul { margin: 0 0 18px; padding-left: 22px; display: flex; flex-direction: column; gap: 8px; }
.prose ol { margin: 0 0 18px; padding-left: 24px; list-style: decimal; }
.prose ol li { margin: 0 0 8px; }
.prose ol li:last-child { margin-bottom: 0; }
.prose a { color: var(--brand-blue); font-weight: 600; text-decoration: underline; }
.prose strong { font-weight: 700; color: var(--fg-heading-2); }

/* Quote — large mint quotation mark, no rule (chosen variant 4). */
.prose blockquote { position: relative; margin: 30px 0; padding: 2px 0 2px 56px; font-size: 19px; font-weight: 600; line-height: 1.5; color: var(--fg-heading-2); }
.prose blockquote::before { content: "\201C"; position: absolute; left: -2px; top: 0.2em; font-family: Georgia, "Times New Roman", serif; font-size: 60px; line-height: 0.7; color: var(--brand-green-mint); pointer-events: none; }
.prose blockquote p { margin: 0; font: inherit; color: inherit; }
.prose blockquote p + p { margin-top: 14px; }
