.blog-hero {
  padding: 8rem 2rem 1rem;
  max-width: 40rem;
  margin: 0 auto;
}

.blog-hero h1 {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.blog-hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.blog-index {
  max-width: 40rem;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
}

.post-card {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.post-card:last-child {
  border-bottom: none;
}

.post-card .post-meta {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.post-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: normal;
  text-transform: none;
  color: var(--fg);
  margin-bottom: 0.35rem;
}

.post-card h2 a {
  color: var(--fg);
  text-decoration: none;
  transition: color 0.2s;
}

.post-card h2 a:hover {
  color: var(--accent2);
}

.post-excerpt {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Post pages */
.post {
  max-width: 40rem;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
}

.post-back {
  display: inline-block;
  color: var(--accent2);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  transition: opacity 0.2s;
}

.post-back:hover {
  opacity: 0.7;
}

.post h1 {
  font-size: clamp(1.9rem, 5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.post > .post-meta {
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
  color: var(--muted);
}

.post .prose {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--fg);
}

.post .prose p {
  margin-bottom: 1.25rem;
  color: var(--muted);
}

.post .prose h2 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: normal;
  text-transform: none;
  color: var(--fg);
  margin: 2rem 0 0.75rem;
}

.post .prose ul {
  margin: 0 0 1.25rem 1.25rem;
  color: var(--muted);
}

.post .prose li {
  margin-bottom: 0.4rem;
}
