.media-section {
  max-width: var(--max-width);
  margin: 4rem auto;
  padding: 0 2rem;
}

.media-section h1 {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 2rem;
  text-align: center;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.video-embed {
  aspect-ratio: 16 / 9;
  background: #f5f5f5;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .media-section {
    margin: 2rem auto;
    padding: 0 1rem;
  }

  .media-section h1 { font-size: 1.4rem; }

  .video-grid { grid-template-columns: 1fr; }
}
