CSS file too large
Bloated CSS blocks rendering and ships rules the page never uses.
What it is
This check flags stylesheets whose transferred size exceeds a healthy budget.
Why it matters for SEO
Large render-blocking CSS delays first paint and Largest Contentful Paint, hurting Core Web Vitals.
Example
styles.css - 420 KB (much unused)
How to fix
- Remove unused CSS (purge/tree-shake) and split by route.
- Inline critical CSS and defer the rest.
- Minify and serve compressed.
- Re-crawl to confirm CSS weight dropped.