What is the practical effect of writing `:where(a):hover` versus `a:hover` for an author trying to make hover styles easy to override?:where(a):hover { color: blue; } /* vs */ a:hover { color: blue; }