@media (prefers-reduced-motion: no-preference) {
  .iscp-accordion__content {
    animation:
      iscp-content-enter
      160ms ease;
  }

  @keyframes iscp-content-enter {
    from {
      opacity: 0;
      transform: translateY(-4px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
