.wp-component-testimonials {
  max-width: 1192px;
  margin: 0 auto;
  text-align: center;
}

.wp-component-testimonials__slide > :first-child {
  margin-top: 0 !important;
}

.wp-component-testimonials__slide > :last-child {
  margin-bottom: 0 !important;
}

.wp-component-testimonials__quote {
  font-size: 18px;
  line-height: 150%;
  display: flex;
  gap: var(--spacing-xxs);
  margin: 0 0 var(--spacing-m);
  flex-direction: column;
}

@media (min-width: 1024px) {
  .wp-component-testimonials__quote {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .wp-component-testimonials__quote {
    justify-content: space-between;
    flex-direction: row;
  }
}
.wp-component-testimonials__quote svg {
  flex: 0 0 34px;
}

.wp-component-testimonials__quote svg path {
  fill: var(--colour-2);
}

.wp-component-testimonials__quote svg:last-of-type {
  transform: rotate(180deg);
  margin-left: auto;
}

@media (min-width: 768px) {
  .wp-component-testimonials__quote svg:last-of-type {
    margin-left: 0;
    margin-top: auto;
  }
}
.wp-component-testimonials__cite {
  font-size: 20px;
  line-height: 150%;
  margin: 0 0 var(--spacing-xs);
  color: var(--colour-1);
}

.standard-spacing--dark-gradient .wp-component-testimonials__cite {
  color: var(--colour-white);
}

.wp-component-testimonials__nav {
  margin: var(--spacing-xl) 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-xs);
}

.wp-component-testimonials__nav-arrow {
  --icon-color: var(--colour-1);
  --border-color: var(--colour-1);
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-all);
  display: none;
}

@media (min-width: 768px) {
  .wp-component-testimonials__nav-arrow {
    display: flex;
  }
}
.wp-component-testimonials__nav-arrow path {
  fill: var(--icon-color);
  transition: var(--transition-all);
}

.wp-component-testimonials__nav-arrow:first-of-type {
  transform: rotate(180deg);
}

.wp-component-testimonials__nav-arrow:hover {
  --icon-color: var(--colour-white);
  background-color: var(--colour-1);
}

.standard-spacing--dark-gradient .wp-component-testimonials__nav-arrow {
  --icon-color: var(--colour-white);
  --border-color: var(--colour-white);
}

.wp-component-testimonials__pagination {
  --bullet-color: var(--colour-grey-3);
  --bullet-active-color: var(--colour-1);
  display: flex;
  justify-content: center;
  gap: var(--spacing-xs);
  flex-wrap: wrap;
}

.wp-component-testimonials__pagination .swiper-pagination-bullet {
  cursor: pointer;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--bullet-color);
  transition: var(--transition-all);
}

.wp-component-testimonials__pagination .swiper-pagination-bullet-active {
  background-color: var(--bullet-active-color);
}

.standard-spacing--dark-gradient .wp-component-testimonials__pagination {
  --bullet-active-color: var(--colour-white);
}

.wp-component-testimonials--compact .wp-component-testimonials__quote {
  flex-direction: column;
  align-items: center;
}

.wp-component-testimonials--compact .wp-component-testimonials__quote svg:last-of-type {
  display: none;
}
