.testimonial-slider {
  --gap: 1.5rem;
  --nav-size: 2rem;
  --card-bg: none;
  --card-radius: 1rem;
  position: relative;
}

.testimonial-slider__heading {
  margin-bottom: 1.5rem;
}

.testimonial-slider__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
}

.testimonial-slider__viewport {
  overflow: hidden;
}

.testimonial-slider__track {
  display: flex;
  gap: var(--gap);
  will-change: transform;
  transition: transform 0.6s ease;
}

/* Slide */
.testimonial-slider__slide {
  flex: 0 0 100%;
  min-width: 0;
  display: flex;
}

.testimonial-slider__card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  width: 100%;
  font-family: "caliban-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  background: var(--card-bg);
  border-radius: var(--card-radius);
  padding: 1rem;
  overflow: visible;
}

.testimonial-slider__content {
  position: relative;
  z-index: 2;
  width: fit-content;
  max-width: 100%;
  padding: 1rem;
}

.testimonial-slider__content p {
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  margin: 0;
}

/* 🔥 QUOTES (pseudo elements aligned to text block) */
.testimonial-slider__content::before,
.testimonial-slider__content::after {
  content: "";
  position: absolute;
  width: 72px;
  height: 72px;
  opacity: 0.18;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300' fill='white'%3E%3Cpath d='M103.23 145.98c-24.42-11.67-29.98-44.15-10.47-62.91 4.5-4.97 15.66-9.15 10.79-17.58-2.29-3.84-7.25-5.03-11.05-2.67-40.13 28.21-76.9 64.95-68.47 129.87 7.69 59.24 105.24 63.52 107.08-2.53 0-19.63-11.51-36.35-27.88-44.18zm146.08 0c-24.42-11.67-29.98-44.15-10.47-62.91 4.5-4.97 15.66-9.15 10.79-17.58-2.29-3.84-7.25-5.03-11.05-2.67-40.13 28.21-76.9 64.95-68.47 129.87 7.69 59.24 105.24 63.52 107.08-2.53 0-19.63-11.51-36.35-27.88-44.18z'/%3E%3C/svg%3E");
}

/* Opening quote (top-left of text) */
.testimonial-slider__content::before {
  top: 0;
  left: 0;
  transform: translate(-25%, -35%);
}

.testimonial-slider__content::after {
  right: 0;
  bottom: 0;
  transform: translate(25%, 35%) rotate(180deg);
}

.testimonial-slider__nav {
  width: var(--nav-size);
  height: var(--nav-size);
  color: #fff;
  border: 0;
  background: none;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  font-size: 3rem;
  line-height: 1;
}

.testimonial-slider__nav:disabled {
  opacity: 0.5;
  cursor: default;
}