/**
 * Text-flow niceties, site-wide.
 *
 * - Headings balance their line lengths so two-line titles don't leave a
 *   stranded last word.
 * - Paragraphs use `pretty`, which lets the browser avoid widows/orphans
 *   where supported (progressive enhancement — older engines ignore it).
 */

h1,
h2,
h3,
h4,
.wp-block-post-title,
.wp-block-query-title {
	text-wrap: balance;
}

p,
figcaption,
li {
	text-wrap: pretty;
}
