Low-vision users zoom the browser to 200% with Cmd/Ctrl + '+'. If only the text scales while the layout stays fixed, cards overlap or text gets clipped outside its box — usually caused by a fixed-px width or a text container wrapped in overflow: hidden.
A well-built responsive layout treats zoom as just another narrow viewport: reflow to a single column with no horizontal scroll at an effective 320 CSS px width (1.4.10 Reflow). Separately, 1.4.4 requires that text itself can scale up to 200% without losing content or functionality.
Left is the default 100% two-column layout; right is zoomed to 200% and reflowed into a single column, with every line still fully readable and nothing clipped.
When to use
Before reaching for a fixed-px width or an overflow: hidden text box, actually zoom to 200% and see what happens. Sizing in rem, %, and clamp() prevents most of this by default.