/**
 * Mobile heading safety layer.
 *
 * Translated headings may wrap at spaces, but never split a word. The small
 * companion script scales display type against its actual content box, limits
 * excessive line stacking, and reduces unbroken words before they overflow.
 */
@media (max-width: 959px) {
	body :is(h1, h2, h3):not([data-no-heading-fit]) {
		min-width: 0;
		max-width: 100%;
		word-break: normal !important;
		overflow-wrap: normal !important;
		hyphens: none !important;
		text-wrap: balance;
	}
}
