/**
 * Press Grid section
 */

.press {
  padding: var(--space-section) 0;
  background: var(--color-surface-tint);
}

.press h2 {
  margin-bottom: 18px;
}

.press-grid {
  gap: 20px;
}

.press-grid>* {
  flex: 1 1 calc(50% - 10px);
}

.press-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
}

.press-source {
  gap: 8px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-pink-500);
  margin-bottom: 14px;
}

.press-source::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-pink-500);
}

.press-card p {
  font-size: 14px;
  color: var(--color-ink-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.press-link:hover {
  /* Blue Jay, not Day Sky Blue — this card sits on a light surface, where the
     pastel would drop to ~1.5:1 against the background. */
  color: var(--color-sky-blue);
}