.video-break {
  width: 100%;
  aspect-ratio: 2.35 / 1;
  overflow: hidden;
  background: #0A0A0A;
  position: relative;
}

.loop-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* On very narrow screens, 2.35:1 gets uncomfortably short.
   Let it grow taller so the footage doesn't feel like a sliver. */
@media (max-width: 600px) {
  .video-break {
    aspect-ratio: 4 / 3;
  }
}
