Astro Guideline: Styling — Use is:global sparingly. Description: Global styles only when truly needed. Do: is:global for base styles or overrides. Don't: is:global for component styles. Good Example: <style is:global> body { } </style>. Bad Example: <style is:global> .card { } </style>. Severity: Medium. Docs: .