Problem Statement
Which class makes cards stack on mobile and align in a row on larger screens?
Explanation
Tailwind’s responsive utilities let you change layout per breakpoint. 'flex flex-col md:flex-row' stacks items vertically on mobile and horizontally on desktops.
Code Solution
SolutionRead Only
class='flex flex-col md:flex-row gap-4'
