.wp-block-group {
    &.is-style-rounded{
        border-radius: 20px;
        overflow: hidden;
    }

    &.is-style-remove-bg-mobile{
        @media ( max-width: 992px ) {
            background-image: unset !important;
        }
    }

    &.is-style-sticky{
        margin-bottom: -30px !important;
        position: sticky;
        top: 0; /* Stick at the top of the viewport */

        + .wp-block-group,
        .wp-block-cover {
            border-top-left-radius: 30px;
            border-top-right-radius: 30px;
        }
    }
}