:root {
  --bg: #0f1410;
  --surface: #1a2218;
  --text: #e8efe4;
  --muted: #9aab96;
  --accent: #7cb87a;
  --accent-soft: #2d4a2c;
  --border: #2a3528;
  --max: 760px;
  --font: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", system-ui, sans-serif;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font);
  background: radial-gradient(circle at top, #1a2618, var(--bg));
  color: var(--text);
  line-height: 1.7;
}
a { color: var(--accent); }
.site-header, .site-footer {
  font-family: var(--sans);
  background: rgba(15, 20, 16, 0.9);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
}
.site-footer { border-top: 1px solid var(--border); border-bottom: 0; margin-top: 3rem; }
.brand { font-size: 1.4rem; font-weight: 600; text-decoration: none; color: var(--text); }
.container { max-width: var(--max); margin: 0 auto; padding: 2rem 1.25rem 4rem; }
.post-list { list-style: none; padding: 0; margin: 2rem 0 0; }
.post-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.post-list a { text-decoration: none; color: var(--text); font-size: 1.15rem; }
.post-list a:hover { color: var(--accent); }
.post-meta { color: var(--muted); font-family: var(--sans); font-size: 0.9rem; }
.hero { text-align: center; padding: 2rem 0 1rem; }
.hero h1 { font-size: 2.4rem; margin-bottom: 0.4rem; }
.hero p { color: var(--muted); font-family: var(--sans); }
article.post h1 { font-size: 2.2rem; line-height: 1.2; margin-top: 0; }
article.post .content p { margin: 1rem 0; }
article.post .content h2, article.post .content h3 { margin-top: 2rem; color: #d7e8d2; }
.comments { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.comment { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 1rem; margin: 1rem 0; }
.comment header { display: flex; justify-content: space-between; gap: 1rem; font-family: var(--sans); font-size: 0.85rem; color: var(--muted); margin-bottom: 0.5rem; }
.back-link { font-family: var(--sans); display: inline-block; margin-bottom: 1rem; }