!important
!important protects a declaration from being overridden by more specific selectors.
Example
behavior .card {
theme: "light" !important;
}
behavior .card.primary {
theme: "brand";
}
Even though .card.primary is more specific, theme stays "light".
When to avoid it
Use !important sparingly. It can make overrides harder to reason about.