.alternative-page-hero-with-image{
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.alternative-page-hero-with-image.animate__animated{
    animation-name: fadeIn;
}

.alternative-page-hero-with-image-inner{
    max-width: var(--wide-width);
    margin: 0 auto;
}

.alternative-page-hero-with-image-breadcrumbs{
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    column-gap: 1.6rem;
}

.alternative-page-hero-with-image-breadcrumbs li{
    display: flex;
    list-style: none;
    column-gap: var(--item-column-gap);
    align-items: center;
    text-transform: uppercase;
}

.alternative-page-hero-with-image-breadcrumbs li:not(:first-child):before{
    content: '';
    display: block;
    width: 0.8rem;
    height: 0.8rem;
    margin: 0 0.8rem;
    border-top: 0.2rem solid;
    border-right: 0.2rem solid;
    transform: rotateZ(45deg);
}

.alternative-page-hero-with-image-breadcrumbs li span,
.alternative-page-hero-with-image-breadcrumbs li a,
.alternative-page-hero-with-image-breadcrumbs li:before{
    opacity: 0.4;
}

.alternative-page-hero-with-image-breadcrumbs li a{
    text-decoration: none;
    color: var(--text-color);
}

.alternative-page-hero-with-image-breadcrumbs li a:is(:hover, :focus, :active){
    text-decoration: underline;
}

.alternative-page-hero-with-image-breadcrumbs li:last-child{
    font-weight: 500;
}

.alternative-page-hero-with-image-breadcrumbs li:last-child :is(span, a){
    opacity: 0.6;
}

.alternative-page-hero-with-image-description{
    margin: 0;
}

.alternative-page-hero-with-image[data-image-position="center"] .alternative-page-hero-with-image-image img{
    max-width: 200%;
    width: 200%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.alternative-page-hero-with-image[data-image-position="right"] .alternative-page-hero-with-image-image img{
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.alternative-page-hero-with-image-heading h1[data-size="big"]{
    font: var(--font-headline-0);
}


@media (min-width: 768px){
    .alternative-page-hero-with-image[data-image-position="center"] .alternative-page-hero-with-image-image img{
        max-width: 100%;
        width: 100%;
    }

    .alternative-page-hero-with-image[data-image-position="right"] .alternative-page-hero-with-image-inner{
        display: grid;
        grid-auto-flow: dense;
        align-items: center;
    }

    .alternative-page-hero-with-image[data-image-position="right"][data-text-alignment="top"] .alternative-page-hero-with-image-inner{
        align-items: start;
    }

    .alternative-page-hero-with-image[data-image-position="right"][data-text-alignment="top"] .alternative-page-hero-with-image-inner .alternative-page-hero-with-image-main{
        margin-top: calc(var(--header-height) / 2);
    }

    .alternative-page-hero-with-image[data-image-position="right"][data-text-alignment="top"] .alternative-page-hero-with-image-inner .alternative-page-hero-with-image-image{
        margin-top: calc(var(--header-height) * -1);
    }

    .alternative-page-hero-with-image[data-image-position="right"][data-text-alignment="bottom"] .alternative-page-hero-with-image-inner{
        align-items: end;
    }

    .alternative-page-hero-with-image[data-image-position="right"][data-text-width="50"] .alternative-page-hero-with-image-inner{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .alternative-page-hero-with-image[data-image-position="right"][data-text-width="60"] .alternative-page-hero-with-image-inner{
        grid-template-columns: minmax(0, 6fr) minmax(0, 4fr);
    }

    .alternative-page-hero-with-image[data-image-position="right"][data-text-width="70"] .alternative-page-hero-with-image-inner{
        grid-template-columns: minmax(0, 7fr) minmax(0, 3fr);
    }

    .alternative-page-hero-with-image[data-image-position="right"] .alternative-page-hero-with-image-image{
        grid-column: 2;
    }

    .alternative-page-hero-with-image[data-image-position="right"][data-text-width="50"] .alternative-page-hero-with-image-image img{
        width: 150%;
        max-width: 150%;
        left: 0;
        transform: none;
    }

    .alternative-page-hero-with-image[data-image-position="right"][data-text-width="60"] .alternative-page-hero-with-image-image img{
        width: 187%;
        max-width: 187%;
        left: 0;
        transform: translateX(-14%);
    }

    .alternative-page-hero-with-image[data-image-position="right"][data-text-width="70"] .alternative-page-hero-with-image-image img{
        width: 250%;
        max-width: 250%;
        left: 0;
        transform: translateX(-27%);
    }

    .alternative-page-hero-with-image[data-image-position="right"] .alternative-page-hero-with-image-main{
        grid-column: 1;
        padding: calc(var(--header-height) + var(--block-margin)) 0 var(--block-margin);
    }

    .alternative-page-hero-with-image[data-image-position="right"][data-text-width="60"] .alternative-page-hero-with-image-description{
        max-width: 75%;
    }

    .alternative-page-hero-with-image[data-image-position="right"][data-text-width="70"] .alternative-page-hero-with-image-description{
        max-width: 70%;
    }
}

@media (min-width: 992px){

    .alternative-page-hero-with-image[data-image-position="center"] .alternative-page-hero-with-image-inner{
        display: grid;
        grid-template-columns: minmax(0, 4fr) minmax(0, 2fr);
        grid-auto-flow: dense;
        align-items: end;
    }

    .alternative-page-hero-with-image[data-image-position="center"] .alternative-page-hero-with-image-main{
        display: grid;
        grid-template-columns: subgrid;
        grid-column: 1 / span 2;
        grid-row: 1;
        align-items: end;
    }

    .alternative-page-hero-with-image[data-image-position="center"] .alternative-page-hero-with-image-image{
        grid-row: 1;
        grid-column: 2;
    }

    .alternative-page-hero-with-image[data-image-position="center"] .alternative-page-hero-with-image-image img{
        max-width: 350%;
        width: 350%;
        left: 25%;
        margin-bottom: var(--block-margin);
    }

    .alternative-page-hero-with-image[data-image-position="center"] .alternative-page-hero-with-image-heading{
        padding-top: calc(var(--header-height) + var(--row-gap));
        grid-column: 1;
    }

    .alternative-page-hero-with-image[data-image-position="center"] .alternative-page-hero-with-image-description{
        grid-column: 1;
    }
}

@media (min-width: 1200px){
    .alternative-page-hero-with-image[data-image-position="center"] .alternative-page-hero-with-image-heading h1{
        margin-bottom: 0;
    }

    .alternative-page-hero-with-image[data-image-position="center"] .alternative-page-hero-with-image-inner{
        grid-template-columns: minmax(0, 4fr) minmax(0, 2fr) minmax(0, 2fr);
    }

    .alternative-page-hero-with-image[data-image-position="center"] .alternative-page-hero-with-image-main{
        grid-column: 1 / span 3;
    }

    .alternative-page-hero-with-image[data-image-position="center"] .alternative-page-hero-with-image-description{
        padding-top: calc(var(--header-height) + var(--row-gap));
    }

    .alternative-page-hero-with-image[data-image-position="center"] .alternative-page-hero-with-image-description{
        grid-column: 3;
    }
}