When should I use Flexbox instead of CSS Grid?
Use Flexbox for one-dimensional layouts — a single row or column such as a nav bar or a group of buttons — where items size from their content. Use Grid when you need to control rows and columns together, like a page layout or a card gallery that must align on both axes.