/* Artwork settles into place without affecting the measured gallery layout. */
@media (prefers-reduced-motion: no-preference) {
  .motion-enabled .motion-item {
    transition: opacity .62s cubic-bezier(.22,1,.36,1),
      translate .76s cubic-bezier(.22,1,.36,1),
      scale .76s cubic-bezier(.22,1,.36,1);
    transition-delay: var(--motion-delay, 0ms);
  }
  .motion-enabled .motion-item:not(.motion-in) {
    opacity: 0;
    translate: 0 12px;
    scale: .982;
  }
  .motion-enabled .motion-item.motion-soft:not(.motion-in) {
    translate: 0 7px;
    scale: 1;
  }
}
