helpers:
.hyphenate {
word-wrap: break-word;
hyphens: auto;
}
/* helps with fonts that look a bit chunky on MacOS vs other platforms/OS's */
.skinnify {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.unskinnify {
-webkit-font-smoothing: auto;
-moz-osx-font-smoothing: auto;
}
helpers: