.text-with-pattern .content-wrapper {
    display: flex;
    /* gap: 4rem; */
    flex-direction: column;
    @media ( min-width: 992px) {
        flex-direction: row;
        align-items: center;
        .image-right & {
            flex-direction: row-reverse;
        }
    }

    .image-content {
        aspect-ratio: 1/1;
        width: 100%;
        @media ( min-width: 992px) {
            flex-basis: 450px;
        }
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
        }
    }
}

.side-text {
    padding: 2rem;
    &.has-background {
        background-image: url('/wp-content/themes/uscaa/assets/img/palm-leaves.png');
        background-color: rgba(255,255,255,0.95);
        background-blend-mode: lighten;
        background-size: 800px;
    }
    @media ( min-width: 992px) {
        flex-basis: calc(100% - 450px);
        padding: 3rem;
    }
    h2 {
        margin: 0 0 2rem 0;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid var(--color-garnet);
    }
}
