FYI, I used the following code to set no hyphens in desktop by hyphens in mobile. Seems to work.
/* ### Remove hyphens in desktop while keeping in mobile ### */
@media only screen and (max-width: 3000px) {
.site-content article {
word-wrap: normal;
-webkit-hyphens: none;
-moz-hyphens: none;
hyphens: none;
}
}
@media only screen and (max-width: 480px) {
.site-content article {
word-wrap: normal;
-webkit-hyphens: auto;
-moz-hyphens: auto;
hyphens: auto;
}
}