.voices__banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  margin-bottom: 10rem;
  padding: 1.2rem 2rem;
  background-color: #000;
  gap: 1rem;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .voices__banner {
    margin-bottom: 5rem;
  }
}
.voices__banner:hover {
  opacity: 0.6;
}
.voices__banner-icon {
  aspect-ratio: 2/1;
  padding-inline: 1.2rem;
  max-width: 8.8rem;
  border-radius: 0.2rem;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.voices__banner-icon img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.voices__banner-text {
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .voices__banner-text {
    font-size: 1.8rem;
    line-height: 1.4444444444;
  }
}
.voices .pageNavigation {
  margin-top: 0;
}

.voices-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .voices-list {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    gap: 2rem;
  }
}
.voices-list__item:nth-child(even) {
  border-left: unset;
}
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .voices-list__item:nth-child(even) {
    border-left: var(--border);
  }
}

.voices-card {
  --border: 1px solid #fff;
  border: var(--border);
}
.voices-card__video {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  margin-inline: auto;
  background-color: #000;
}
.voices-card__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.voices-card__footer {
  text-align: center;
  padding: 2rem;
}
.voices-card__tit {
  font-size: 2rem;
  margin-bottom: 0.5em;
}
/*# sourceMappingURL=voices.css.map */