.cred-spotlight {
  position: relative;
  overflow: hidden;
  color: var(--bs-body-color,#212529);
  clip-path: circle(0% at 50% 50%);
  transition: clip-path .6s ease-out;
}

.cred-spotlight.reveal {
  clip-path: circle(150% at var(--x) var(--y));
}

@media (pointer:coarse), (prefers-reduced-motion:reduce) {
  .cred-spotlight {
    clip-path: none;
  }
}

