/* Responsive 16:9 video embed for hero section */
.hero-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
}
.hero-video-wrapper iframe,
.hero-video-wrapper video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 16px;
  object-fit: cover;
}

@media (max-width: 700px) {
  .hero-video-wrapper {
    max-width: calc(100vw - 40px);
    margin: 0 20px;
    border-radius: 8px;
  }
  .hero-video-wrapper iframe,
  .hero-video-wrapper video {
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .hero-video-wrapper {
    max-width: calc(100vw - 20px);
    margin: 0 10px;
    border-radius: 6px;
  }
  .hero-video-wrapper iframe,
  .hero-video-wrapper video {
    border-radius: 6px;
  }
}
