/* Motion — color and opacity only. No scale, no rotation, no bounce. */
:root{
  --ease-standard:cubic-bezier(.2,.8,.2,1); /* @kind other */
  --ease-in-out:cubic-bezier(.4,0,.2,1); /* @kind other */
  --dur-fast:120ms; /* @kind other */
  --dur-base:180ms; /* @kind other */
  --dur-slow:280ms; /* @kind other */

  --transition-hover:background var(--dur-base) var(--ease-standard),color var(--dur-base) var(--ease-standard),border-color var(--dur-base) var(--ease-standard); /* @kind other */
  --press-offset:translateY(1px); /* @kind other */
}
