.card-video {
    position: static;
}

.card-video iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.card-video.no-after::after {
  content: none !important;
  display: none !important;
}

#pdopage .pagination {
    margin-top: 40px !important;
}

.info__pan iframe {
    width: 100% !important;
    height: 555px !important;
}

.video-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-lightbox__wrapper {
  position: relative;
  width: 90%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  max-height: 90vh;
}

.video-lightbox__wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10000;
}

.video-lightbox__close::before,
.video-lightbox__close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background: white;
  transition: background 0.3s;
}

.video-lightbox__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.video-lightbox__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.video-lightbox__close:hover::before,
.video-lightbox__close:hover::after {
  background: #ff4d4d;
}