/*
 * Shared Blogs / Case Study switcher motion.
 * Keep repeated navigation immediate; only the pressed control animates.
 */
.cs-content-switcher__link,
.framer-1chncdx .framer-sHJaX {
  transition:
    background-color 120ms ease,
    border-color 120ms ease,
    color 120ms ease,
    transform 120ms cubic-bezier(0.23, 1, 0.32, 1) !important;
}

.cs-content-switcher__link:active,
.framer-1chncdx .framer-sHJaX:active {
  transform: scale(0.98);
}

@media (prefers-reduced-motion: reduce) {
  .cs-content-switcher__link,
  .framer-1chncdx .framer-sHJaX {
    transition:
      background-color 120ms ease,
      border-color 120ms ease,
      color 120ms ease !important;
  }

  .cs-content-switcher__link:active,
  .framer-1chncdx .framer-sHJaX:active {
    transform: none;
  }
}
