/* Desktop-only hero video crop fix */
@media (min-width: 1024px) {
  /* Try common hero wrappers and a direct video with a 'hero' class */
  .hero video,
  .hero-video,
  video.hero-video {
    width: 100%;
    height: auto !important;
    object-fit: cover;
    object-position: center top;
    max-height: 100vh;
    display: block;
  }
}