.home-video-page .stage {
  gap: clamp(16px, 2.4vh, 28px);
}

.video-hero {
  position: relative;
  min-width: 0;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  background: var(--main-bg);
  isolation: isolate;
}

.video-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--main-bg);
}

.video-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(22, 18, 15, 0.18), rgba(22, 18, 15, 0.34)),
    linear-gradient(90deg, rgba(22, 18, 15, 0.18), rgba(22, 18, 15, 0));
}

@media (max-width: 920px) {
  .home-video-page .stage {
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 14px;
  }

  .video-hero {
    height: 100%;
  }
}
