.wp-block-cover {
    .wp-block-cover__image-background {
        transition: all 0.25s ease-in-out;
    }

    &.is-style-green-feature-bottom-right {
        align-items: stretch;

        .wp-block-cover__inner-container {
            display: flex;

            .wp-block-group {
                justify-content: space-between;
                display: flex;
                flex-direction: column;

                h3 {
                    margin-top: auto;
                }

                > .wp-block-group {
                    align-self: flex-end;
                }
            }
        }

        &:before {
            content: "";
            width: 43px;
            height: 43px;
            min-height: 1px;
            border-right: 15px solid var(--wp--preset--color--primary);
            border-bottom: 15px solid var(--wp--preset--color--primary);
            position: absolute;
            top: auto;
            bottom: 0 !important;
            right: 0 !important;
            z-index: 10;
            box-sizing: border-box;
            pointer-events: none;
        }
    }
}

@media screen and (max-width: 991px) {
    .wp-block-cover {
        &[style*="min-height:800px"] {
            min-height: 600px !important;
        }

        &[style*="min-height:600px"] {
            min-height: 400px !important;
        }
    }
}