/* === VIDEO BOX STYLES === */
.video-box {
  display: block; text-decoration: none;
  /* margin: 10px auto; */   /* Entfernt */
  margin-bottom: 20px; /* Vertikaler Abstand */
  /* width: calc(100% - 20px); */ /* Entfernt */
  width: 100%;
  height: var(--h, 45vh);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  background-color: #333; /* Platzhalter */
  cursor: pointer;
}
.video-box .video-bg { /* Gilt für das <video> Element */
  position: absolute; object-fit: cover; width: 100%; height: 100%;
  top: 0; left: 0; z-index: 0;
  transform: scale(1);
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}
.video-box.hover-zoom:hover .video-bg {
  transform: scale(1.1);
}
.video-box > .content {
  position: relative; /* Lässt Flexbox aus custom.css wirken */
  pointer-events: none; /* Wichtig, Video selbst nicht klickbar machen */
}