:root {
  --fg: #1a1a1a;
  --muted: #6b6b6b;
  --link: #1a1a1a;
  --bg: #fdfdfb;
  --border: #e5e5e0;
}

* { box-sizing: border-box; }

body {
  max-width: 640px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
}

header {
  margin-bottom: 2.5rem;
}

.site-title {
  font-weight: 600;
  text-decoration: none;
  color: var(--fg);
  font-size: 1.1rem;
}

a {
  color: var(--link);
}

a.tag {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  margin-right: 0.4rem;
}

a.tag:hover {
  text-decoration: underline;
}

.entry-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.entry-list li {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
}

.entry-list time {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.15rem;
}

.entry-list a {
  text-decoration: none;
  font-weight: 500;
}

.entry-list a:hover {
  text-decoration: underline;
}

.tags {
  display: block;
  margin-top: 0.2rem;
}

article .meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.tag-list {
  list-style: none;
  padding: 0;
}

.tag-list li {
  padding: 0.4rem 0;
}

.count {
  color: var(--muted);
  font-size: 0.85rem;
}

footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}
