.content-root {
  opacity: 1;
  transform: translateY(0);
  transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.content-root--leaving {
  opacity: 0;
  transform: translateY(8px);
}

.content-root--entering {
  opacity: 0;
  transform: translateY(8px);
}

.fade-in {
  animation: fadeIn var(--transition-normal) both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.client-carousel__track--animated {
  width: max-content;
  animation: carouselMove 24s linear infinite;
}

.client-carousel:hover .client-carousel__track--animated {
  animation-play-state: paused;
}

@keyframes carouselMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 1ms;
    transition-duration: 1ms;
    scroll-behavior: auto;
  }
}
