/* Video Gallery Grid */
.video-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.video-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.video-gallery-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Tablet */
@media screen and (max-width: 991px) {
  .video-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media screen and (max-width: 767px) {
  .video-gallery-grid {
    grid-template-columns: 1fr;
  }
}
