Svelte Guideline: Styling — Use :global() sparingly. Description: Escape scoping when needed. Do: :global for third-party styling. Don't: Global for all styles. Good Example: :global(.external-lib). Bad Example: <style> without scoping. Severity: Medium. Docs: .