i've noticed a shift towards using css variables for media queries, making it easier to manage themes across devices
:root {--bg-color-mobile: ;}@media (min-width:64em) {:root{--bg-color-desktop:;}}this approach keeps your code DRY and makes it simple to switch between light/dark modes with just a few tweaks in the variables ⚡