.video-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 20px;
  gap: 20px;
}
.video-container {
  flex: 1 1 48%;
  background-color: white;
}
video {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .video-container {
    flex-basis: 100%;
  }
}

.video-background-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .video-background-section {
    height: 480px;
  }
}

.video-background-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.video-background-section__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* tmavý překryv */
  z-index: 2;
}

.video-background-section__content {
  position: relative;
  z-index: 3;
  padding: 20px;
}

.video-background-section__content h1 {
  font-size: 3rem;
  margin-bottom: 3rem;
  color: #FFF;
  line-height: 3rem;
}

.video-background-section__content p {

  line-height: 2rem;
  font-size: 1.2rem;
  max-width: 960px;
  margin: 0 auto;
  color: #FFF;
}