/* Styling columns, paragraphs, and headers that are in the top-level of editor flow to always be alignwide */
.entry-content {
    > .wp-block-columns,
    > .wp-block-pullquote,
    > .wp-block-details {
        width: 100% !important;
        max-width: var(--responsive--alignwide-width) !important;
    }
    > p,
    > h1, > h2, > h3, > h4, > h5, > h6 {
        width: calc(100% - 2 * var(--global--spacing-horizontal)) !important;
        max-width: var(--responsive--aligndefault-width) !important;
        margin-left: var(--global--spacing-horizontal) !important;
    }
}
/* Duping above for editor */
.block-editor-block-list__layout.is-root-container > .wp-block-columns,
.block-editor-block-list__layout.is-root-container > .wp-block-pullquote,
.block-editor-block-list__layout.is-root-container > .wp-block-details {
    width: 100% !important;
    max-width: var(--responsive--alignwide-width) !important;
}
.block-editor-block-list__layout.is-root-container > p,
.block-editor-block-list__layout.is-root-container > h1
.block-editor-block-list__layout.is-root-container > h2,
.block-editor-block-list__layout.is-root-container > h3,
.block-editor-block-list__layout.is-root-container > h4,
.block-editor-block-list__layout.is-root-container > h5,
.block-editor-block-list__layout.is-root-container > h6 {
    width: calc(100% - 2 * var(--global--spacing-horizontal)) !important;
    max-width: var(--responsive--aligndefault-width) !important;
    margin-left: var(--global--spacing-horizontal) !important;
}

@media screen and (min-width: 1600px) {
    .entry-content {
        > p,
        > h1, > h2, > h3, > h4, > h5, > h6 {
            margin-left: calc(var(--global--spacing-horizontal) + ((100vw - 1600px)/2)) !important;
        }
    }
}

/* Sticky styles in Gutenberg */
.entry-content .is-style-sticky,
.block-editor-block-list__layout.is-root-container .is-style-sticky {
    position: sticky;
    top: var(--global--spacing-vertical);
}