:where() groups selectors like :is(), but contributes zero specificity. It is great for resets and defaults that should stay easy to override.

:where(ul, ol)[class] {
  margin: 0;
  padding: 0;
  list-style: none;
}

.article :where(h2, h3, p) {
  max-width: 65ch;
}  

More info on MDN.