.wp-block-columns  {
    &.is-style-space-between{
        justify-content: space-between;
    }

    .wp-block-column{
        &.has-background{
            position: relative;

            &::before{
                background-color: inherit;
                content: '';
                height: 100%;
                position: absolute;
                right: calc(100% - 1px);
                top: 0;
                width: 100vw;
            }
        }
    }

    &.is-style-reverse-on-mobile{
        @media screen and (max-width: 781px) {
            flex-direction: column-reverse;
        }
    }
}