/* ── Blog — index + post ──────────────────────────────────────────────────── */

.blog-header { padding: 64px 0 40px; border-bottom: 1px solid var(--border); text-align: center; }
.blog-header h1 { font-family: 'Manrope', sans-serif; font-size: clamp(30px, 4.5vw, 42px); font-weight: 300; letter-spacing: -0.01em; margin-bottom: 12px; }
.blog-header p { color: var(--text2); font-size: 15px; max-width: 480px; margin: 0 auto; }

.post-list { padding: 8px 0 88px; }
.post-row {
  display: block; padding: 26px 0; border-bottom: 1px solid var(--border);
  text-decoration: none; color: inherit;
}
.post-date { font-size: 12.5px; color: var(--text3); margin-bottom: 6px; }
.post-title { font-size: 19px; font-weight: 700; margin-bottom: 8px; transition: color 0.15s; }
.post-row:hover .post-title { color: var(--accent); }
.post-excerpt { color: var(--text2); font-size: 14px; line-height: 1.6; max-width: 640px; }
.post-more { font-size: 12.5px; color: var(--text3); margin-top: 8px; }
.post-empty { padding: 48px 0 100px; color: var(--text3); text-align: center; }

/* single post */
.post-page { padding: 56px 0 96px; max-width: 660px; margin: 0 auto; }
.post-back { font-size: 13px; color: var(--text3); text-decoration: none; display: inline-block; margin-bottom: 28px; }
.post-back:hover { color: var(--accent); }
.post-page .post-meta { font-size: 12.5px; color: var(--text3); margin-bottom: 12px; }
.post-page h1.post-h { font-family: 'Manrope', sans-serif; font-size: clamp(28px, 4.2vw, 38px); font-weight: 300; letter-spacing: -0.01em; line-height: 1.15; margin-bottom: 36px; }

.prose { font-size: 16px; line-height: 1.75; color: var(--text); }
.prose > * + * { margin-top: 20px; }
.prose h2 { font-size: 22px; font-weight: 700; margin-top: 38px; letter-spacing: -0.01em; }
.prose h3 { font-size: 18px; font-weight: 700; margin-top: 30px; }
.prose strong { color: var(--text); font-weight: 700; }
.prose a { color: var(--accent); text-decoration: underline; }
.prose ul, .prose ol { padding-left: 20px; color: var(--text2); }
.prose li + li { margin-top: 6px; }
.prose code { font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace; background: var(--bg2); border: 1px solid var(--border); border-radius: 4px; padding: 2px 6px; font-size: 0.86em; color: var(--accent); }
.prose pre { background: var(--bg2); border: 1px solid var(--border); border-radius: 8px; padding: 16px 18px; overflow-x: auto; }
.prose pre code { background: none; border: none; padding: 0; color: var(--text2); font-size: 13px; line-height: 1.6; }
.prose blockquote { border-left: 2px solid var(--border); padding-left: 16px; color: var(--text2); }
