:root {
  --bg: #fbfaf7;
  --fg: #23201b;
  --muted: #6b6459;
  --rule: #e2ddd2;
  --link: #7a4a1e;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1a1816;
    --fg: #e8e3da;
    --muted: #9a9287;
    --rule: #332f2a;
    --link: #d3a373;
  }
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 17px/1.65 Georgia, "Iowan Old Style", "Times New Roman", serif;
  -webkit-text-size-adjust: 100%;
}
.wrap { max-width: 34rem; margin: 0 auto; padding: 3rem 1.25rem 4rem; }
a { color: var(--link); }
a:hover { text-decoration: none; }
header.site { margin-bottom: 2.5rem; }
header.site h1 { font-size: 1.35rem; margin: 0 0 .3rem; letter-spacing: .01em; }
header.site h1 a { color: var(--fg); text-decoration: none; }
header.site p { margin: 0; color: var(--muted); font-size: .95rem; }
nav { margin-top: .9rem; font-size: .95rem; }
nav a { margin-right: 1rem; }
h2 { font-size: 1.15rem; margin: 2.2rem 0 .6rem; }
article h2 { margin-top: 0; }
time, .meta { color: var(--muted); font-size: .85rem; font-family: system-ui, sans-serif; }
ul.posts { list-style: none; padding: 0; margin: 0; }
ul.posts li { padding: .85rem 0; border-bottom: 1px solid var(--rule); }
ul.posts li:last-child { border-bottom: 0; }
ul.posts a { text-decoration: none; font-size: 1.05rem; }
ul.posts a:hover { text-decoration: underline; }
ul.posts .meta { display: block; margin-top: .15rem; }
blockquote {
  margin: 1.4rem 0; padding-left: 1rem;
  border-left: 3px solid var(--rule); color: var(--muted); font-style: italic;
}
footer.site {
  margin-top: 3.5rem; padding-top: 1.2rem;
  border-top: 1px solid var(--rule);
  color: var(--muted); font-size: .85rem; font-family: system-ui, sans-serif;
}
