/*
 * Molecule — content rhythm.
 * Tightens the trailing gap after text blocks that already have an "end"
 * (a paragraph or list) to ~half the normal block gap — but not before a
 * heading, which keeps its larger section-break top margin.
 */
.wp-block-post-content > :is(p, ul, ol) + :not(:is(h1, h2, h3, h4, h5, h6)) {
	margin-block-start: var(--wp--preset--spacing--30);
}
