@miragecraft [posted on Twitter](https://twitter.com/XiaoZhuoJia/status/1673100334531526659) the following discovery: ```css @media (width < 640px) { /* styles */ } /* is the same as */ @media (max-width: 640px) { @media not (width: 640px) { /* styles */ } } ``` This seems like a better output than the `(max-width: 639.98px)` workaround that this plugin currently uses. Has this solution ever been considered?