.reviews {
  padding: 24px 0;
  overflow: hidden;
}
.reviews__slider {
  position: relative;
}
.reviews__slide {
  height: auto;
}
.reviews__pagination {
  margin-top: 32px;
  text-align: center;
}
@media (width < 1080px) {
  .reviews .swiper {
    overflow: visible;
  }
}
@media (width > 992px) {
  .reviews .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 0 8px !important;
    background: rgba(10, 125, 215, 0.6);
  }
  .reviews .swiper-pagination-bullet-active {
    background: var(--color-blue);
  }
  .reviews .slider-nav {
    justify-content: flex-end;
  }
}
@media (width < 768px) {
  .reviews__pagination {
    margin-top: 24px;
  }
}

.text-review-card {
  padding: 16px;
  border-radius: 24px;
  background: #fff;
}
.text-review-card__meta {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  align-items: flex-start;
  height: 80px;
}
.text-review-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.text-review-card__author-photo {
  border-radius: 100%;
  width: 44px;
  height: 44px;
  object-fit: cover;
  flex: 0 0 44px;
}
.text-review-card__author {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
}
.text-review-card__quotes {
  margin-left: auto;
}
@media (width < 768px) {
  .text-review-card {
    border-radius: 20px;
  }
  .text-review-card__meta {
    height: auto;
  }
}

.video-review-card {
  height: 368px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.video-review-card__link {
  display: block;
  height: 100%;
}
.video-review-card__image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.video-review-card__play {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjQwIiBoZWlnaHQ9IjQwIiByeD0iMjAiIGZpbGw9IiMwQTdERDciLz4KPHBhdGggZD0iTTE1LjMzMzMgMTRMMjQuNjY2NiAyMEwxNS4zMzMzIDI2VjE0WiIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4=") no-repeat center/contain;
  transition: 0.3s;
}
.video-review-card:hover .video-review-card__play {
  transform: translate(-50%, -50%) scale(1.1);
}
@media (width < 992px) {
  .video-review-card {
    height: 320px;
  }
}
@media (width < 768px) {
  .video-review-card {
    border-radius: 20px;
  }
}
