The confusion here is that there is both a min-width CSS property and media query with the same name:
@media (min-width: 420px) {...} /* This is read-only and is set to screen size */
.element { min-width: 420px; ...} /* This is setting a property of the selected element */