.video-popup-box,
.video-popup-box-preview {
  position: relative;
  width: 100%;
  height: 50vh;
  max-height: 800px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
  color: white;
  cursor: pointer;
  border-radius: 14px;
  text-align: center;
  overflow: hidden;
}

.video-popup-box h4,
.video-popup-box-preview h4 {
  background: rgba(0, 0, 0, 0.6);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 1.1rem;
  display:none;
}

/* Modal */
.video-popup-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.video-popup-modal video,
.video-popup-modal iframe {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 0px;
}
.play-svg{
    position: absolute;
    top:50%;
    left: 50%;
    transform:translate(-50%,-50%);
    width:70px;
    height: 70px;
    background-image: url('./play.svg');
    background-size: contain;
}
