/* Shared long-form copy alignment across public and management surfaces. */
:where(main, article, section, .panel, .card, .drawer, .document, [data-screen-label])
  :where(p, li, blockquote):not(.note):not(.mono):not([role="status"]):not([role="alert"]) {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  overflow-wrap: break-word;
}

/* Operational and interactive content must keep its natural alignment. */
:where(nav, table, form, button, input, select, textarea, pre, code, .toolbar, .kpi, .tag, .pill, .status, .empty)
  :where(p, li, blockquote) {
  text-align: initial;
  hyphens: manual;
}
