:root {
  --dark: #0d0d0d;
  --dark-surface: #161616;
  --dark-card: #1e1e1e;
  /* --accent: #e63946; */
  --text: #f1f1f1;
  --text-muted: #999;
  --border: #2a2a2a;
}


/* ── SECTION CHROME ──────────────────────── */

/* .section {
  background-color: var(--dark);
}

.section-heading {
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
  color: var(--text) !important;
}

.section-rule {
  width: 60px;
  height: 3px;
  background: var(--accent);
  border: none;
  margin: 0 0 2.5rem 0;
} */

/* ── PRESS CARDS ─────────────────────────── */

.press-item {
  background-color: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.press-item:last-child {
  margin-bottom: 0;
}

.press-meta {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.press-publication {
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.press-date {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.press-lede {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text) !important;
  line-height: 1.4;
  margin-bottom: 0.35rem;
}

.press-author {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.press-copy p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.press-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--accent);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: opacity 0.2s;
}

.press-link:hover {
  color: var(--accent);
  opacity: 0.8;
}