:root {
  --bg: #fbfaf7;
  --fg: #2b2b2b;
  --muted: #6b6b6b;
  --accent: #2f5d50;
  --rule: #e4e1da;
  --code: #f1efe9;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1c1c1a;
    --fg: #e6e3dc;
    --muted: #9c9a94;
    --accent: #8fc1b0;
    --rule: #33332f;
    --code: #262624;
  }
}
* { box-sizing: border-box; }
html { font-size: 17px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
}
.wrap { max-width: 42rem; margin: 0 auto; padding: 2rem 1.2rem 4rem; }
header.site { border-bottom: 1px solid var(--rule); padding-bottom: 1rem; margin-bottom: 2rem; }
header.site .title { font-size: 1.35rem; font-weight: bold; text-decoration: none; color: var(--fg); }
header.site nav { float: right; font-size: 0.95rem; }
header.site nav a { color: var(--muted); text-decoration: none; margin-left: 1rem; }
header.site nav a:hover { color: var(--accent); }
header.site::after { content: ""; display: block; clear: both; }
a { color: var(--accent); }
h1 { font-size: 1.7rem; line-height: 1.25; margin: 0 0 0.4rem; }
h2 { font-size: 1.25rem; margin-top: 2rem; }
.meta { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.6rem; }
ul.posts { list-style: none; padding: 0; }
ul.posts li { margin: 0 0 1.2rem; }
ul.posts time { color: var(--muted); font-size: 0.9rem; display: block; }
ul.posts a { font-size: 1.1rem; text-decoration: none; }
ul.posts a:hover { text-decoration: underline; }
ul.posts p { margin: 0.2rem 0 0; color: var(--muted); }
pre, code { font-family: Menlo, Consolas, monospace; font-size: 0.86rem; }
code { background: var(--code); padding: 0.1rem 0.3rem; border-radius: 3px; }
pre { background: var(--code); padding: 0.9rem 1rem; overflow-x: auto; border-radius: 4px; }
pre code { background: none; padding: 0; }
blockquote { margin: 1rem 0; padding-left: 1rem; border-left: 3px solid var(--rule); color: var(--muted); }
footer.site { border-top: 1px solid var(--rule); margin-top: 3rem; padding-top: 1rem; color: var(--muted); font-size: 0.85rem; }
