.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 12px;
}

.hero-logo-cnn {
  max-width: 150px;
}

.hero-video-main {
  width: 100%;
}
.hero-video-main .hero-video-main-video {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 13px;
}

.audio {
  width: 100%;
  max-width: 652px;
  margin: 0 auto;
}

.audio-player {
  background-color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px;
  width: 100%;
  height: 50px;
  color: #A81D1D;
}

.audio-player-button {
  position: relative;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent #A81D1D;
}
.audio-player-button::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -15px;
  width: 5px;
  height: 20px;
}
.audio-player-button::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -5px;
  width: 5px;
  height: 20px;
}

.audio-player-button--play {
  border-color: transparent;
}
.audio-player-button--play::before {
  background-color: #A81D1D;
}
.audio-player-button--play::after {
  background-color: #A81D1D;
}

.audio-player-line {
  max-width: 532px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 100%;
  position: relative;
  background-color: #e2b8b8;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask: url("../index/equialiser.webp");
  mask: url("../index/equialiser.webp");
  -webkit-mask-position: left center;
  mask-position: left center;
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
}

.audio-player-line__progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: #A81D1D;
}

.audio-player-time {
  font-size: 0.67rem;
}

.audio-player-speed {
  background-color: #A81D1D;
  padding: 4px;
  border-radius: 6px;
  color: var(--fontColorReverse);
}

@media screen and (max-width: 1250px) {
  .hero-video-main img {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .hero .caption {
    line-height: 1rem;
    font-size: 0.5rem;
  }
}