/* Set spacing between subsequent paragraphs and paragraphs after headings */
.is-layout-constrained,
.is-layout-flow {
    & > p + p,
    & > .wp-block-heading + p,
    & > h2 + p,
    & > h3 + p,
    & > h4 + p,
    & > h5 + p,
    & > h6 + p {
        margin-top: var(--wp--preset--spacing--40);
    }
}

/* Make first paragraph in post content bolder */
.wp-block-post-content > p:first-child {
    font-weight: 500;
    color: var(--wp--preset--color--primary-dark);
}

[class*="is-style-section-primary"] .wp-block-post-content > p:first-child,
[class*="is-style-section-primary-dark"] .wp-block-post-content > p:first-child {
    color: var(--wp--preset--color--base);
}

/* Fix (non-block) images inside paragraphs */
.wp-block-post-content > p > img {
    display: block;
    margin: var(--wp--preset--spacing--60) auto;
}