These three patterns map directly to page structures you will build in projects. Each is a named, reusable recipe rather than a one-off solution.

Breakpoint note: Pattern 2 (content + sidebar) switches from one column to a 2fr 1fr split at 820px. The playground preview is a fixed-size iframe so this transition will not trigger in the embed — open the standalone file once it is published to see it respond. Pattern 3 (card gallery) uses auto-fit + minmax and responds dynamically to whatever width is available, so it works well in the playground.

What this covers

  • Stacked mobile sections: default single-column grid with no media queries needed
  • Content + sidebar: starts stacked, expands to 2fr 1fr at 820px
  • Card gallery: repeat(auto-fit, minmax(180px, 1fr)) creates responsive columns without explicit breakpoints

Common layout patterns specimen

Preview