﻿/* Video 9:16 responsive */
.video-wrapper {
 position: relative;
 width: 100%;
 max-width: 400px; /* larghezza desktop, puoi aumentare a 500px se vuoi */
 margin: auto;
 padding-top: 177.78%; /* rapporto 9:16 */
}

 .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 }

/* Desktop: limite altezza per evitare video lunghissimo */
@media screen and (min-width: 1025px) {
 .video-wrapper {
  max-width: 400px; /* larghezza massima */
  padding-top: 0;
  height: 700px; /* altezza fissa desktop */
 }

  .video-wrapper iframe {
   height: 100%;
  }
}

/* Mobile */
@media screen and (max-width: 1024px) {
 .video-wrapper {
  max-width: 100%;
  padding-top: 177.78%; /* rapporto 9:16 */
  height: auto;
 }
}
