/*
 * design-system/tokens/motion.css
 * Editorial Calm — движение. ТЗ раздел 3.7.
 *
 * Любая анимация дольше 300ms запрещена.
 * Никаких easing-кривых вне --ease.
 */

[data-theme="editorial"] {
  --motion-fast: 120ms;
  --motion-base: 180ms;
  --motion-slow: 280ms;
  --ease:        cubic-bezier(0.2, 0.6, 0.2, 1);
}

/* Глобальный safety-net для пользователей с reduced-motion */
@media (prefers-reduced-motion: reduce) {
  [data-theme="editorial"],
  [data-theme="editorial"] *,
  [data-theme="editorial"] *::before,
  [data-theme="editorial"] *::after {
    animation-duration:   0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration:  0.01ms !important;
    scroll-behavior:      auto !important;
  }
}
