/* Set alternate spacing and sizes for headings in post content */
.wp-block-post-content > * + .wp-block-heading {
    margin-top: var(--wp--preset--spacing--50);

    &:is(h2),
    &:is(h3),
    &:is(h4),
    &:is(h5),
    &:is(h6) {
        font-size: var(--wp--preset--font-size--lg);
        font-weight: 700;
    }
}

/* Set alternate font weight for headings with alternate font size */
.wp-block-heading.has-lg-font-size {
    font-weight: 700;
}
