/* Client testimonials — baycorp.co.nz/products-services .testimonials-wrapper */

.bc-client-testimonials {
  position: relative;
}

.bc-client-testimonials__wrap {
  position: relative;
  width: 100%;
  min-height: 526px;
  background-color: var(--bc-teal, #003d52);
  overflow: hidden;
}

.bc-client-testimonials__carousel,
.bc-client-testimonials__carousel .carousel-inner,
.bc-client-testimonials__slide {
  min-height: 526px;
}

.bc-client-testimonials__slide {
  width: 100%;
}

.bc-client-testimonials__content {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  width: calc(100% - 188px);
  max-width: 1100px;
  transform: translate(-50%, -50%);
  font-size: 0;
}

.bc-client-testimonials__meta,
.bc-client-testimonials__quote-col {
  display: inline-block;
  vertical-align: middle;
}

.bc-client-testimonials__meta {
  position: relative;
  width: 40%;
  padding-right: 120px;
  text-align: right;
}

.bc-client-testimonials__meta::after {
  content: "";
  position: absolute;
  top: 0;
  right: 60px;
  width: 1px;
  height: 100%;
  background-color: #fff;
  transform: skew(-20deg);
}

.bc-client-testimonials__quote-col {
  width: 60%;
}

.bc-client-testimonials__title {
  margin: 0 0 0.35rem;
  color: #fff;
  font-family: "Ostrich Sans", ostrich, sans-serif;
  font-size: clamp(2rem, 4vw, 3.375rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: none;
}

.bc-client-testimonials__subtitle {
  margin: 0 0 0.15rem;
  color: var(--bc-cyan, #00b0cc);
  font-family: "Liberation Sans", liberation, sans-serif;
  font-size: 0.75rem;
  line-height: 1.4;
}

.bc-client-testimonials__subtitle:last-child {
  margin-bottom: 0;
}

.bc-client-testimonials__quote {
  max-width: 600px;
  margin: 0;
  color: #fff;
  font-family: "Liberation Sans", liberation, sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
}

.bc-client-testimonials__control {
  position: absolute;
  top: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  padding: 0;
  border: 0;
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%);
  cursor: pointer;
}

.bc-client-testimonials__control::before {
  content: "";
  position: absolute;
  top: 0;
  width: calc(100% - 8px);
  height: 100%;
  background-color: #fff;
  z-index: 0;
}

.bc-client-testimonials__control--prev {
  left: 0;
  text-align: right;
}

.bc-client-testimonials__control--prev::before {
  left: 0;
}

.bc-client-testimonials__control--next {
  right: 0;
  text-align: left;
}

.bc-client-testimonials__control--next::before {
  right: 0;
}

.bc-client-testimonials__control-icon {
  position: relative;
  z-index: 1;
  display: block;
  width: 47px;
  height: 18px;
  color: var(--bc-teal, #003d52);
}

.bc-client-testimonials__control-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.bc-client-testimonials__control:hover,
.bc-client-testimonials__control:focus-visible {
  background-color: rgba(255, 255, 255, 0.35);
}

.bc-client-testimonials__control:focus-visible {
  outline: 2px solid var(--bc-cyan, #00b0cc);
  outline-offset: 2px;
}

.bc-client-testimonials__indicators {
  position: absolute;
  right: 36px;
  bottom: 20px;
  left: 36px;
  z-index: 20;
  display: flex;
  justify-content: center;
  gap: 0;
  width: calc(100% - 72px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.bc-client-testimonials__indicators [data-bs-target] {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.4;
  text-indent: -9999px;
  overflow: hidden;
}

.bc-client-testimonials__indicators .active {
  opacity: 1;
}

@media (max-width: 1023px) {
  .bc-client-testimonials__content {
    width: calc(100% - 68px);
  }
}

@media (max-width: 767px) {
  .bc-client-testimonials__wrap,
  .bc-client-testimonials__carousel,
  .bc-client-testimonials__carousel .carousel-inner,
  .bc-client-testimonials__slide {
    min-height: 0;
  }

  .bc-client-testimonials__slide {
    padding: 25px 25px 72px;
  }

  .bc-client-testimonials__content {
    position: relative;
    top: auto;
    left: auto;
    display: block;
    width: 100%;
    max-width: none;
    transform: none;
  }

  .bc-client-testimonials__meta,
  .bc-client-testimonials__quote-col {
    display: block;
    width: 100%;
    padding: 0;
    text-align: left;
  }

  .bc-client-testimonials__meta {
    position: relative;
    padding-bottom: 40px;
  }

  .bc-client-testimonials__meta::after {
    top: auto;
    right: auto;
    bottom: 20px;
    left: 0;
    width: 85px;
    height: 1px;
    transform: none;
  }

  .bc-client-testimonials__title {
    font-size: clamp(2.85rem, 11vw, 3.75rem);
    line-height: 1.06;
    letter-spacing: 0.04em;
  }

  .bc-client-testimonials__control {
    display: none !important;
  }

  .bc-client-testimonials__carousel {
    touch-action: pan-y;
  }

  .bc-client-testimonials__carousel .carousel-inner {
    cursor: grab;
  }

  .bc-client-testimonials__carousel.is-swiping .carousel-inner {
    cursor: grabbing;
  }
}
