:root {
  --bg: #f8f5f0;
  --text: #1c1a17;
  --link: #7a1818;
  --meta: #7a7268;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0e0d0c;
    --text: #e8e3db;
    --link: #c4855a;
    --meta: #8a847c;
  }
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 650px;
  margin: 48px auto;
  padding: 0 20px;
  background: var(--bg);
  color: var(--text);
}

header.site-header { margin-bottom: 36px; border: none; }
.site-title { font-size: 1.85rem; margin: 0; font-weight: normal; letter-spacing: -0.01em; }
.site-glyph { color: var(--link); }
a { color: var(--link); text-decoration: underline; text-underline-offset: 3px; }
.back-link { display: inline-block; font-size: 0.88rem; font-family: -apple-system, sans-serif; text-decoration: none; color: var(--meta); margin-bottom: 20px; }

.post-list { list-style: none; padding: 0; margin: 0; }
.post-item { margin-bottom: 28px; border: none; padding: 0; }
.post-date { font-size: 0.8rem; color: var(--meta); font-family: -apple-system, sans-serif; margin: 0 0 4px 0; }
.post-title { font-size: 1.25rem; margin: 0; font-weight: normal; }
.post-title a { color: var(--text); text-decoration: none; }
.post-title a:hover { color: var(--link); }

.post-header { margin-bottom: 28px; border: none; }
.post-meta { font-size: 0.8rem; color: var(--meta); font-family: -apple-system, sans-serif; margin: 0; }
article p { margin-bottom: 1.25rem; }
blockquote { margin: 1.5rem 0; padding: 0 0 0 1rem; border-left: none; color: var(--meta); font-style: italic; }

.pagination { margin-top: 40px; font-family: -apple-system, sans-serif; font-size: 0.9rem; }
.pagination a { margin-right: 20px; text-decoration: none; color: var(--link); }
.pagination a:hover { text-decoration: underline; }

footer { margin-top: 56px; font-size: 0.8rem; color: var(--meta); font-family: -apple-system, sans-serif; border: none; }
