.vt-b {
  background: var(--cream);
  padding: 120px 0;
}
.vt-b__quote {
  margin: 0 auto;
  max-width: 960px;
  text-align: left;
}
.vt-b__quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 0 0 24px;
  font-weight: 400;
}
.vt-b__quote cite {
  display: block;
  font-style: normal;
  color: var(--ink-muted);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.vt-b__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 56px;
}
.vt-b__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.vt-b__dot.is-active { background: var(--teal); transform: scale(1.2); }
.vt-b__dot:hover { background: var(--teal); }
