/*
 * TQ English word-wrapping policy
 * Prevents automatic hyphenation such as "detec-tion".
 * Long unbroken strings may still wrap when required, without visible hyphens.
 */
html[lang="en"] body,
html[lang="en"] body * {
  -webkit-hyphens: none !important;
  -ms-hyphens: none !important;
  hyphens: none !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
}
