/* Hero Section with Video/Image */
.hero-media {
  position: relative;
  width: 100%;
  height: 48%;
  min-height: 350px;
  overflow: hidden;
  animation: fadeIn 1.4s ease-out 0.4s both;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
}

@media (max-width: 600px) {
  .hero-media {
    height: 250px;
  }

  .hero-media .video-placeholder {
    font-size: 40px;
  }
}
