/* ──────────────────────────────────────────────────────────
   NEWS / PRESS — page-specific styles.
   Reuses the blog index shell (.blog-index-section / .blog-index-header /
   .label-mono) from blog.css + base.css. Only the card grid is new: press
   cards carry a thumbnail and link out to the original publication.
   ────────────────────────────────────────────────────────── */

.news-intro {
  margin-top: 20px;
  max-width: 60ch;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--gray-6);
}

/* ── GRID ── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 48px;
}

/* ── CARD ── */
.news-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule-soft);
  transition: opacity 0.2s;
}

/* Dim siblings on hover, mirroring the blog index affordance. */
.news-grid:hover .news-card:not(:hover) {
  opacity: 0.5;
}

.news-card-thumb {
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--rule-soft);
  aspect-ratio: 16 / 9;
}

.news-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-card:hover .news-card-thumb img {
  transform: scale(1.03);
}

.news-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-5);
}

.news-card-outlet {
  color: var(--ink);
  font-weight: 500;
}

.news-card-meta time::before {
  content: "·";
  margin-right: 12px;
  color: var(--gray-5);
}

.news-card-title {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.news-card-blurb {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-6);
  line-height: 1.6;
  max-width: 60ch;
}

.news-card-link {
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-5);
  transition: color 0.2s;
}

.news-card:hover .news-card-link {
  color: var(--ink);
}

.news-empty {
  font-size: 15px;
  font-weight: 300;
  color: var(--gray-6);
}

@media (max-width: 720px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
