/* Teaser */
.teaser {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    position: relative;
}

.teaser__title {
    font-size: var(--text-xxs);
    font-weight: 700;
    margin-block-start: calc(var(--gap) * 1);

    @media (min-width: 1000px) {
        margin-block-start: calc(var(--gap) * 2);
    }
}

.teaser__image {
    width: 100%;
    height: auto;
    aspect-ratio: 19 / 9;
    object-fit: cover;
}

.teaser__link {
    position: absolute;
    top: 0;
    left: var(--gap);
    width: calc(100% - var(--gap) * 2);
    height: 100%;
    border-radius: var(--radius-md);
    text-indent: -9999px;
}