/* ==========================================================
   GLOBAL ANIMATIONS

   Purpose:
   - Store animation keyframes shared by multiple global components.

   Dependencies:
   - Component CSS files reference these keyframes.
========================================================== */

@keyframes brandWave {
    from {
        background-position: 0%;
    }

    to {
        background-position: 400%;
    }
}
