:root {
  --bg: #FAF8F4;
  --text: #222;
  --accent: #872A2A;
  --muted: #6E665C;
  --line: #E6E0D5;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font: 18px/1.65 "Charter", "Source Serif Pro", Georgia, serif;
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}
header { border-bottom: 1px solid var(--line); padding-bottom: 1rem; margin-bottom: 2.5rem; }
nav { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 1rem; }
nav .brand { color: var(--accent); text-decoration: none; font-weight: 600; font-size: 1.1rem; }
nav .links a { color: var(--text); text-decoration: none; margin-left: 1rem; }
nav .links a:hover { color: var(--accent); }
article header { border: none; padding: 0; margin: 0 0 2rem; }
article h1 { font-size: 1.75rem; line-height: 1.25; margin: 0 0 0.5rem; font-weight: 600; }
article .meta { color: var(--muted); font-size: 0.95rem; margin: 0; font-style: italic; }
article h2 { font-size: 1.2rem; margin: 2rem 0 0.5rem; font-weight: 600; }
article p { margin: 1rem 0; }
article a { color: var(--accent); }
article a:hover { text-decoration: none; }
article ul, article ol { margin: 1rem 0; padding-left: 1.5rem; }
article li { margin: 0.35rem 0; }
article blockquote { border-left: 3px solid var(--line); margin: 1.5rem 0; padding: 0.25rem 1rem; color: var(--muted); font-style: italic; }
.post-list { list-style: none; padding: 0; margin: 0; }
.post-list li { margin: 1.5rem 0; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
.post-list li:last-child { border-bottom: none; }
.post-list h2 { font-size: 1.2rem; margin: 0 0 0.25rem; font-weight: 600; }
.post-list h2 a { color: var(--text); text-decoration: none; }
.post-list h2 a:hover { color: var(--accent); }
.post-list .meta { color: var(--muted); font-size: 0.9rem; font-style: italic; }
.post-list .excerpt { margin: 0.5rem 0 0; color: var(--text); }
footer { border-top: 1px solid var(--line); margin-top: 3rem; padding-top: 1rem; color: var(--muted); font-size: 0.9rem; }
footer a { color: var(--accent); }
@media (max-width: 480px) {
  body { font-size: 17px; padding: 1.5rem 1rem 2rem; }
  article h1 { font-size: 1.5rem; }
  nav { gap: 0.5rem; }
  nav .links a { margin-left: 0.75rem; }
}
