.hero {
  grid-template-columns: minmax(360px, 1fr) minmax(440px, .85fr);
  gap: 5vw;
  align-items: start;
  min-height: 0;
  padding-top: 48px;
  padding-bottom: 64px;
}

.hero-media {
  display: grid;
  gap: 18px;
  width: 100%;
  max-width: 680px;
  justify-self: end;
}

.hero .stage-card {
  width: 100%;
  max-width: none;
}

.homepage-video-player {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(16, 33, 58, .16);
  border-radius: 18px;
  background: #020817;
  box-shadow: 0 18px 45px rgba(13, 27, 58, .18);
}

.homepage-video-player iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 36px;
  }

  .hero-media {
    max-width: 660px;
    justify-self: center;
  }
}
