.quotes {
  
  padding: 6rem 2rem;
  text-align: center;
  color: #fff;
  font-family: Inter, sans-serif;
  box-shadow: 0 25px 60px rgb(0, 0, 0);
}

.quotes h2 {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.quotes-wrapper {
  width: 100%;
  max-width: 1000px;
  height: 220px;              /* CRITICAL */
  margin: 0 auto;
  overflow: hidden;
  perspective: 1200px;
  font-size: 1.15rem; 
  color:#ccc       /* CRITICAL */
}

.quotes-track {
  display: flex;
  height: 100%;
  transition: transform 1s cubic-bezier(.77,0,.175,1);
}

.quote-card {
  min-width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: scale(.9) rotateY(15deg);
  transition: transform 1s ease, opacity 1s ease;
  opacity: .4;
}

.quote-card.active {
  transform: scale(1) rotateY(0deg);
  opacity: 1;
}

.quote-card span {
  font-size: 1.15rem;
  display: block;
  margin-top: 1rem;
  color: #c4a668;
  font-weight: 700;
}
