/* ============================================================
   TESTIMONIAL CAROUSEL
   ============================================================ */
.tc-outer    { position: relative; padding: 0 28px; }
.tc-viewport { overflow: hidden; }
.tc-track    { display: flex; transition: transform 360ms cubic-bezier(.4, 0, .2, 1); }
.tc-slide    { flex-shrink: 0; box-sizing: border-box; padding: 0 8px; }

.tc-slide .test-card { height: 100%; }

.tc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  border: 1px solid var(--border-2, #D1D5DB);
  background: white;
  color: var(--ink-2, #374151);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  z-index: 5;
  transition: all 150ms;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  font-family: inherit;
}
.tc-arrow:hover:not(:disabled) { box-shadow: 0 2px 10px rgba(0,0,0,.12); }
.tc-arrow:disabled { opacity: 0.3; cursor: default; }
.tc-prev { left: 0; }
.tc-next { right: 0; }

.tc-dots { display: flex; justify-content: center; gap: 7px; margin-top: 24px; }
.tc-dot  {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  border: none;
  background: var(--border-2, #D1D5DB);
  cursor: pointer;
  transition: all 250ms;
}
.tc-dot.active { background: var(--indigo, #4F46E5); width: 22px; }

@media (max-width: 640px) {
  .tc-arrow { display: none; }
  .tc-outer { padding: 0; }
}
