.vaso-testi__inner {
  max-width: 860px; margin: 0 auto; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 36px;
}
.vaso-testi__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem); color: var(--vaso-ink);
  letter-spacing: 0.01em; margin: 0;
}
.vaso-testi__stage { position: relative; width: 100%; display: grid; }
.vaso-testi__slide {
  grid-area: 1 / 1; margin: 0;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
  opacity: 0; visibility: hidden; transition: opacity 400ms ease;
  pointer-events: none;
}
.vaso-testi__slide.is-active { opacity: 1; visibility: visible; pointer-events: auto; }
.vaso-testi__quote {
  font-family: var(--font-body); font-weight: 300;
  font-size: clamp(1.05rem, 2vw, 1.5rem); line-height: 1.55;
  color: var(--vaso-ink-2); margin: 0; quotes: "“" "”";
}
.vaso-testi__quote::before { content: open-quote; }
.vaso-testi__quote::after { content: close-quote; }
.vaso-testi__author {
  font-family: var(--font-body); font-weight: 500; font-size: 18px;
  color: var(--vaso-ink); text-transform: capitalize;
}
.vaso-testi__nav { display: flex; align-items: center; gap: 20px; }
.vaso-testi__arrow {
  color: var(--vaso-ink); display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; transition: color var(--transition-fast);
}
.vaso-testi__arrow:hover { color: var(--color-accent); }
.vaso-testi__arrow svg { width: 26px; height: 26px; }
.vaso-testi__divider { width: 1px; height: 28px; background: var(--vaso-line); }
@media (max-width: 768px) {
  .vaso-testi__inner { gap: 26px; }
  .vaso-testi__quote { font-size: 1.05rem; }
}
