Add class to first post in custom loop using post_class filter

I think you can simply use:

post_class( 0 === $featured_posts->current_post ? 'first' : '' );

to add the first class directly within your template code, instead of applying the post_class filter.