/* V1.3 — typography polish: prevent awkward short final lines without forced <br> breaks. */
/* Headings and short UI copy distribute words evenly across lines. */
h1,h2,h3,h4,h5,h6,.page-title,.card-title,.section-title,.kicker{
  text-wrap:balance;
}
/* Modern browsers use improved line breaking to avoid typographic orphans/widows. */
p,li,dd,blockquote,.lead,.intro,.description,.premium-muted,.legal-note,.disclaimer,
.page-panel p,.card p,.profile p,.company-profile p,.section p{
  text-wrap:pretty;
  overflow-wrap:break-word;
  word-break:normal;
  hyphens:auto;
}
/* Buttons/badges should stay visually compact rather than splitting into a stray word. */
.btn,button,[role="button"],.badge,.tag,.pill{
  text-wrap:balance;
}
/* Preserve the established V1.2 type scale; only line wrapping changes. */
@media(max-width:780px){
  p,li,dd,blockquote,.lead,.intro,.description{ text-wrap:pretty; }
}
