.text_and_headline {
min-height: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-direction: row;
    gap: calc(var(--col) * 3);
}

.text_and_headline .right .headline + .text {
    margin-top: 3rem;
}


.text_and_headline .right {
    width: 30%;
    flex-grow: 1;
}

.text_and_headline .arrow {
    width: calc(var(--col) * 9);
    font-size: var(--highlighted-font);
    line-height: 1.3;
}

.text_and_headline .highlighted em {
    color: var(--secondary);
    font-style: normal;
    font-weight: 700;
}

.text_and_headline .image {
    height: 9rem;
    width: auto;
    object-fit: contain;
    margin: 6.5rem 0 6.5rem calc(0px - (100vw - (var(--outside-padding-inner) * 2)) * 0.125);
}

.text_and_headline .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem calc(var(--col) * 2);
    max-width: calc(var(--col) * 14);
    margin: auto;
}

.text_and_headline .grid .headline {
    align-self: end;
    text-align: right;
}

.text_and_headline .grid .headline:nth-last-child(3) {
    grid-row-end: span 2;
}

.text_and_headline .columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem calc(var(--col) * 2);
    margin: auto;
}

.text_and_headline .columns > * {
    width: 100%;
}

.text_and_headline .columns > .headline {
    grid-column-end: span 2;
    max-width: calc(var(--col) * 6);
}

.text_and_headline .columns > .right {
    max-width: calc(var(--col) * 6);
}


@media screen and (max-width: 1080px) {
    .text_and_headline {
        display: flex;
        flex-direction: column;
        gap: 3rem;
        flex-wrap: nowrap;
        justify-content: start;
    }

    .text_and_headline .right {
        width: 100%;
    }

    .text_and_headline .arrow {
        width: 100%;
    }
    
    .text_and_headline .arrow .image {
        display: none;
    }

    .text_and_headline .grid {
        grid-template-columns: 1fr;
    }

    .text_and_headline .grid .headline {
        text-align: left;
    }

    .text_and_headline .grid .headline:nth-last-child(3) {
        grid-row-end: span 1;
    }

    /* .text_and_headline .columns {
        grid-template-columns: 1fr;
    } */

    .text_and_headline .columns .headline {
        grid-column-end: span 1;
    }

    .text_and_headline .arrow {
        font-size: inherit;
        line-height: inherit;
    }

    .text_and_headline .grid,
    .text_and_headline .columns > .right {
        max-width: 100%;
    }
}


@media screen and (max-width: 1330px) {
    .text_and_headline .columns > .headline {
        grid-column-end: span 1;
        max-width: calc(var(--col) * 20);
    }

    .text_and_headline .columns {
        grid-template-columns: 1fr;
    }

        .text_and_headline .grid, .text_and_headline .columns > .right {
        max-width: 100%;
    }
}