.testimonials {
  position: relative;
  background: var(--white);
}

.testimonials > .wrapper-bg {
  position: absolute;
  inset: 0;
}

.testimonials-bg {
  width: 100%;
  height: 100%;
  background: var(--blue);
}

.testimonials > .container {
  position: relative;
}

.testimonials-box {
  display: flex;
  flex-direction: column;
  gap: var(--space-title-gap);
}

/* ── Title row ── */
.testimonials-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.testimonials__tag {
  color: var(--white);
  font-weight: 500;
  line-height: 1;
}

/* ── Pagination override ── */
.swiper-pagination {
  position: static;
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.swiper-pagination-bullet {
  width: 0.625em;
  height: 0.625em;
  background: transparent;
  border: 1px solid var(--white);
  border-radius: 50%;
  opacity: 1;
  margin: 0 !important;
  flex-shrink: 0;
}

.swiper-pagination-bullet-active {
  background: var(--white);
}

/* ── Divider ── */
.testimonials-line {
  width: 100%;
  height: 1px;
  background: var(--grey-60);
}

/* ── Main layout ── */
.testimonials-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

/* ── Google rating card ── */
.testimonials-google {
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  padding: 1em;
  background: var(--grey-5);
  flex-shrink: 0;
  width: 8.375em;  /* 134px */
}

.testimonials-google img {
  display: block;
  width: 5.897em;
  height: auto;
}

.testimonials-google__label {
  color: var(--blue);
  font-weight: 500;
  line-height: 1;
  width: 6.3125em;
}

.testimonials .swiper {
  width: 100%;
  overflow: hidden;
}

.testimonials .swiper-slide {
  display: flex;
  flex-direction: column;
  gap: var(--space-title-gap);
}

/* ── Quote ── */
.testimonials__quote {
  font-family: var(--font-display);
  font-size: var(--text-caption-l);
  line-height: var(--lh-caption-l);
  color: var(--grey-5);
  font-style: normal;
  margin: 0;
}

/* ── Author ── */
.testimonials-author {
  display: flex;
  align-items: center;
  gap: 1.25em;
}

.testimonials-photo {
  width: 5.5em;
  height: 5.5em;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonials-bio {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.testimonials-name {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-caption-m);
  line-height: var(--lh-caption-m);
  color: var(--grey-5);
}

.testimonials-role {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-body-s);
  line-height: var(--lh-body-s);
  color: var(--grey-30);
}

/* ── Nav — absolute at bottom-right of layout-col ── */
.swiper-nav {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 1.875em; /* 30px */
  z-index: 2;
}
