/**
 * Read More sits inside `.pf-body` so WP Editor blocks pick up `div.wp-editor-content a` theme rules.
 * Plain-text blocks only style `.pf-body p`; typography for those toggles is mirrored in JS from the first paragraph/list item.
 */
body.single-listing .element.content-block .pf-body > .mlpro-read-more-inner {
	display: block;
}

body.single-listing .element.content-block .pf-body > a.mlpro-read-more-toggle {
	display: inline-block;
	margin-top: 0.35em;
}

/* Plain-text toggles use inline color from paragraph; restore accent on hover/focus like theme links. */
body.single-listing .plain-text-content .pf-body > a.mlpro-read-more-toggle--plain:hover,
body.single-listing .plain-text-content .pf-body > a.mlpro-read-more-toggle--plain:focus {
	color: var(--accent) !important;
}
