.player {
	width: 75%;
	height: auto;
}


.video-wrapper {
  width: 100%;
  max-width: 800px; /* nebo kolik chceš */
  aspect-ratio: 16 / 9;
  
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}


/* fallback pro iOS Safari */
.video-wrapper::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 16:9 */
}

/* podpora moderních prohlížečů */
@supports (aspect-ratio: 16 / 9) {
  .video-wrapper::before {
    display: none;
  }

  .video-wrapper {
    aspect-ratio: 16 / 9;
  }
}

.video-wrapper iframe,
.plyr__video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.hidden {
  display: none !important;
}

.contact-error {
  color: red;
  font-weight: bold;
  margin-top: 1rem;
}