.strike-testimonial-col-wrap {
    display: grid;
    grid-template-columns: 3fr 5fr;
    justify-content: space-between;
    position: relative;
    background-color: var(--wp--preset--color--primary);

    .strike-testimonial-img {
        z-index: 0;
        height: 100%;
        object-fit: cover;
        width: 100%;
    }
    .strike-testimonial-text {
        padding: 5rem 3rem 5rem;
        z-index: 2;
        color: var(--wp--preset--color--white);
        font-weight: 900;
        letter-spacing: 1px;
        line-height: 3rem;
        margin-top: auto;
        margin-bottom: auto;

        .quote {
            margin: 1rem 0;
            font-style: italic;
            text-transform: uppercase;
            letter-spacing: 2px;
            line-height: 1.4;

            &.text-xl {
                font-size: var(--wp--preset--font-size--lgr) !important;
            }
            &.text-lg {
                font-size: var(--wp--preset--font-size--lg) !important;
            }
            &.text-md {
                font-size: var(--wp--preset--font-size--md) !important;
            }
            &.text-sm {
                font-size: var(--wp--preset--font-size--sm) !important;
            }
        }
        .person {
            font-size: var(--wp--preset--font-size--sm);
            text-transform: uppercase;
        }
        .role {
            font-size: 0.7rem;
            font-weight: 400;
            line-height: 20px;
        }
    }
    @media screen and (max-width: 767px) {
        grid-template-columns: 1fr;
        .strike-testimonial-img {
            width: 100%;
        }
        .strike-testimonial-text {
            padding: 3rem 1.5rem 5rem;
            background-color: var(--wp--preset--color--primary);
            .quote {
                margin: 1rem 0;
                font-size: var(--wp--preset--font-size--base) !important;
                line-height: 1.2 !important;
            }
        }
    }
}
@media screen and (min-width: 768px){
    .strike-testimonial-col-wrap::before {
        z-index: 1;
        content: '';
        position: absolute;
        height: 100%;
        width: 100%;
        background-color: var(--wp--preset--color--primary);
        background-size: cover;
        background-position: top;
        clip-path: polygon(100% 0, 37.5% 0, 28% 69%, 37.5% 69%, 35% 100%, 100% 100%);
    }
}
/* supports up to 1770px */
@media screen and (min-width: 1440px){
    .strike-testimonial-col-wrap::before {
        clip-path: polygon(100% 0, 37.5% 0, 25% 69%, 37.5% 69%, 32% 100%, 100% 100%);
    }
}