.left-col {
    width: 30%;
    flex-grow: 1;

    box-shadow: 5px 0px 5px 5px rgb(0 0 0 / 15%);
    clip-path: inset(0 0px 0px calc(-1 * var(--standard-horiz-spacer)));
    -webkit-clip-path: inset(0 0px 0px calc(-1 * var(--standard-horiz-spacer)));
    
}

.alt-left-col {
    width: 30%;
    flex-grow: 1;
}

.sticky-top {
    position: sticky;
    top: -1px;
    height: fit-content;
    height: -moz-fit-content;
}

.sticky-shadow {
    box-shadow: 0 0 5px rgb(0 0 0 / 15%);
    clip-path: inset(0px 0px -15px 0px);
    z-index: 999;
}

.right-col {
    position: relative;
    width: 70%;
    flex-grow: 1;
}

.right-col::after {
    content: "";
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: 5px 0px 5px 5px rgb(0 0 0 / 15%);
    clip-path: inset(0 0px 0px calc(-1 * var(--standard-horiz-spacer)));
    -webkit-clip-path: inset(0 0px 0px calc(-1 * var(--standard-horiz-spacer)));
}

.alt-right-col {
    width: 30%;
    flex-grow: 1;
    box-shadow: 5px 0px 5px 5px rgb(0 0 0 / 15%);
    clip-path: inset(0 0px 0px calc(-1 * var(--standard-horiz-spacer)));
    -webkit-clip-path: inset(0 0px 0px calc(-1 * var(--standard-horiz-spacer)));
}

.z-index-0 {
    z-index: 0 !important;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
On single pages for Press, Updates, etc.,
'block-editor' is used as the wrapper class
for the content set via Gutenberg.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

.block-editor > *:not(section) {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.block-editor > *:not(.full-width) {
    padding-left: 3rem;
    padding-right: 3rem;
}

section[title="Outcomes"] .block-editor > * {
    padding: 0 !important;
}

.right-col > *:not([class]):not([id]) {
    padding: 0 3rem;
    margin: 2rem 0;
}

@media screen and (max-width: 991px) {

    main.page-split > .left-col,
    main.page-split > .alt-left-col,
    main.page-split > .right-col,
    main.page-split > .alt-right-col,
    .alt-left-col,
    .alt-right-col {
        width: 100%;
    }

    .sticky-top,
    .sticky-shadow {
        position: relative;
        top: -1px;
    }

}