<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.image-text-split_container {
display:flex;
flex-direction: column;
gap: 1rem;
@media only screen and (min-width:1000px) {
gap: 2.5rem;
}
.image-text-split_content {
    display: flex;
    flex-direction: column;
    @media only screen and (min-width:1000px) {
        flex-direction: row;
        &amp;.image-text-split_content--reverse {
            flex-direction: row-reverse;
            .image-with-text_text__content {
                padding: 2.5rem 0;
                @media only screen and (min-width:1000px) { 
                padding-left: 0 !important;
                padding-right: 7rem;
                }
                }
        }
    }
    .image-text-split--half {
        width: 100%;
        @media only screen and (min-width:1000px) { 
            width: 50%;
        }
        position: relative;
        flex-grow: 1;
        flex-shrink: 0;
        .image-with-text-split_image__container {
            padding-bottom: 60.18518518518519%;
            min-height: 100%;
            position: relative;
            max-width: 65rem;;
            @media only screen and (min-width:1000px) { 
                max-width: unset;
            }
            img {
                position: absolute;
                top: 0;
                left: 0;
                display: block;
                width: 100%;
                max-width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center center;
                border-radius: 10px;
            }
        }
    }
    .image-with-text_text__content {
            padding: 2.5rem 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
        @media only screen and (min-width:1000px) { 
            padding-left: 7rem;
            padding-right: 0;
        }
        .image-with-text_text__content_title {
            font-size: 28px;
            margin-bottom: 1.25rem;
        }
        p,
        li {
            font-size: 14px;
        }
        ul { 
            padding-left: 1rem;
            li {
            list-style: disc;
            }
        }
        }
}
}</pre></body></html>