.upa_news_list_teaserlist {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.upa_news_teaseritem_wrapper a {
    text-decoration: none;
    display: block;
}

.upa_news_teaseritem_wrapper a:hover {
    color: var(--mg-primary-color-b-full) !important;
}

.upa_news_teaseritem {
    width: 100%;
    text-decoration: none;
}

.upa_news_teaseritem_inner {
    position: relative;
}

.upa_news_teaseritem_inner::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--mg-primary-color-b-super-bright);
    z-index: 1;
    transition: 0.2s all;
}

.upa_news_teaseritem:hover .upa_news_teaseritem_inner::before {
    background-color: var(--mg-primary-color-b-bright);
}

.upa_news_teaseritem_image {
    position: relative;
    z-index: 2;
}

.upa_news_teaseritem_body {
    padding: 20px;
    position: relative;
    z-index: 2;
}

.upa_news_teaseritem_body h2 {
    margin-bottom: 0;
    font-size: 22px;
    line-height: 1.4;
}

.upa_news_teaseritem_text {
    margin-top: 16px;
    font-size: 16px;
}

.upa_news_teaseritem_text p {
    margin-bottom: 16px;
}

.upa_news_teaseritem_meta {
    position: relative;
}

.upa_news_teaseritem_date {
    margin-top: 16px;
    color: var(--mg-primary-color-b-full);
    opacity: 0.6;
    font-size: 16px;
    line-height: 1.2;
}

.upa_news_teaseritem_more {
    position: absolute;
    right: 0;
    bottom: 0;
    line-height: 1.2;
    font-size: 16px;
    color: var(--mg-primary-color-a-full);
}

@media (min-width: 768px) {
    .upa_news_teaseritem_body h2 {
        font-size: 24px;
    }

    .upa_news_teaseritem_text {
        font-size: 19px;
    }

    .upa_news_teaseritem_body {
        padding: 40px;
    }
}

@media (min-width: 992px) {
    .upa_news_list_teaserlist {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .upa_news_list_teaserlist>* {
        flex: 0 1 calc(calc(100% / 3) - calc(40px / 3));
    }
}