/* @media only screen and (min-width: 993px){ */

    .flex_layout.text_large_image .content-wrapper{
        height: 100%;
        grid-column-end: span 4;
    }

    .flex_layout.text_large_image .content-wrapper.right{
        grid-column-start: 9;
    }

    .flex_layout.text_large_image .content{
        padding: var(--grid-margin);
        /* height: calc(100vh - 25vh); */
        height: fit-content;
        position: sticky;
        top: 25vh;
    }

    .flex_layout.text_large_image .content .heading_wrapper{
        margin-bottom: 1.5rem;
    }

    .flex_layout.text_large_image .content p{
        margin-bottom: var(--grid-margin);
    }


    .flex_layout.text_large_image .image{

        grid-column-end: span 8;
        aspect-ratio: 2/3;
        position: relative;

    }

    .flex_layout.text_large_image .image img{
        object-fit: cover;
        object-position: center;
        width: 100%; height: 100%;
    }

/* } */

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

    .flex_layout.text_large_image .image,
    .flex_layout.text_large_image .content-wrapper,
    .flex_layout.text_large_image .content-wrapper.right{
        /* grid-column-end: span 4; */
        grid-column: 1 / -1;
    }

    .flex_layout.text_large_image .image{
        order: 1;
    }

    .flex_layout.text_large_image .content-wrapper{
        order: 2;
    }

    .flex_layout.text_large_image .content{
        height: fit-content;
    }

}