.neon-blue {
  color: #0055FF;
  background: #D6EBFF;
}

.sorbus {
  color: #CC5702;
  background: #FFF3D3;
}

.coral-red {
  color: #ED1527;
  background: #FFF1F2;
}

.video {
  overflow: visible;
  padding-bottom: 56px;
}
@media only screen and (min-width: 992px) {
  .video {
    padding-bottom: calc(56px + 32 * (100vw - 992px) / 608);
  }
}
@media only screen and (min-width: 1600px) {
  .video {
    padding-bottom: 88px;
  }
}
@media only screen and (max-width: 767px) {
  .video {
    padding-bottom: 40px;
  }
}
.video__media {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 12px;
}
@media only screen and (min-width: 992px) {
  .video__media {
    border-radius: calc(12px + 4 * (100vw - 992px) / 608);
  }
}
@media only screen and (min-width: 1600px) {
  .video__media {
    border-radius: 16px;
  }
}
.video__media.has-video:not(.is-playing)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(18, 25, 38, 0.4);
  pointer-events: none;
}
.video__media.has-video:has(.video__poster[data-poster-auto]) {
  aspect-ratio: 16/9;
  background: #202939;
}
.video__media.has-video:has(.video__poster[data-poster-auto]) .video__poster:not([hidden]) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 0;
}
.video__media .video__poster,
.video__media video {
  display: block;
  width: 100%;
  height: auto;
}
.video__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  pointer-events: none;
}
.video__media.is-playing .video__play {
  display: none;
}
.video__media.is-playing .video__poster {
  visibility: hidden;
}
.video__media.is-playing video {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%);
}
.video__play-icon {
  display: block;
  width: 182px;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .video__play-icon {
    width: 72px;
  }
}