/*------------------------------------*\
    
    Contained Image + Text Block Customizations - Global Styling

    The styles you add to this file will be applied to the 'Contained Image + Text' block. 
    If there is any reasons why you would need to style them separately,
    please create a block-specific stylesheet for it (don't forget to register that block-specific stylesheet in acf-start-blocks.php)

\*------------------------------------*/

.flex-row {
    display: flex;
    flex-wrap: wrap;
}

.image-text .flex-row {
    align-items: center
}

.image-text__text {
    margin-bottom: 26px;
}

.image-text__img {
    max-width: 546px;
}

.image-text__img img {
    border-radius: var(--border-radius);
}
.image-text__text .content p {
    margin-bottom: 20px;
}

@media (min-width: 1200px) {
    .flex-opposite {
    flex-direction: row-reverse;
    }

    .image-text--left .flex-opposite {
        flex-direction: row-reverse;
    }

    .image-text__img {
        max-width: 100%;
    }

    .image-text__text {
        margin-bottom: 0;
        max-width: 540px;
    }

    .image-text--left  .image-text__text {
        margin-left: auto;
    }
}