.section-testimonials {
  position: relative;
  overflow: hidden;
  padding-top: var(--section-pad-v);
  background: linear-gradient(to bottom, var(--color-navy) 0, var(--color-navy) 50%, var(--color-grey) 50%, var(--color-grey) 100%);
}
.section-testimonials__header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}
.section-testimonials__ratings {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.section-testimonials__heading {
  color: var(--color-white);
  text-align: center;
  max-width: 875px;
  margin: 0 auto;
  line-height: 1.15;
}
.section-testimonials__carousel {
  position: relative;
  padding-bottom: var(--section-pad-v);
  z-index: 1;
}
.section-testimonials__swiper {
  overflow: visible;
  position: relative;
  z-index: 1;
}
.section-testimonials__nav {
  position: absolute;
  top: 269px;
  transform: translateY(-50%);
  z-index: 2;
  width: 3rem;
  height: 3rem;
  padding: 0;
  background-color: rgba(255, 255, 255, 0.92);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-navy);
  box-shadow: 0 6px 16px rgba(21, 41, 58, 0.08);
  transition: background-color 0.2s ease;
}
.section-testimonials__nav .icon {
  width: 1.25rem;
  height: 1.25rem;
}
@media (pointer: fine) {
  .section-testimonials__nav:hover {
    background-color: var(--color-white);
  }
}
.section-testimonials__nav--prev {
  left: 1rem;
}
.section-testimonials__nav--next {
  right: 1rem;
}
.section-testimonials__slide {
  height: auto;
}
.section-testimonials__card {
  position: relative;
  isolation: isolate;
  height: 538px;
  border-radius: 8px;
  overflow: hidden;
}
.section-testimonials__card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.section-testimonials__card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
}
.section-testimonials__card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to right, var(--color-navy-card) 0%, var(--color-navy-card) 35%, rgba(30, 60, 85, 0.75) 75%, rgba(30, 60, 85, 0.5) 100%);
}
.section-testimonials__card-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.section-testimonials__stars {
  display: flex;
  gap: 4px;
  color: var(--color-white);
}
.section-testimonials__stars svg {
  width: 1.25rem;
  height: 1.25rem;
}
.section-testimonials__star--empty {
  opacity: 0.25;
}
.section-testimonials__quote {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--font-size-body-lg);
  color: rgb(255, 255, 255);
  line-height: 1.65;
  max-width: 28rem;
}
.section-testimonials__quote::before, .section-testimonials__quote::after {
  content: none;
}
.section-testimonials__author {
  margin-top: auto;
  color: rgb(255, 255, 255);
  font-style: normal;
}
@media (width <= 46.875rem) {
  .section-testimonials__nav {
    top: 240px;
  }
  .section-testimonials__card {
    height: 480px;
  }
  .section-testimonials__card-inner {
    padding: 1.75rem;
  }
  .section-testimonials__quote {
    max-width: none;
    font-size: 0.8rem;
    line-height: 1.45;
  }
}

/*# sourceMappingURL=testimonials.css.map */
