.media-tile {
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.2s ease;
}

.media-tile:hover {
  transform: scale(1.02);
}

.media-tile video,
.media-tile img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  background: #000;
}

.video-gallery.container {
  padding-left: 10px;
  padding-right: 10px;
}