Is it possible to override a media query in my Wordpress child theme? Currently, the media query is set at max-width: 1024px, but I would like it to be triggered at a smaller size, maybe around 700px. The issue arises when attempting to create a new media query at 700px - while it is activated, it does not actually override the existing max-width: 1024px. How can I make sure that the parent theme's 1024px media query is ignored and the new 700px one takes precedence?
I am hesitant to edit the parent theme directly as any changes may be lost during updates. I have explored other resources without finding a solution:
Overriding media queries of parent css in Wordpress child-theme
This link did not provide an answer to my specific question.