/* 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: #17492B;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
}
.hero-video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 16px;
}

/* New structure: .hero-video > .video-container > iframe */
.hero-video {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-video .video-container {
  position: relative;
  width: 100%;
  max-width: 640px;
  aspect-ratio: 16/9;
  background: #17492B;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
}

.hero-video .video-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.hero-video .video-caption {
  font-size: 0.9rem;
  color: #6b7280; /* neutral gray */
  text-align: center;
  margin: 4px 0 0;
}

@media (max-width: 700px) {
  .hero-video-wrapper {
    max-width: 100vw;
    border-radius: 8px;
  }
  .hero-video-wrapper iframe {
    border-radius: 8px;
  }
  .hero-video .video-container {
    max-width: 100vw;
    border-radius: 8px;
  }
}
