/* 06-components/_prose.css */
/* ── c-prose — headed long-form text, bounded measure */
.c-prose { max-width: var(--measure); color: var(--text); }
.c-prose > * + * { margin-top: var(--space-md); }
.c-prose h2, .c-prose h3 { margin-top: var(--space-xl); color: var(--text-bright); }
.c-prose h2::before { content: "## "; color: var(--accent); font-weight: var(--fw-regular); }
.c-prose h3::before { content: "### "; color: var(--text-dim); }
.c-prose code { color: var(--accent); background: var(--surface-sunken); padding: 0 0.5ch; }

