.testi-carousel-outer {
  position: relative;
  overflow: hidden;
  padding-bottom: 52px;
}

.testi-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testi-slide {
  min-width: 100%;
  padding: 0 48px;
  box-sizing: border-box;
}

.testi-card-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 44px 48px 40px;
  position: relative;
}

.testi-quote-icon {
  font-size: 2.8rem;
  color: var(--gold, #c8a96e);
  line-height: 1;
  margin-bottom: 18px;
  opacity: 0.6;
}

.testi-card-inner p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: #444;
  font-style: italic;
  margin-bottom: 28px;
}

.testi-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.testi-initials {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--charcoal, #1a1a12);
  color: var(--gold, #c8a96e);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(200, 169, 110, 0.3);
}

.testi-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 26px));
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #fff;
  color: var(--charcoal, #1a1a12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
  z-index: 2;
}

.testi-arrow:hover {
  background: var(--gold, #c8a96e);
  border-color: var(--gold, #c8a96e);
  color: #111;
}

.testi-prev {
  left: 0;
}

.testi-next {
  right: 0;
}

.testi-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}

.testi-dot.active {
  background: var(--gold, #c8a96e);
  transform: scale(1.25);
}

@media (max-width: 767px) {
  .testi-slide {
    padding: 0 36px;
  }

  .testi-card-inner {
    padding: 32px 20px 28px;
  }

  .testi-card-inner p {
    font-size: 0.9rem;
  }
}

