/* ============================================================================================
	FEATURED SQUARE IMAGE / PATTERN
============================================================================================ */
.resola-square-images {
    display: flex;
    flex-flow: wrap;
    gap: 8px 2%;
}
.resola-square-image {
    opacity: 0;
    transform: translateY(50%);
    transition: opacity 1.2s, transform 1.2s
}
.resola-square-image.observe_is_active {
    opacity: 1;
    transform: translateY(0)
}
.resola-square-images figure {
    width: calc(50% - 1%)
}
.resola-square-image-text {
    margin: 2em 0;
    padding: 0 1em
}
.resola-square-image-text p {
    margin: 1.6em 0 !important;
    line-height: 1.9
}
@media screen and (min-width: 960px) {
    .resola-square-image {
        display: flex;
        flex-flow: nowrap;
        gap: 0 4%
    }
    .resola-square-images {
        width: 60%;
    }
    .resola-square-images figure {
        flex: 1
    }
    .resola-square-image-text {
        flex: 1;
        min-width: 0;
        margin-top: 0
    }
}

.editor-styles-wrapper .resola-square-image {
    opacity: 1;
    transform: none
}