/* Testimonials */
.testimonial-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  height: 100%;
  min-height: 400px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  padding: 50px 40px;
  background: url("/images/the-elizabeth-home-carousel-background.webp")
    no-repeat center/contain;
  cursor: pointer;
}

.head {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  margin: 16px 0 0 70px;
  text-align: left;
}

.head h2 {
  font-weight: 800;
  font-size: 25px;
}

.head p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 400;
}

/* viewport + track */
.viewport {
  overflow: hidden;
  margin-top: 18px;
}

.track {
  display: flex;
  will-change: transform;
}

.slide {
  max-width: 100%;
  margin: 0 auto;
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Quote sizing (more prominent, readable) */
.quote {
  max-width: 800px;
  margin: 0 auto;
  text-wrap: pretty;
  text-align: center;
  font-size: clamp(16px, 2.2vw, 22px);
  line-height: 1.55;
  font-weight: 600;
}

.author {
  margin: 12px 0;
  font-weight: 800;
  font-size: 18px;
}

.controls {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 20px;
}

.dots {
  display: flex;
  gap: 9px;
}

.dot {
  height: 10px;
  width: 10px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: white;
}

.dot.active {
  width: 26px;
  background: black;
}

@media (max-width: 900px) {
  .testimonial-card {
    width: 95%;
    min-height: 0;
    margin: 0 auto 28px;
    color: #fff;
    text-align: center;
    background: url(/images/the-elizabeth-home-testimonial-background.png)
        no-repeat center/cover;
  }
}