.video-band {
  align-items: center;
  overflow: hidden;
}

.video-band-copy {
  position: relative;
  z-index: 1;
}

.home-reel {
  display: flex;
  justify-content: center;
  min-width: 0;
  padding: 2rem;
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(0,0,0,.18));
}

.home-reel video {
  display: block;
  width: min(100%, 360px);
  max-height: 620px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 18px;
  background: #111;
  box-shadow: 0 22px 55px rgba(0,0,0,.35);
}

@media (max-width: 760px) {
  .home-reel {
    padding: 1.25rem;
  }

  .home-reel video {
    width: min(100%, 320px);
    max-height: 570px;
  }
}
