/* Estilo para el video de YouTube */
/* Contenedor exterior del video */
.video-wrapper {
  width: 100%;
  max-width: 760px;
  margin: 28px auto 24px;
  padding: 0;
}

/* Video 16:9 */
.video-container {
  position: relative;
  width: 100% !important;
  max-width: 760px !important;
  aspect-ratio: 16 / 9;
  padding: 0 !important;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 14px;
  background: #000;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
}

/* Iframe de YouTube */
.video-container iframe {
  position: absolute !important;
  inset: 0;
  display: block;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

/* Tablet */
@media (max-width: 900px) {
  .video-wrapper {
    max-width: 680px;
  }

  .video-container {
    max-width: 680px !important;
  }
}

/* Móvil */
@media (max-width: 600px) {
  .video-wrapper {
    width: 100%;
    margin: 22px auto 20px;
  }

  .video-container {
    width: 100% !important;
    max-width: none !important;
    border-radius: 10px;
  }
}