/* ====================== Component: Testimonials ====================== */
.testimonials { background: var(--color-cream); text-align: center; }
.testimonials__intro { display: flex; flex-direction: column; align-items: center; }
.testimonials__viewport { position: relative; max-width: 768px; margin: 48px auto 0; }

.testimonials__track {
  position: relative;
  background: var(--color-white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  padding: 48px;
  text-align: left;
  overflow: hidden;
}

.quote { display: none; margin: 0; }
.quote.is-active { display: block; animation: heroFade 0.5s var(--ease) both; }
.quote__text { margin: 0; font-size: 20px; line-height: 32.5px; color: var(--color-quote); }
.quote__cite { display: block; margin-top: 32px; font-style: normal; }
.quote__name { display: block; font-weight: 600; font-size: 14px; line-height: 20px; color: var(--color-ink); }
.quote__role { display: block; font-size: 12px; line-height: 16px; color: var(--color-brown); }

.testimonials__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease);
}
.testimonials__arrow img { width: 12px; height: 24px; }
.testimonials__arrow--prev { left: -8px; transform: translateY(-50%) rotate(180deg); }
.testimonials__arrow--next { right: -8px; }
.testimonials__arrow--prev:hover { transform: translateY(-50%) rotate(180deg) translateX(4px); }
.testimonials__arrow--next:hover { transform: translateY(-50%) translateX(4px); }

.testimonials__dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.testimonials__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  background: rgba(130, 110, 87, 0.4);
  cursor: pointer;
  transition: width 0.35s var(--ease), background-color 0.35s var(--ease);
}
.testimonials__dot.is-active { width: 32px; background: var(--color-yellow); }
