Should I group @media CSS at the bottom of the file?

Is this good form to do so?

Thanks

I prefer using a separate stylesheet entirely for media queries.

Not sure about this. Seems to just slow it down by loading in even more scripts.

It’s not a script, it’s a css file. In production, you’d cache it forever, and browsers know enough to pre-fetch it. Don’t micro-optimize before you measure what’s actually slow.

True, forgot about that. I’ll look into it, thanks!