.testimonial-carousel {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
  padding: 3rem;
  border-radius: 20px;
  background: var(--wp--preset--color--base, #fff);
  color: var(--wp--preset--color--contrast, #111);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  box-sizing: border-box;
  height: 330px;
  min-height: fit-content
}
.quote-mark {
  position: absolute;
  top: -235px;
  left: 20px;
  font-family: "Arial", Sans-serif;
  font-size: 12.2em;
  font-weight: 600;
  color: #6292cd;
}
.testimonial-track {
  position: relative;
}
.testimonial-slide {
  display: none;
  text-align: center;
  animation: testimonial-fade 0.35s ease;
  padding: 20px 10% 10px;
}
.testimonial-slide.is-active {
  display: block;
}
.testimonial-quote {
  margin: 0 0 1rem;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.6;
}
.testimonial-quote p {
  margin: 0;
  font-style: italic;
}
.testimonial-meta {
  display: grid;
  gap: 0.25rem;
}
.testimonial-name {
  font-size: 1rem;
  font-weight: 700;
}
.testimonial-controls {
  display: flex;
  justify-content: space-between;
  position: absolute;
  inset: 50% 10px auto 10px;
  transform: translateY(-50%);
  pointer-events: none;
}
.testimonial-button {
  pointer-events: auto;
  border: 0;
  background: rgba(255, 255, 255, 0.9);
  color: #6292cd;
  border-radius: 999px;
  cursor: pointer;
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 900;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
position: absolute;
	left: 47%;
	bottom: 20px
}
.testimonial-dot {
  width: 6px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.testimonial-dot.is-active {
  background: #6292cd;
}
@keyframes testimonial-fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width:600px) { 
	.testimonial-slide { 
	  padding-top: 40px;
	  padding-right: 6%;
	}
}