@mixin hyphenate() {
	@include overflow-wrap(break-word);
	hyphens: auto;
}

@mixin hyphenate-reset() {
	@include overflow-wrap(normal);
	hyphens: manual;
}
