/* programs-grid */
.abc-programs-grid {
  display: grid;
  /* auto-fit: when there are fewer cards than the row width supports,
     the remaining cards stretch to fill instead of clustering left. */
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-4);
}
.abc-program-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.abc-program-img { aspect-ratio: 16 / 9; background: var(--bg-sunken); }
.abc-program-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.abc-program-body { padding: var(--s-4); }
.abc-program-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: var(--fs-h5); margin: 0 0 var(--s-2);
  line-height: var(--lh-tight);
}
.abc-program-summary {
  font-family: var(--font-body); font-size: var(--fs-sm);
  color: var(--fg-muted); margin: 0;
}
