.content_block.overview:first-of-type {
    padding-top: calc( (var(--outside-padding-inner) + 5vw) + (var(--header, 0px) + -2rem) );
}

.content_block.overview {
    background-color: var(--primary);
    color: var(--white);
}

.content_block.overview h1 {
    margin-bottom: clamp(1em, var(--col), 3em);
}

.content_block.overview .teasers {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(35rem, 1fr));
    gap: clamp(1em, var(--col), 3em);
    list-style: none;
    margin: 0;
    padding: 0;
}

.content_block.overview .teasers a:after {
    content: none;
}

.content_block.overview .teasers a img {
    transition: all .3s ease;
}

.content_block.overview .teasers a:hover img {
    transform: scale(1.05);
}

.content_block.overview figure {
    border-radius: 13px;
    overflow: hidden;
}

.content_block.overview figcaption {
    font-size: var(--small-font);
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.3;
    background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,.3) 50%);
    text-shadow: 0px 0px .5em rgba(0,0,0,.5);
}
.content_block.overview figcaption:only-child {
    aspect-ratio: 450 / 300;
    align-self: end;
    display: flex;
    align-items: end;
    background-color: var(--secondary);
}

@media (max-width: 500px) {
    .content_block.overview .teasers {
        grid-template-columns: 1fr;
    }
}