#testimonials {
  padding: 20px 0 10px 0;
  border-bottom: 2px solid #d0eee3;
  margin: 20px 0;
}

@media screen and (min-width: 1000px) {
  #testimonials {
    margin: 20px 60px;
  }
}

.testimonial-slides {
  position: relative;
}

/* all slides stacked — JS sets container height to tallest slide */
.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
  z-index: 0;
}

.testimonial-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.testimonial-quote {
  font-family: "Suez One", serif;
  font-size: 18px;
  line-height: 1.55;
  color: #555;
  padding: 0 0 18px 0;
}

.testimonial-cite {
  display: block;
  font-style: normal;
}

.testimonial-name {
  display: block;
  font-weight: bold;
  color: #4a4a4a;
}

.testimonial-title {
  display: block;
  font-size: 85%;
  color: #909090;
  margin-top: 3px;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.testimonial-header h2 {
  margin: 0;
}

.testimonial-dots {
  display: flex;
  gap: 10px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.3s,
    transform 0.2s;
}

.testimonial-dot.active {
  background: #f2a970;
  transform: scale(1.35);
}

.testimonial-dot:hover {
  background: #f6c49b;
}
