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

.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_image.upa_play_video {
    cursor: pointer;
}

.upa_news_teaseritem_play {
    width: 60px;
    height: 60px;
    position: absolute;
    top: calc(50% - 30px);
    right: calc(50% - 30px);
}

.upa_news_teaseritem_play img {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
}

.upa_news_teaseritem_image:hover .upa_news_teaseritem_play img {
    transform: scale(1.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 {
    text-align: right;
}

.upa_news_teaseritem_more {
    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(60px / 3));
    }
}