.hero-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  animation: heroZoom 14s ease-out both;
}

@keyframes heroZoom {
  from { transform: scale(1.01); }
  to { transform: scale(1.075); }
}

@media (max-width: 680px) {
  .hero-video img {
    display: block;
    object-position: 64% center;
    animation: none;
  }
}
