:root {
  --bg: #faf6ed;
  --text: #2b2b2b;
  --muted: #6b6458;
  --accent: #1a3d2e;
  --border: #d9d2c3;
  --max-width: 680px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 18px; line-height: 1.65; -webkit-text-size-adjust: 100%; }
body {
  font-family: Georgia, 'Times New Roman', serif;
  background: var(--bg);
  color: var(--text);
  padding: 40px 20px;
}
.container { max-width: var(--max-width); margin: 0 auto; }
header {
  text-align: center;
  padding-bottom: 32px;
  margin-bottom: 48px;
  border-bottom: 2px solid var(--accent);
}
header h1 {
  font-size: 2.4rem;
  font-weight: normal;
  letter-spacing: 0.5px;
  color: var(--accent);
}
header h1 a { color: inherit; text-decoration: none; }
header .tagline {
  font-size: 0.95rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 8px;
}
nav {
  margin-top: 20px;
  font-size: 0.9rem;
}
nav a {
  color: var(--text);
  text-decoration: none;
  margin: 0 12px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}
nav a:hover { border-bottom-color: var(--accent); }
main h2 {
  font-size: 1.5rem;
  margin: 40px 0 16px;
  font-weight: normal;
  color: var(--accent);
}
main h3 {
  font-size: 1.2rem;
  margin: 28px 0 12px;
  font-weight: normal;
  color: var(--text);
}
main p { margin-bottom: 20px; }
main a { color: var(--accent); }
main ul, main ol { padding-left: 28px; margin-bottom: 20px; }
main li { margin-bottom: 8px; }
article time { color: var(--muted); font-size: 0.9rem; display: block; margin-bottom: 16px; }
.article-list { list-style: none; padding: 0; }
.article-list li { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.article-list li:last-child { border-bottom: none; }
.article-list a { font-size: 1.15rem; color: var(--accent); text-decoration: none; }
.article-list a:hover { text-decoration: underline; }
.article-list .excerpt { color: var(--muted); font-size: 0.95rem; margin-top: 6px; }
footer {
  margin-top: 80px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}
footer a { color: var(--muted); }
footer p { margin-bottom: 8px; }
@media (max-width: 600px) {
  html { font-size: 17px; }
  body { padding: 24px 16px; }
  header h1 { font-size: 1.9rem; }
  nav a { margin: 0 8px; display: inline-block; padding: 4px 0; }
}
