* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #1a1a1a;
  --fg: #e0e0e0;
  --fg-dim: #888;
  --accent: #c4a7e7;
  --code-bg: #252525;
  --measure: 65ch;
}

html {
  font-family: system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
}

body {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 2rem 1rem;
}

nav {
  margin-bottom: 3rem;
}

nav a {
  color: var(--fg-dim);
  text-decoration: none;
  font-size: 0.9rem;
}

nav a:hover {
  color: var(--fg);
}

article header {
  margin-bottom: 2rem;
}

article header h1 {
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

article header time {
  color: var(--fg-dim);
  font-size: 0.9rem;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

p {
  margin-bottom: 1em;
  text-indent: 1.5em;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  text-decoration-thickness: 2px;
}

code {
  font-family: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, monospace;
  font-size: 0.9em;
  background: var(--code-bg);
  padding: 0.15em 0.3em;
  border-radius: 3px;
}

strong {
  font-weight: 600;
}

.post-list {
  list-style: none;
}

.post-list li {
  margin-bottom: 0.5em;
  display: flex;
  gap: 1em;
  align-items: baseline;
}

.post-list time {
  color: var(--fg-dim);
  font-size: 0.9rem;
  flex-shrink: 0;
}
