.reviews-section-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-top: 150px;
}

/* Section title */
.reviews-section-title-wrapper span {
  text-transform: uppercase;
}

.reviews-section-title-wrapper {
  color: var(--black_white50);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Review cards */
.reviews-swiper {
  overflow: hidden;
  touch-action: pan-y pinch-zoom;
  width: 100vw;
}

.reviews-swiper .swiper-wrapper {
  gap: 0;
}

.reviews-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.reviews-swiper:hover .swiper-wrapper {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.reviews-swiper .swiper-slide {
  width: auto;
  flex-shrink: 0;
}

/* Button */
.review-btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: -10px;
}

/* Shared eclipse / glow effect */
.services-and-reviews-wrapper {
  position: relative;
  overflow: hidden;
}

.shared-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  right: -375px;
  bottom: 400px;
  background: var(--primary500);
  border-radius: 500px;
  -webkit-filter: blur(150px);
  filter: blur(150px);
  pointer-events: none;
  z-index: 0;
}

.services-and-reviews-wrapper > *:not(.shared-glow):not(.services-glow) {
  position: relative;
  z-index: 1;
}

@media (max-width: 800px) {
  .reviews-section-content-wrapper {
    gap: 40px;
  }

  .review-btn-wrapper {
    margin-top: 0;
  }

  .review-btn-wrapper button {
    width: 100%;
  }

  .services-and-reviews-wrapper {
    padding: 150px 0 0;
  }
}

@media (max-width: 600px) {
  .shared-glow {
    display: none;
  }
}
