.vorteile-hintergrund {
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.vorteile-hintergrund span{
  background-color: transparent !important;
}

.vorteile-hintergrund {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.vorteile-hintergrund .wp-block-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vorteile-hintergrund .wp-block-columns {
  display: flex;
  gap: 40px; /* optional schöner Abstand */
}

.vorteile-hintergrund .col-40 {
  flex: 0 0 40%;
}

.vorteile-hintergrund .col-40 h2 {
    color: #00597b;
}

.vorteile-hintergrund .col-60 {
  flex: 0 0 60%;
  margin-right: 75px;
}

.vorteile-hintergrund .col-60 div {
    margin: 0;
    max-width: 100%;
}

.video-wrapper {
  position: relative;
  display: block;
  width: 75%;   /* <<< kleiner gemacht */
  margin: 0 auto; /* zentriert */
  overflow: hidden;
}

.poster {
  width: 100%;
  height: auto;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
}

.play-button img {
  width: 140px;   /* Größe anpassen */
  height: auto;
  display: block;
}

.video-container {
  display: none;
  position: relative;
  width: 100%;
}

.video-wrapper.play .video-container {
  display: block;
}

.video-wrapper.play .poster,
.video-wrapper.play .play-button {
  display: none;
}

@media (max-width: 980px) {
  .vorteile-hintergrund {
    padding: 36px 24px;
    border-radius: 22px;
  }

  .vorteile-hintergrund .wp-block-columns {
    flex-direction: column;
    gap: 28px;
  }

  .vorteile-hintergrund .col-40,
  .vorteile-hintergrund .col-60 {
    flex: 1 1 auto;
  }

  .video-wrapper {
    width: 100%;
  }

  .play-button img {
    width: 100px;
  }
}

@media (max-width: 768px) {
  .vorteile-hintergrund {
    padding: 28px 18px;
    border-radius: 18px;
  }

  .play-button img {
    width: 78px;
  }
}
