/* ==========================================================================
   MOUSE MOVE PARALLAX EXTENSION (.rs-parallax-parent / .rs-parallax-child)

   Ported 2026-09-10 from the Blunor theme's rsaddons.css (line 1103).
   This is the extension's one supporting rule - it disables the browser's
   native `translate` transition on parallax children so mouse-move-
   parallax.js's own requestAnimationFrame-driven lerp (in its JS-set
   `transform`) isn't fighting a CSS transition on the same property.
   ========================================================================== */

.rs-parallax-parent .rs-parallax-child {
  transition: translate 0s !important;
}
