:root {
  --brand: #1dd4b4;
  --bg: #0e141b;
  /* color de la sección Y de las cards */
  --wrap: #0b1117;
  /* color del contenedor externo (puede ser más oscuro) */
  --text: #e8f0f2;
  --muted: #9fb1b7;
  --border: rgba(255, 255, 255, .10);
  --gap: 12px;
}

#testimonials .section-title {
  text-align: center;
  font-weight: 800;
  /* si no quieres glow, quita text-shadow en tu título global */
}

.section-title {
  letter-spacing: .2px;
  margin-bottom: 2.9rem;
  font-size: 1.25rem;
  /* si no quieres glow, quita text-shadow en tu título global */
}


/* Contenedor con padding lateral para flechas, mantiene color más oscuro */
.tst-wrap {
  position: relative;
  background: var(--wrap);
  border-radius: 12px;
  padding: 6px 36px;
}

.tst-viewport {
  overflow: hidden;
  border-radius: 10px;
  background: var(--bg);
}

.tst-track {
  display: flex;
  gap: var(--gap);
  will-change: transform;
  transform: translateX(0);
}

/* Tarjeta compacta – MISMO color que la sección */
.tst-slide {
  flex: 0 0 100%;
  padding: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
}

@media (min-width:768px) {
  .tst-slide {
    flex-basis: calc((100% - var(--gap)) / 2);
  }
}

@media (min-width:1200px) {
  .tst-slide {
    flex-basis: calc((100% - var(--gap)*2) / 3);
  }
}

.t-card {
  color: var(--text);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.t-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
  background: #0c1117;
}

.t-name {
  margin: 0;
  font-weight: 700;
  font-size: .98rem;
}

.t-meta {
  margin: 0;
  color: var(--muted);
  font-size: .8rem;
}

/* Extracto con clamp (3 líneas) */
.t-text {
  margin: .6rem 0 0;
  line-height: 1.55;
  color: #dbe8eb;
  font-size: .94rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1em * 1.55 * 3);
}

.t-text.expanded {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.t-actions {
  margin-top: .6rem;
  display: flex;
  justify-content: flex-start;
  gap: 8px;
}

/* “Ver más” VERDE por defecto */
.btn-ghost {
  background: var(--brand);
  color: #0b1117;
  border: 1px solid var(--brand);
  padding: .35rem .7rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: .85rem;
  line-height: 1;
  transition: filter .15s ease, background .15s ease, border-color .15s ease;
}

.btn-ghost:hover {
  filter: brightness(.95);
}

.btn-ghost:focus-visible {
  outline: 2px solid #92f2e2;
  outline-offset: 2px;
}

/* Flechas fuera de las cards */
.tst-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.tst-btn {
  pointer-events: auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: rgba(14, 20, 27, .7);
  color: var(--text);
  backdrop-filter: blur(3px);
  font-size: .9rem;
  transition: transform .12s ease, background .12s ease;
}

.tst-btn:hover {
  transform: scale(1.06);
  background: rgba(14, 20, 27, .9);
}

/* (Opcional) Ocultar dots si no los usas en este modo infinito */
.tst-dots {
  display: none;
}