#testimonials { background: var(--sand); overflow: hidden; }
.testimonials-track-wrap { overflow: hidden; margin-top: 60px; }
.testimonials-track {
  display: flex; gap: 28px;
  animation: scrollTrack 30s linear infinite;
  width: max-content;
}
.testimonials-track:hover { animation-play-state: paused; }
.testi-card {
  background: var(--white); border-radius: var(--radius); padding: 32px;
  width: 340px; flex-shrink: 0; box-shadow: 0 4px 24px rgba(27,94,122,0.07);
}
.testi-stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--sunset-gold); }
.testi-stars svg { width: 16px; height: 16px; }
.testi-text { font-size: 0.92rem; line-height: 1.7; color: var(--text-mid); font-style: italic; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { display: none; }
.testi-name { font-weight: 700; font-size: 0.88rem; color: var(--ocean-deep); }
.testi-origin { font-size: 0.78rem; color: var(--text-light); display: flex; align-items: center; gap: 4px; margin-top: 2px; }
.testi-origin svg { width: 12px; height: 12px; }
