/**
 * Bellamy Core - Mouse Effect Module Styles
 *
 * The actual movement/tilt transform is applied inline by
 * mouse-effect.js (since the amount changes continuously with the
 * cursor), this file only sets up the easing + 3D context so the
 * motion feels smooth instead of jumping instantly to each new value.
 */

.alt-bellamy-mouse-effect-active {
    will-change: transform;
    transition: transform ease-out;
}

.alt-bellamy-mouse-effect-tilt {
    transform-style: preserve-3d;
}
