/* == Testimonial Slider Styles == */
.testimonialSlider {
  position: relative;
  overflow: hidden;
}
.testimonialSlider__swiper {
  overflow: hidden;
}

/* == Slide Background == */
.testimonialSlider__backgroundWrapper {
  position: absolute;
  top: 0;
  left: -5%;
  height: 100%;
  width: auto;
  aspect-ratio: 2/1;
  pointer-events: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/* == Slide Content == */
.testimonialSlider__title {
  text-align: center;
  color: var(--FC-light-green);
}
.testimonialSlider__copy {
  text-align: center;
}
.testimonialSlider__attribution {
  text-align: center;
  color: var(--FC-light-green);
}

/* == Slide Controls == */
.testimonialSlider__controls {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
}
.testimonialSlider__controls > * {
  position: relative;
  height: 40px;
  width: 40px;
  background-color: var(--FC-light-green);
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  border-radius: 100%;
  color: var(--FC-teal);
}

.testimonialSlider__controls .swiper-button-disabled {
  opacity: 1;
  background-color: var(--FC-dark-blue);
}

.testimonialSlider__controls .testimonialSlider__prev svg {
  transform: rotate(180deg);
}

.testimonialSlider__controls svg path {
  fill: var(--FC-teal);
}
