.three-images-wrapper {
  display: flex;
  gap: 16px;
  align-items: stretch;
  flex-wrap: nowrap;
  padding: 5vh 12vh;
}

.three-images-wrapper__item {
  flex: 1 1 0;
  min-width: 0;
}

.three-images-wrapper__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
 .sponsorship-node.sponsor .paragraph--type--media-video {
    text-align: -webkit-center;
 }
.media-video-wrapper {
  box-sizing: border-box;
  padding: 10vh 18vh;
}

.media-video__inner {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  background: #000;
  padding-top: 55%;
  height: 0;
}

.media-video__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.media-video__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-video__poster {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
}

.media-video__poster-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}
.media-video__poster-image{
  width: 100%;
}
.media-video__inner.playing .media-video__poster {
  display: none;
}

@media (max-width:768px){
  .three-images-wrapper {
    padding: 0 5vh;
    display: grid;
    gap: 16px;
    margin-bottom: 5vh;
  }

  .media-video-wrapper {
    padding: 6vh 5vh;
  }
}
