.blok--video-text {
  padding: 4rem 0;
}

.video-text__inner {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@media (min-width: 1200px) {
  .video-text__inner {
    flex-direction: row;
    align-items: center;
  }
}

.video-text__video,
.video-text__content {
  flex: 1;
}

.video-embed-iframe {
    pointer-events: none;
}

/* Nieuwe video embed styling */
.video-embed-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  margin-top: 1rem;
}

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

/* Verwijder oude thumbnail styling */
.video-thumbnail-container {
  display: none;
}

.video-thumbnail {
  display: none;
}

.video-play-button {
  display: none;
}

.video-text__title, .video-text__info {
  max-width: 600px;
}

.video-text__video {
  margin-left: -30px;
}

.video-text__title {
  font-size: 2rem;
  font-family: "ClashDisplay", sans-serif;
  font-weight: 600;
}

.title_devider_wrapper {
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.video-text__divider {
  height: 2px;
  background: #8A2422;
  border: none;
  margin-bottom: 1.5rem;
  width: 66%;
  min-width: 80px;
}

.video-text__info {
  margin-bottom: 1.5rem;
}

.video-text__info p {
  font-family: "ClashDisplay", sans-serif;
  font-size: 18px;
}

/* Verwijder lightbox styling */
.video-lightbox-container,
.video-lightbox-overlay,
.video-lightbox-content,
.video-lightbox-close,
.video-lightbox-player {
  display: none !important;
}

.video_text_button {
  background: #8A2422;
  font-family: "ClashDisplay", sans-serif;
  padding: 12px 30px 10px;
  font-size: 18px;
  color: white;
  text-transform: uppercase;
  margin-top: 20px;
  display: inline-block;
  font-weight: 600;
  transition: 0.3s all;
}

.video_text_button svg {
  fill: white;
  max-width: 16px;
  width: 100%;
  margin-left: 10px;
  position: relative;
  top: 2px;
}

.video_text_button:hover {
  background-color: black;
  transition: 0.3s all;
  text-decoration: unset;
}

@media only screen and (max-width: 1199px) and (min-width: 800px) {
  .video-text__video {
    margin-left: unset;
  }
  
  .video-embed-container {
    margin: 0 auto;
    max-width: 800px;
  }
  
  .video-text__title, .video-text__info {
    max-width: 100%;
  }
}

@media only screen and (max-width: 799px) and (min-width: 500px) {
  .video-text__video {
    margin-left: unset;
  }
  
  .video-embed-container {
    margin: 0 auto;
    max-width: 800px;
  }
  
  .video-text__title, .video-text__info {
    max-width: 100%;
  }
}

@media only screen and (max-width: 499px) {
  .video-text__video {
    margin-left: unset;
  }
  
  .video-embed-container {
    margin: 0 auto;
    max-width: 800px;
  }
  
  .video-text__title, .video-text__info {
    max-width: 100%;
  }
  
  .video-text__title {
    font-size: 1.8rem;
    line-height: 40px;
    margin-bottom: 10px;
  }
}

.video-embed-container {
    position: relative;
    overflow: hidden;
}

.video-embed-iframe {
    width: 100%;
    height: 100%;
}

.video-touch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: transparent;
    cursor: default;
}