:root { color-scheme: light dark; }
* { box-sizing: border-box; }
body {
  font: 17px/1.6 system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  max-width: 42rem;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
  color: #1a1a1a;
  background: #fff;
}
@media (prefers-color-scheme: dark) {
  body { color: #e6e6e6; background: #121212; }
  a { color: #7ab7ff; }
}
a { color: #0a58ca; text-decoration: none; }
a:hover { text-decoration: underline; }
.site-header { font-weight: 600; margin-bottom: 2.5rem; }
.site-header a { color: inherit; }
.site-footer { margin-top: 4rem; font-size: .85rem; opacity: .6; }
h1 { line-height: 1.2; }
.meta { font-size: .85rem; opacity: .65; }
.post-list { list-style: none; padding: 0; }
.post-list li { margin: .5rem 0; display: flex; gap: .75rem; align-items: baseline; }
pre { padding: 1rem; overflow-x: auto; background: rgba(127,127,127,.12); border-radius: 6px; }
code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .9em; }
blockquote { margin: 0; padding-left: 1rem; border-left: 3px solid rgba(127,127,127,.4); opacity: .85; }
