Render Flow - Variable arguments in mixins
[Read @mixin declaration] -> [Parse fixed and variable args] -> [Store args in local scope] -> [Process variable args as list] -> [Apply styles with args] -> [Insert styles where @include used]
The SASS compiler reads the mixin with variable arguments, stores them as a list, then applies the styles where the mixin is included, expanding the variable arguments into CSS properties.