/**
 * Property description rendering (recommendation D).
 *
 * TinyMCE wraps every Enter-separated line in its own <p>, so bullet-style
 * descriptions ("*Land area …", "*Zone …") save as N sibling paragraphs.
 * Default paragraph margins compound and make short text render very tall.
 *
 * Tighten spacing inside .property-description so bullet-style content
 * reads as a compact list while real paragraph breaks still get a gap.
 */

.single-property-element.property-info-detail .property-description .inner p {
    margin-bottom: 0.35em;
}

.single-property-element.property-info-detail .property-description .inner p:last-child {
    margin-bottom: 0;
}

/* Empty paragraphs (e.g. <p>&nbsp;</p>) are how TinyMCE represents a blank
   line between sections — keep them but make them narrower than a full
   paragraph margin, so real section breaks are still visible. */
.single-property-element.property-info-detail .property-description .inner p:empty {
    margin-bottom: 0.6em;
    min-height: 0.6em;
}
