.split-textured-hero {
    position: relative;
    border-bottom: var(--border);
    margin-top: calc(var(--border-stroke) * -1);
}
/* OUTER FIGURE */
.split-textured-hero .outer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}
.split-textured-hero .outer-pattern svg {
    width: 100%;
    height: auto;
}
/* SPLIDE */
.split-textured-hero__slider-container {
    height: 100%;
    padding: 2rem;
    border-top: var(--border);
}
.split-textured-hero .splide__slide .img-box {
    border: var(--border);
    height: 30rem;
    margin: 0 0 2rem;
}
.split-textured-hero .splide__slide .caption {
    text-align: center;
    margin: 0 auto;
    padding: .5rem 0;
    max-width: 100%;
}
/* SPLIDE ARROWS */
.split-textured-hero .splide__arrow {
    color: var(--canvas-weave, #BCB094);
    top: auto;
    bottom: 0;
    transform: none;
    opacity: 1;
    font-size: 3rem;
}
/* DESCRIPTION */
.split-textured-hero .description {
    padding: 22.4rem 2rem 7.3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    row-gap: 2.4rem;
    margin: 0 auto;
}
.split-textured-hero .description .icon-flower {
    color: var(--canvas-weave, #BCB094);
    font-size: 3rem;
}
@media only screen 
and (min-width: 961px) {

    .split-textured-hero .row {
        min-height: 80rem;
    }
    /* COLS */
    .split-textured-hero .col-12-7 {
        order: -1;
    }
    .split-textured-hero .col-12-7::before {
        content: "";
        z-index: 10;
        pointer-events: none;
        position: absolute;
        width: 2px;
        height: 100%;
        background-color: var(--canvas-weave, #BCB094);
        right: -2px;
        top: 0;
    }
    /* SPLIDE */
    .split-textured-hero__slider-container {
        border-top: 0;
        padding: 4rem 2.8rem;
    }
    .split-textured-hero .splide__slide {
        width: 100%;
    }
    .split-textured-hero .splide__slide .img-box {
        height: 70.9rem;
        margin: 0 0 4rem;
    }
    .split-textured-hero .splide__slide .caption {
        max-width: 40%;
    }
    /* SPLIDE ARROWS */
    .split-textured-hero .splide__arrow {
        font-size: 3.4rem;
    }
    .split-textured-hero .splide__arrow--prev {
        left: 20%;
    }
    .split-textured-hero .splide__arrow--next {
        right: 20%;
    }
    /* DESCRIPTION */
    .split-textured-hero .description {
        max-width: 35.2rem;
        padding: 46% 0 0;
        row-gap: 4rem;
    }
    .split-textured-hero .description .icon-flower {
        font-size: 4rem;
    }

    .split-textured-hero .split-textured-hero__slider-container {
        translate: 0.6rem;
        
    }

}
@media only screen 
and (max-width: 960px) {
    .split-textured-hero .splide__arrow--prev {
        left: 0;
    }
    .split-textured-hero .splide__arrow--next {
        right: 0;
    }
    .split-textured-hero .splide__arrow--prev::before {
        content: "\e901";
    }
    .split-textured-hero .splide__arrow--next::before {
        content: "\e902";
    }
    .split-textured-hero .splide__slide .caption {
        padding-inline: 4rem;
    }
}
@media only screen 
and (min-width: 500px)
and (max-width: 961px) {
    .split-textured-hero .description {
        padding: 50% 10rem 30%;
    }

    .split-textured-hero svg :is(line, rect, path, circle) {
        stroke-width: var(--border-stroke);
    }
}

/* CMS
------------------------------------ */
.is-root-container .split-textured-hero .splide__track {
    overflow-x: auto;
    padding-bottom: 1rem;
}
.is-root-container .split-textured-hero .splide__arrow {
    display: none;
}

/* Animations
------------------------------------ */
:where(#wrapper) .split-textured-hero .description :is(i, h2, p, a) {
	opacity: 0;
	--duration: 1s;
}
:where(#wrapper) .split-textured-hero.animateActive .description :is(i, h2, p, a) {
	animation: fade var(--duration) forwards;
	animation-delay: var(--delay, 0);
}
:where(#wrapper) .split-textured-hero.animateActive .description i {
    --delay: 0.3s;
}
:where(#wrapper) .split-textured-hero.animateActive .description h2 {
    --delay: 0.5s;
}
:where(#wrapper) .split-textured-hero.animateActive .description p {
    --delay: 0.7s;
}
:where(#wrapper) .split-textured-hero.animateActive .description a {
    --delay: 0.9s;
}


