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

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  background: #fff;
  color: #111;
  padding: 4rem 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.site-nav {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  margin-bottom: 4rem;
}

.site-nav .home-link {
  font-family: 'DM Mono', monospace;
  font-size: 0.85rem;
  color: #111;
  text-decoration: none;
}

.site-nav .home-link:hover { color: #888; }

.site-nav .page-links {
  display: flex;
  gap: 1.5rem;
}

.site-nav .page-links a {
  font-size: 0.85rem;
  color: #888;
  text-decoration: none;
}

.site-nav .page-links a:hover { color: #111; }
.site-nav .page-links a.active { color: #111; }

h1 {
  font-family: 'DM Mono', monospace;
  font-size: 0.85rem;
  font-weight: 400;
  color: #888;
  margin-bottom: 3rem;
  letter-spacing: 0.04em;
}

.item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.item:first-of-type { border-top: 1px solid #f0f0f0; }

.item-title {
  font-size: 0.95rem;
  color: #111;
  text-decoration: none;
  line-height: 1.4;
}

.item-title:hover { color: #888; }

.item-meta {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  color: #ccc;
  white-space: nowrap;
  flex-shrink: 0;
}

.item-sub {
  font-size: 0.8rem;
  color: #aaa;
  margin-top: 0.2rem;
}
