Render Flow - Column stacking on mobile
Load HTML with Bootstrap classes
Parse Bootstrap CSS
Apply grid classes to columns
Detect viewport width
If viewport < breakpoint: stack columns vertically
If viewport >= breakpoint: arrange columns horizontally
Paint layout
Composite final render
The browser loads the HTML and Bootstrap CSS, then applies grid classes to columns. It checks the screen width and stacks columns vertically on small screens (mobile) and arranges them side-by-side on larger screens.