Suppose I have this CSS code:
.about_text {
font-weight: 300;
font-size: 1.125rem;
}
Then, I add a media query like this:
@media screen and (min-width: 64em) {
.about_text {
font-weight: 600;
font-size: 1.500rem;
}
}
Despite not using !important, the new styles don't override the original CSS. This issue seems unusual to me as I have experience using LESS in WordPress sites without encountering such conflicts before. I've made sure that the media queries are placed after the initial CSS rules.