Range with pages with specific category

{{ range .Site.RegularPages }}
gets me a list of all pages, so that works.
I want to iterate through all the pages where ‘Categories’ contains “Featured”.
I’m trying something like:
{{ range where .Site.RegularPages “.Params.categories” in “Featured” }}
It doesn’t generate an error but neither does it get me any results.