.video {
  padding: 20px 0 40px;
}

.video__top {
  display: flex;
  justify-content: space-between;
}

.video__slider-buttons {
  display: flex;
  column-gap: 10px;
}

.video__button {
  width: 50px;
  height: 50px;
  background-color: var(--color-black);
  background-image: url('/images/video-arrow.svg');
  background-position: center;
  background-repeat: no-repeat;
}
.video__button._right {
  rotate: 180deg;
}

.video__title {
  margin-bottom: 35px;
}

.video__slide-title {
  margin-top: 25px;
}

.video__slide-date {
  margin-top: 10px;
}

.video__slide iframe {
  aspect-ratio: 787/443;
}

@media (max-width: 1130px) {
  .video {
    padding: 10px 0 30px;
  }
  
  .video__title {
    margin-bottom: 20px;
  }
}

@media (max-width: 950px) {
  .video__button {
    width: 40px;
    height: 40px;
  }
}