/* Video im Card-Rahmen – gleiche Optik/Größe wie vorheriges Bild */
.video-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.video-card__player {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Vergrößern-Button */
.video-card__enlarge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

/* Lightbox-Overlay */
.video-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.9);
  z-index: 1000;
}
.video-lightbox.is-open { display: flex; }
.video-lightbox__inner {
  max-width: 90vw;
  max-height: 90vh;
}
.video-lightbox__player {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}
.video-lightbox__close {
  position: absolute;
  top: 16px;
  right: 24px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
}
