.category-hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 44px 28px 8px;
}
.category-hero .article-tag { margin-bottom: 16px; }
.category-hero h1 {
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: var(--ink);
}
.category-hero p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  opacity: .75;
  max-width: 60ch;
  margin: 0;
}

.category-grid {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 28px 60px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.cat-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-on-paper);
}
.cat-card:last-child { border-bottom: none; padding-bottom: 0; }
.cat-card-figure {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--paper-dim);
}
.cat-card-figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cat-card h2 { font-size: 20px; line-height: 1.32; font-weight: 700; margin: 0 0 8px; }
.cat-card h2 a:hover { color: var(--steel); }
.cat-card p { font-size: 14.5px; line-height: 1.55; color: var(--ink); opacity: .75; margin: 0 0 10px; }
.cat-card .card-meta { font-size: 12.5px; color: var(--ink); opacity: .55; display: flex; gap: 8px; align-items: center; }
.cat-card .card-meta .sep { opacity: .5; }

.category-empty {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 28px 60px;
  font-size: 14px;
  color: var(--ink);
  opacity: .55;
  font-style: italic;
}

@media (max-width: 640px) {
  .cat-card { grid-template-columns: 1fr; }
}
