Render Flow - @while loop usage
[Read @while loop] -> [Check condition] -> [If true: execute block] -> [Update variables] -> [Repeat check] -> [If false: exit loop]
The browser reads the @while loop in Sass, checks the condition, runs the code inside if true, updates variables, and repeats until the condition is false.