/* Contenedor del video */
.featured-media-video {
  position: relative;
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.video-background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 aspect ratio */
  min-height: 100vh;
  min-width: 177.77vh; /* 16:9 aspect ratio */
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Overlay para mejorar legibilidad del texto */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Ajusta la opacidad según necesites */
  z-index: 1;
}

/* Asegurar que el texto esté encima del video */
.featured-text {
  position: relative;
  z-index: 10;
}

/* Responsive */
@media (max-width: 768px) {
  .video-background iframe {
    height: 100vh;
    width: 177.77vh;
  }
}
