.testimonials-section {
  --testimonials-bg: #f6f5f3;
  background: var(--testimonials-bg) no-repeat center/cover;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.testimonials-section__title {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 72px;
}
.testimonials-section .swiper {
  overflow: visible;
}
@media (width < 1224px) {
  .testimonials-section__title {
    margin-bottom: 56px;
    max-width: 560px;
  }
}
@media (width < 768px) {
  .testimonials-section {
    padding: 48px 0;
  }
  .testimonials-section__title {
    margin-bottom: 40px;
  }
}

.testimonials-slider {
  position: relative;
}
.testimonials-slider__container {
  overflow: hidden;
}
.testimonials-slider__nav-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.testimonials-slider__nav-btn:hover {
  background: #ccc;
}
.testimonials-slider__nav-btn.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.testimonials-slider .swiper-slide {
  max-width: 665px;
  height: auto;
}
.testimonials-slider__prev {
  margin-left: -442px;
}
.testimonials-slider__next {
  margin-left: 442px;
}
@media (width < 1024px) {
  .testimonials-slider .swiper-slide {
    max-width: 520px;
  }
  .testimonials-slider__prev {
    margin-left: -300px;
  }
  .testimonials-slider__next {
    margin-left: 300px;
  }
}
@media (width < 768px) {
  .testimonials-slider {
    padding-bottom: 68px;
  }
  .testimonials-slider__prev {
    bottom: -26px;
    top: auto;
    margin-left: -42px;
  }
  .testimonials-slider__next {
    bottom: -26px;
    top: auto;
    margin-left: 42px;
  }
}

.testimonial-card {
  background: #fff;
  border-radius: 40px;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 auto;
}
.testimonial-card__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 48px;
}
@media (width < 1280px) {
  .testimonial-card__text {
    font-size: 16px;
  }
}
@media (width < 768px) {
  .testimonial-card {
    border-radius: 24px;
    padding: 32px 24px;
  }
  .testimonial-card__text {
    font-size: 15px;
  }
}

.author-box {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}
.author-box__content {
  flex: 1;
}
.author-box__name {
  font-weight: 700;
  font-size: 16px;
  color: var(--color-text-main);
  line-height: 1.5;
  margin-bottom: 4px;
}
.author-box__pos {
  color: #595959;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
}
.author-box__country {
  color: #595959;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
}
.author-box__linkedin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #0077b5;
  color: #fff;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.author-box__linkedin svg {
  width: 20px;
  height: 20px;
}
.author-box__linkedin:hover {
  background: #005885;
  transform: translateY(-2px);
}
.author-box .social-link {
  background: #F6F5F3;
  color: #595959;
}
.author-box .social-link:hover {
  background: #dadada;
}
