/*
 * Change Stories Section
 * Editorial, image-forward grid — IDEO.org influenced.
 * Tekvera Initiative Theme
 */

.tv-stories-section { background-color: var(--tv-cream); }

.tv-stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* Featured first story — spans full width or 2 cols */
.tv-stories-grid--featured .tv-story-card:first-child {
  grid-column: span 2;
}

.tv-stories-grid--featured .tv-story-card:first-child .tv-story-card__thumb {
  aspect-ratio: 16 / 7;
}

@media (max-width: 1024px) {
  .tv-stories-grid { grid-template-columns: repeat(2, 1fr); }
  .tv-stories-grid--featured .tv-story-card:first-child { grid-column: span 2; }
}

@media (max-width: 640px) {
  .tv-stories-grid,
  .tv-stories-grid--featured {
    grid-template-columns: 1fr;
  }
  .tv-stories-grid--featured .tv-story-card:first-child {
    grid-column: span 1;
  }
}
