/* ── Inner page layout ───────────────────────────────────── */
main {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 8rem 2rem 5rem;
}

.divider { margin: 1.5rem 0 3rem; }

/* ── Prose ───────────────────────────────────────────────── */
.prose section { margin-bottom: 2.5rem; }

.prose h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.prose p {
  font-size: 0.95rem;
  color: var(--muted-2);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.prose p:last-child { margin-bottom: 0; }

.prose a { color: var(--accent); text-decoration: none; }
.prose a:hover { text-decoration: underline; }

.prose strong { color: var(--text); font-weight: 600; }
