.post-hero {
  background: var(--surface);
  border-bottom: 1px solid #ddd;
  padding: 1.25rem 0 2.5rem;
}

.post-article {
  padding: 2.5rem 0 4rem;
  background: var(--surface);
}

.post-article .shell {
  max-width: 46rem;
}

.post-article__category {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-green);
}

.post-article__category a {
  color: inherit;
  text-decoration: none;
}

.post-article__category a:hover,
.post-article__category a:focus-visible {
  text-decoration: underline;
}

.post-article__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.post-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  margin-top: 1rem;
  font-size: 0.9375rem;
  color: var(--ink-muted);
}

.post-article__content {
  margin-top: 2rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
}

.post-article__content p {
  margin: 0 0 1.25rem;
}

.post-article__content a {
  font-weight: 600;
}

.post-article__content img {
  margin: 1.5rem 0;
  border-radius: 0.25rem;
}

.post-article__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #ddd;
  font-size: 0.9375rem;
}

.post-article__nav a {
  max-width: 45%;
  font-weight: 600;
}