What problem does it solve? Styling responsive layouts and components with Tailwind CSS requires knowing current v4 syntax, deprecated utility replacements, and project conventions, which is error-prone when migrating from v3 or working across Blade, JSX, and Vue templates. ## Core Features & Use Cases - Tailwind v4 Guidance: Enforces CSS-first configuration with the @theme directive and @import "tailwindcss" syntax instead of deprecated tailwind.config.js and @tailwind directives. - Deprecated Utility Replacement: Maps removed v3 utilities like bg-opacity-*, flex-shrink-*, and overflow-ellipsis to their v4 equivalents. - Layout & Component Patterns: Covers responsive grids, flexbox structures, dark mode variants, and gap-based spacing for cards, navbars, forms, and dashboards. - Use Case: When building a responsive product grid in a React component, invoke this Skill to generate correct v4 utility classes with dark mode support and proper gap spacing. ## Quick Start Ask the AI to build a responsive three-column card grid with dark mode support using Tailwind CSS v4 in your JSX component.