:root {
  --bg: #fdfdfc;
  --ink: #1a1a1c;
  --muted: #6e6e73;
  --line: #e4e2dd;
  --accent: #0f4d3a;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #111113;
    --ink: #e8e6e1;
    --muted: #98979b;
    --line: #29292c;
    --accent: #7fc8a9;
  }
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font: 400 0.9375rem/1.7 ui-monospace, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
  letter-spacing: 0;
  padding: clamp(3rem, 10vh, 7rem) 1.5rem 4rem;
}
main { max-width: 38rem; margin: 0 auto; }
h1 { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.01em; }
.role { color: var(--muted); margin-top: 0.2rem; }
.intro { margin-top: 2.25rem; }
.intro p + p { margin-top: 1rem; }
section { margin-top: 3rem; }
h2 {
  font: 500 0.75rem/1 ui-monospace, "SF Mono", Menlo, monospace;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}
ul { list-style: none; }
li { padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.item-title { font-weight: 550; }
.item-note { color: var(--muted); font-size: 0.975rem; margin-top: 0.15rem; }
.tag {
  font: 500 0.7rem/1 ui-monospace, "SF Mono", Menlo, monospace;
  letter-spacing: 0.06em;
  color: var(--accent);
  white-space: nowrap;
  margin-left: 0.5rem;
}
a { color: inherit; text-decoration: none; }
a.item-link:hover .item-title,
a:hover .item-title { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.links { display: flex; flex-wrap: wrap; gap: 0.4rem 1.6rem; padding-top: 1.1rem; }
.links a { font: 450 0.9rem/1 ui-monospace, "SF Mono", Menlo, monospace; color: var(--muted); }
.links a:hover { color: var(--ink); }
footer { margin-top: 4.5rem; color: var(--muted); font-size: 0.8rem; }

/* posts */
.crumb { font: 450 0.9rem/1 ui-monospace, "SF Mono", Menlo, monospace; color: var(--muted); }
.crumb:hover { color: var(--ink); }
.post-date {
  font: 450 0.8rem/1 ui-monospace, "SF Mono", Menlo, monospace;
  color: var(--muted);
  letter-spacing: 0.04em;
}
article { margin-top: 2.25rem; }
article h1 { margin-bottom: 0.4rem; }
article h2 {
  font: 700 1rem/1.4 ui-monospace, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
  text-transform: none;
  letter-spacing: -0.005em;
  color: var(--ink);
  border: none;
  padding: 0;
  margin-top: 2.25rem;
}
article h3 { font-size: 1rem; margin-top: 1.75rem; }
article p { margin-top: 1rem; }
article ul, article ol { margin: 1rem 0 0 1.25rem; }
article ul { list-style: disc; }
article li { padding: 0.2rem 0; border: none; }
article a { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
article code {
  font: 450 0.9em ui-monospace, "SF Mono", Menlo, monospace;
  background: var(--line);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}
article pre {
  background: var(--line);
  padding: 1rem 1.2rem;
  border-radius: 8px;
  overflow-x: auto;
  margin-top: 1rem;
}
article pre code { background: none; padding: 0; }
article blockquote {
  border-left: 2px solid var(--accent);
  padding-left: 1.1rem;
  color: var(--muted);
  margin-top: 1rem;
}
