/* ==========================================================================
   Luxéora Testimonials — Match maquette
   ========================================================================== */

.lxr-testimonials {
  position: relative;
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
}

.lxr-testimonials__track {
  position: relative;
}

.lxr-testimonials__slide {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
  animation: lxrFadeIn 0.5s ease;
}

.lxr-testimonials__slide.active {
  display: block;
}

@keyframes lxrFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Stars */
.lxr-testimonials__stars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  color: #C9A96E;
  margin-bottom: 1.5rem;
}

.lxr-testimonials__stars svg {
  display: block;
}

/* Quote text */
.lxr-testimonials__text {
  font-family: 'Mulish', sans-serif;
  font-size: 1.15rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.7;
  color: #1A1A1A;
  margin: 0 0 1.8rem;
}

/* Author name */
.lxr-testimonials__author {
  font-family: 'Mulish', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1A1A1A;
}

/* Location */
.lxr-testimonials__location {
  font-family: 'Mulish', sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  color: #888;
  margin-top: 6px;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .lxr-testimonials__text {
    font-size: 1rem;
  }
}
