/* ============================================================
   TESTIMONIALS  ·  Shivoham Retreat
   ============================================================ */

.testimonials {
  margin: 1rem;
  width: calc(100% - 2rem);
  background: #111C17;
  border-radius: 16px;
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.25rem, 4vw, 3rem);
  overflow: hidden;
  position: relative;
}

/* ── Eyebrow ────────────────────────────────── */
.ts__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--f-sans, sans-serif);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255, 0.65);
  margin-bottom: 2rem;
}

.ts__eyebrow::before,
.ts__eyebrow::after {
  content: '';
  width: 3rem;
  height: 1px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ── Slider wrapper ─────────────────────────── */
.ts__slider {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  min-height: 240px;
}

/* ── Slide ──────────────────────────────────── */
.ts__slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.ts__slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

/* Quote marks */
.ts__quote-mark {
  display: none;
}

/* Quote text */
.ts__quote {
  font-family: var(--f-sans, sans-serif);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.7;
  color: #B0A090;
  margin-bottom: 2rem;
  max-width: 42ch;
}

/* Author */
.ts__author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.ts__author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.18);
  margin-bottom: 0.5rem;
}

.ts__author strong {
  font-family: var(--f-sans, sans-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}

.ts__author span {
  font-family: var(--f-sans, sans-serif);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255, 0.65);
}

/* Stars */
.ts__stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1.5rem;
}

.ts__stars svg {
  width: 14px;
  height: 14px;
  fill: #ffffff;
  opacity: 0.9;
}

/* ── Controls ───────────────────────────────── */
.ts__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.ts__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.22);
  background: transparent;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease;
  flex-shrink: 0;
}

.ts__btn:hover {
  background: #FAF8F2;
  border-color: #ffffff;
  color: #1C3228;
}

/* Dots */
.ts__dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ts__dot {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255,255,255,0.18);
  cursor: pointer;
  transition: background 0.22s ease, width 0.22s ease;
}

.ts__dot.is-active {
  background: #FAF8F2;
  width: 40px;
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 600px) {
  .ts__quote { font-size: 1.2rem; }
  .ts__slider { min-height: 340px; }
}
