/*
 * Preserve intentional empty paragraphs without mutating stored HTML.
 * A literal <p></p> is valid but has no visible content in browsers.
 */
.vi-page-excerpt p:empty,
.host-card__bio p:empty,
.host-profile__excerpt p:empty {
	min-height: 1em;
	margin-top: 0;
	margin-bottom: 1em;
}

.vi-page-excerpt p:empty::before,
.host-card__bio p:empty::before,
.host-profile__excerpt p:empty::before {
	content: "\00a0";
}
