.start-header-hidden header img {
    opacity: 0;
}

.content_block.start:first-of-type,
.content_block.start {
    background-color: var(--primary);
    color: var(--white);
    padding: 0;

    position: relative;
    /* pointer-events: none; */

    display: grid;
    grid-template-columns: 1fr;
}

.content_block.start > :not(.scroll) {
    grid-row-start: 1;
    grid-column-start: 1;
    min-height: 100vh;

    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;

    position: sticky;
    top: 0;
}

.content_block.start > hgroup {
    position: sticky;
    top: auto;
    bottom: 0;
    z-index: 2;
    padding: var(--header, var(--outside-padding-inner)) calc(var(--outside-padding-inner) + var(--col)) var(--outside-padding-inner);
    width: fit-content;
    height: fit-content;
    justify-self: end;
    align-self: end;
    gap: .5em;
    max-width: 100vw;
}

.content_block.start > .images {
    grid-row-start: 1;
    grid-column-start: 1;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    max-width: 100vw;
}

.content_block.start .images > * {
    padding: 0;
    pointer-events: none;
    opacity: 0;
    transition: all .3s ease;
}

.content_block.start .images > :first-child,
.content_block.start .images > .visible {
    opacity: 1;
}
.content_block.start .images img {
    height: 50vh;
    width: 100vw;
    position: absolute;
    right: 0;
    top: 0;
    object-fit: cover;
}

@media (min-width: 1081px) {
    .content_block.start .images img {
        width: 113vw;
        min-width: calc(110vh / 9 * 16);
        max-width: calc(113vw);
        height: 110vh;
        min-height: calc(110vh);
        max-height: calc(113vw / 16 * 9);
        object-position: -25% 50%;
        top: auto;
        bottom: 0;
    }
}
    .content_block.start hgroup {
        filter: drop-shadow(0px 0px 1rem var(--primary));
    }

@media (max-width: 1080px) {
    .content_block.start hgroup {
        filter: drop-shadow(0px 0px 1rem var(--primary)) drop-shadow(0px 0px 1rem var(--primary)) drop-shadow(0px 0px 1rem var(--primary));
    }
}

.content_block.start .headline {
    font-size: clamp(var(--headline), 5vw, 15rem);
    line-height: 1;
    max-width: 10em;
    width: min-content;
}

/***************/
/* HEADLINE */

.start .headline em {
    transition: all .3s ease;
}

.start[data-active="0"] .headline em {
    color: currentColor;
}

.start hgroup {
    /* --img_width: 15rem;

    --headline_width_start: 90rem;
    --headline_width_end: 150rem;
    --headline_width: var(--headline_width_start);

    text-align: center;
    flex-direction: column;

    pointer-events: auto; */
}

.start hgroup .headline {
    padding-left: calc(var(--img_width) * 1);
    transition: all 1s ease;
    margin: 0;
}

/***************/
/* LISTE */

.start hgroup ul {
    list-style: none;
    padding: 0;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    text-transform: uppercase;
    /* font-weight: 700; */
    width: max-content;
    max-width: 100%;
    /* font-size: 0.9em; */
}

.start hgroup ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;

    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.start hgroup ul li.visible {
    opacity: 1;
    transform: translateY(0);
}


.start hgroup ul li:first-child::before {
    display: none;
}

.start + .entry_image {
    margin-top: 5vw;
}

.start hgroup ul li button {
    text-align: left;
}


@media (min-width: 1081px) {
    .start hgroup ul li::before {
        content: "";
        width: 2px;
        height: 1em;
        background: currentColor;
    }

}


@media (max-width: 1080px) {
    .start hgroup ul {
        /* flex-direction: column;
        gap: 0; */
        width: min-content;
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
        gap: 0;
    }

    .start hgroup ul li {
        width: max-content;
    }
    .start hgroup ul li::after {
        content: "";
        width: 2px;
        height: 1em;
        margin-right: .5em;
        background: currentColor;
    }
    .content_block.start > hgroup:not(.scroll) {
        justify-self: start;
        padding-top: calc(50vh + 3rem);
        padding-bottom: 3rem;
        justify-content: flex-start;
        width: 100%;
    }
}