.Hero_shablon {
  position: relative;
  height: 60vh;
  background: url(../assets/img/juxtak_vanq/h1.jpg) center/cover no-repeat;
 /* h1 photo */ 
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 0 15px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}


.video-wrapper {
  display: flex;
  justify-content: center;
}

.video-vertical {
  position: relative;
  width: 100%;
  max-width: 360px; 
  aspect-ratio: 9 / 16; 
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.video-vertical iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
@media (max-width: 576px) {
  .video-vertical {
    max-width: 90vw; 
  }
}

