.teaser-set {
    @media (min-width: 768px) {
        display: flex;
    }
}

.teaser-set__image {
    display: none;
    text-align: center;
    padding: 0 1rem;
    margin-bottom: 2rem;

    @media (min-width: 768px) {
        display: block;
        flex: 0 0 33.5%;
        width: 33.5%;
    }

    img {
        max-width: 150px;
    }

    img[src*=".svg"] {
        width: 100%;
        height: auto;
    }
}

.teaser-set__content {

    @media (min-width: 768px) {
        flex: 0 0 66.5%;
        width: 66.5%;
    }

    ul {
        margin: 0;
        margin-top: 2rem;
        border-top: 2px solid var(--abc-red);
        list-style: none;
        padding: 0;

        @media (min-width: 540px) {
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
        }
    }
}

.teaser-set__teaser {
    padding-top: 1rem;
    margin-right: 5%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    @media (min-width: 540px) {
        flex: 0 0 45%;
    }

    @media (min-width: 768px) {
        padding-top: 2rem;
    }

    @media (min-width: 992px) {
        flex: 0 0 30%;
    }

    &:last-child {
        @media (min-width: 540px) {
            margin-right: 0;
        }
    }
}

.teaser-set__teaser--3 {
    @media (min-width: 540px) and (max-width: 767.98px) {
        display: none;
    }

    @media (min-width: 768px) and (max-width: 991.98px) {
        display: none;
    }
}

.teaser-set__teaser__category {
    text-transform: uppercase;
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    flex: 0 0 100%;
}

.teaser-set__teaser__image {
    text-align: center;
    border-radius: 0.625rem;
    margin-bottom: 1rem;
    flex: 0 0 45%;
    width: 45%;
    margin-right: 5%;

    @media (min-width: 768px) {
        flex: 0 0 100%;
        width: 100%;
        margin-right: 0;
    }

    img {
        width: 100%;
        border-radius: 0.625rem;
    }
}

.teaser-set__teaser__imagelink {
    display: block;
    transition: transform 0.2s ease-in-out;

    &:hover {
        transform: scale(1.03);
    }
}

.teaser-set__teaser__link {
    font-size: 1.25rem;
    color: var(--abc-font-color);
    flex: 0 0 50%;
    width: 50%;

    @media (min-width: 768px) {
        font-size: 1.375rem;
        flex: 0 0 100%;
        width: 100%;
    }

    &.arrow::after {
        height: 1.2rem;
    }
}
