.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.image-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem auto;
  max-width: 900px; /* keeps width consistent with your image grid */
}

.video-container video {
  width: auto;
  height: 70vh; /* limits height on desktop */
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  object-fit: contain;
}

@media (max-width: 768px) {
  .video-container video {
    height: auto;
    width: 100%;
  }
}

.video-container video::-webkit-media-controls-volume-slider,
.video-container video::-webkit-media-controls-mute-button {
  display: none !important;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  margin: 1em 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}