/* @group Text Beside Image
------------------------------------ */
.text-beside-image {
    --row-default: 126.5rem;
}
.text-beside-image .text .wp-block-image {
    width: 21.7rem;
    height: auto;
    margin: 0 0 2rem;
}
.text-beside-image .text .wp-block-image > img {
    object-fit: contain;
}
.text-beside-image .text .wp-block-heading {
    margin: 0 0 2rem;
}
.text-beside-image .text ul {
    padding: 0;
    margin: 4.5rem 0 0;
}
.text-beside-image .text ul li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 1);
    list-style-type: none;
    font-size: 1.6rem;
    line-height: 225%;
    color: var(--blue);
}
.text-beside-image .text ul li:first-child {
    border-top: 1px solid rgba(0, 0, 0, 1);
}
.text-beside-image .image .wp-block-image {
    height: 33rem;
    border-radius: 2rem;
    margin: 0;
}
@media only screen
and (min-width : 961px) {
    .text-beside-image .text .wp-block-image {
        margin: 0 0 2.9rem;
    }
    .text-beside-image .text .wp-block-heading {
        margin: 0 0 2.5rem;
    }
    .text-beside-image .image .wp-block-image {
        height: 62.3rem;
    }
    .text-beside-image .text ul {
        margin: 4.5rem 0 0;
    }
    .text-beside-image .text ul li {
        border-bottom: 1px solid var(--blue);
        font-size: 1.8rem;
        line-height: 130%;
        letter-spacing: .03em;
        max-width: 28.1rem!important;
    }
    .text-beside-image .text ul li:first-child {
        border-top: 1px solid var(--blue);
    }
    /* Reversed */
    .text-beside-image.reversed .image {
        order: -1;
    }
    .text-beside-image.reversed .image .wp-block-image {
        height: 68rem;
    }
}
@media only screen
and (min-width : 961px)
and (max-width : 1440px) {
}
@media only screen
and (min-width : 0)
and (max-width : 960px) {
    /* Reversed */
    .text-beside-image.reversed .text .wp-block-heading {
        text-align: center;
    }
}

/* @end */


.editor-styles-wrapper .text-beside-image .wp-block-image .components-resizable-box__container {
    width: 20rem;
}
.editor-styles-wrapper .text-beside-image .wp-block-image .components-resizable-box__container img {
    object-position: left center;
}



/* ANIMATIONS */
:where(#wrapper) .text-beside-image :is(h2, p, ul, .wp-block-image) {
    opacity: 0;
    --duration: 1s;
}

:where(#wrapper) .text-beside-image.animateActive :is(h2, p, ul, .wp-block-image) {
    animation: fadeUp var(--duration) forwards;
    animation-delay: var(--delay, 0);
}

:where(#wrapper) .text-beside-image.animateActive h2 {
    --delay: 0.5s;
}
:where(#wrapper) .text-beside-image.animateActive :is(p, ul) {
    --delay: 0.75s;
}
:where(#wrapper) .text-beside-image.animateActive .wp-block-image {
    --delay: 1s;
}
