What problem does it solve? Building interfaces that break on different screen sizes is a common frontend pain point. This Skill enforces mobile-first responsive design standards so layouts adapt correctly across mobile, tablet, and desktop without horizontal scrolling, tiny touch targets, or unreadable text. ## Core Features & Use Cases - Mobile-First Layout Standards: Enforces starting with mobile layouts and progressively enhancing with min-width media queries using standard breakpoints (Tailwind, Bootstrap). - Fluid Layouts & Relative Units: Guides use of flexbox, CSS Grid, container queries, and rem/em units instead of fixed pixel widths. - Accessibility & Touch Targets: Ensures 44x44px minimum touch targets, 16px minimum body text, and readable typography with clamp() fluid sizing. - Use Case: When building a dashboard that must work on phones and desktops, apply this Skill to structure a grid that stacks on mobile, uses two columns on tablets, and four columns on desktop, with responsive images via srcset. ## Quick Start Use the responsive design skill to refactor my landing page CSS so it follows mobile-first breakpoints and passes the touch target checklist.