/* ==========================================================================
   VIDEOS SECTION STYLES
   ========================================================================== */

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.video-card {
  background-color: #111;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Enforce fluid 16:9 widescreen ratio */
.video-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-info {
  padding: 1rem;
}

.video-info h3 {
  margin: 0 0 0.25rem 0;
}

.video-meta {
  font-size: 0.875rem;
  color: #888;
  margin-bottom: 0.5rem;
}

.video-credits {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 0;
  font-size: 0.875rem;
}