/* Apply only to long-form journal/article text. */
.article-content,
.post-content,
.entry-content,
.journal-text {
  text-align: justify;
  hyphens: manual;          /* JavaScript inserts soft hyphens */
  -webkit-hyphens: manual;
  overflow-wrap: normal;
  word-break: normal;
}

/* Add this class or attribute where hyphenation must be disabled. */
.no-hyphen,
[data-no-hyphen] {
  hyphens: none !important;
  -webkit-hyphens: none !important;
}
