.wp-block-heading {
    strong {
        font-weight: inherit;
    }
}

/* Add additional spacing above headings in the post content for readability */
.wp-block-post-content > * + .wp-block-heading {
    margin-top: var(--wp--preset--spacing--70);
}

/* Add custom spacing between headings and subtitles */
:root :where(.is-layout-constrained)  .wp-block-heading + .is-style-subtitle {
    margin-top: var(--wp--preset--spacing--20);
}

/* Make headings in post content smaller */
.wp-block-post-content > .wp-block-heading {
    font-size: var(--wp--preset--font-size--extra-large);
    font-weight: 400;
    margin-top: var(--wp--preset--spacing--60);

    &:is(h3),
    &:is(h4),
    &:is(h5),
    &:is(h6) {
        font-size: var(--wp--preset--font-size--large);
    }

}