/*TQ Typography raus, Hyphenation per CSS*/
.hyphenate {
    hyphens: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
    -webkit-hyphenate-limit-before: 4;
    -webkit-hyphenate-limit-after: 4;
    -ms-hyphenate-limit-chars: 9 4 4;
    hyphenate-limit-chars: 9 4 4
}

.dont-hyphenate {
    hyphens: manual;
    word-wrap: normal;
    overflow-wrap: normal
}