Render Flow - Property nesting for related styles
Read .card selector
Create .card style block
Read nested .title selector inside .card
Create .card .title style block
Read nested &:hover inside .card
Create .card:hover style block
Compile nested styles into flat CSS
Apply styles to matching HTML elements
Render visual changes
The Sass compiler reads the main selector, then processes nested selectors inside it, combining them into full CSS selectors. The browser then applies these compiled styles to the HTML elements and renders the visual result.