/* === Custom Block Styling === */
.testimonialSlider{
    padding: var(--CB-padding-top) var(--CB-padding-right) var(--CB-padding-bottom) var(--CB-padding-left);
    margin-top: var(--CB-margin-top);
    margin-bottom: var(--CB-margin-bottom);
    background-color: var(--CB-background-color);
    background-image: var(--CB-background-image);
    background-position: var(--CB-background-position);
    background-size: cover;
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
}

.testimonialSlider__swiper {
  overflow: hidden;
}

.left__gradient{
    background: linear-gradient(95.41deg, #0f3c43 13.95%, #03252a 97.22%);
}

/* == 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-white);
}
.testimonialSlider__copy {
  text-align: center;
}
.testimonialSlider__copy p{
	font-size: 24px;
  color: var(--FC-white);
}
.testimonialSlider__attribution {
  text-align: center;
  color: var(--FC-secondary-color);
  font-size: 18px;
  font-family: var(--FC-secondary-font);
}

/* == Slide Controls == */
.testimonialSlider__controls {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.testimonialSlider__controls > * {
  position: relative;
  height: 40px;
  width: 40px;
  background-color: var(--FC-secondary-color);
  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);
}



.testimonialSlider__blockHeading{
  text-align: center;
}



.lightBackground .testimonialSlider__backgroundWrapper{
  opacity: 25%;
}
.testimonialSlider__next::after,
.testimonialSlider__prev::after {
    display: none;
}
.testimonialSlider__next,
.testimonialSlider__prev {
    width: 40px !important;
    height: 40px !important;
    aspect-ratio: 1/1;
}



/* Light Version */
.testimonialSlider.lightVersion{
  background: none; 
}
.testimonialSlider.lightVersion .testimonialSlider__backgroundWrapper{
  opacity: 25%;
}
.testimonialSlider.lightVersion .testimonialSlider__copy p{
  color: var(--FC-primary-color);
}