.headline-container {
    margin-top: 6rem;
    display: flex;
    width: 100%;
    justify-content: flex-start;
}
.headline-container h1 {
    margin-top: auto;
    hyphens: auto;
}
@media screen and (min-width: 900px) { 
    .headline-container h1 {
        hyphens: none !important;
    }
}
@media screen and (min-width: 1400px) { 
    .headline-container {
        margin-top: 7rem;
    }
}

.teaser-list {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 1fr;
    column-gap: 1.4rem;
    row-gap: 1.4rem;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 2rem;
}
.teaser-list li {
    height: 100%;
}
.teaser-list a {
    background: var(--color-neutral);
    display: block;
    height: 100%;
    text-decoration: none;
    border: var(--border) solid var(--color);
}
.teaser-list .green a {
    background: var(--color-green);
}
.teaser-list .red a {
    background: var(--color-red);
}
.teaser-list .lilac a {
    background: var(--color-lilac);
}

.textbox {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    padding: 1rem;
}
.textbox .button, a.button {
    margin-top: 3rem;
    transition: 0.2s ease-out all;
    text-decoration: none;
}
.textbox > span:last-child {
    margin-top: auto;
}
a:focus .textbox .button, a.button:focus, a.button:hover {
    color: var(--color-background);
    background: var(--color);
}
h2 {
    margin-bottom: 1rem;
}
.imagebox {
    display: block;
    width: 100%;
    height: 200px;
}
.textbox {
    height: calc(100% - 200px);
}
.teaser-list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    line-height: 0;
}
.events-button {
    width: 100%;
    margin-top: 1.4rem;
    text-decoration: none;
    color: var(--color-background);
    background-color: var(--color);
}
.events-button:hover {
    color: var(--color);
    background-color: var(--color-background);
}
@media screen and (min-width: 360px) { 
    .imagebox {
        height: 250px;
    }
    .textbox {
        height: calc(100% - 250px);
    }
}
@media screen and (min-width: 700px) { 
    .imagebox {
        height: 290px;
    }
    .textbox {
        height: calc(100% - 290px);
    }
}
@media screen and (min-width: 900px) { 
    .teaser-list{
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(1, 430px);
        margin-top: 3rem;
    }
    .teaser-list > *:first-child {
        grid-column: 1 / span 2;
        height: 100%;
    }
    .teaser-list > *:first-child a {
        display: flex;
        flex-direction: row-reverse;
        height: 100%;
    }
    .teaser-list > *:first-child .imagebox {
        width: 50%;
        height: auto;
    }
    .teaser-list > *:first-child .textbox {
        width: 50%;
        height: auto;
    }
    .textbox {
        padding: 1rem;
    }
    .textbox {
        padding: 1.4rem;
    }
    .teaser-list a:hover {
        box-shadow: 3px 3px 0px var(--color);
    }
    .teaser-list a:hover .button {
        color: var(--color-background);
        background: var(--color);
    }
    .imagebox {
        height: 310px;
    }
    .textbox {
        height: calc(100% - 310px);
    }
}
@media screen and (min-width: 1200px) { 
    .teaser-list{
        grid-template-rows: repeat(1, 480px);
    }
}
@media screen and (min-width: 1600px) { 
    .teaser-list{
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: none;
    }
    .teaser-list > *:first-child {
        grid-column: 1 / span 1;
        height: 100%;
    }
    .teaser-list > *:first-child a {
        display: block;
        height: 100%;
    }
    .teaser-list > *:first-child .imagebox {
        width: 100%;
        height: 310px;
    }
    .teaser-list > *:first-child .textbox {
        width: 100%;
        height: calc(100% - 310px);
    }
}
@media screen and (min-width: 1920px) { 
    .imagebox,
    .teaser-list > *:first-child .imagebox {
        height: 340px;
    }
    .textbox,
    .teaser-list > *:first-child .textbox {
        height: calc(100% - 340px);
    }
}

.col-2 {
    border-top: var(--border) solid var(--color);
    padding-top: 3rem;
}
@media screen and (min-width: 1024px) {
    .col-2 {
        padding-top: 4rem;
    } 
}
@media screen and (min-width: 1200px) {
    .col-2 {
        padding-top: 5rem;
    } 
}