
.news-list {
    display: flex;
    gap: 30px;
    flex-direction: column;
    flex-wrap: nowrap;
}

.news-list-item {
    display: grid;
    grid:
        "teaser title" min-content
        "teaser date"  min-content
        "teaser summary"  1fr
        / 260px auto;
    gap: 1px 23px;
    line-height: 1.5em;
}
@media screen and (max-width: 600px) {
    .news-list-item {
        grid: "teaser" min-content
              "title" min-content
              "date"  min-content
              "summary"  1fr
            / minmax(auto, 260px);
        gap: 8px;
    }
}

.news-list-item__teaser {
    grid-area: teaser;

    /* box-shadow: 0px 0px 0px 1px #bbd2eb; */
    box-shadow: 0px 0px 1px 1px #c7c7c7, -3px 3px 10px 0px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    position: relative;

    height: 140px;
    width: 100%;
}
.news-list-item__teaser img {
    width: 100%;
    height: 100%;
}
.news-list-item__teaser-img--cover {
    object-fit: cover;
}
.news-list-item__teaser-img--contain {
    object-fit: contain;
}

.news-list-item__teaser-img--contain.default {
        object-fit: cover;
    }

.news-list-item__teaser-img--cover.default {
    object-fit: cover;
}

a.news-list-item__title.news-list-item__title {
    grid-area: title;

    color: #30567d;
    text-decoration: none;
}
.news-list-item__title:hover {
    text-decoration: underline;
    filter: brightness(70%);
}
.news-list-item__title h3 {
    margin: 0;
}
.news-list-item__date {
    grid-area: date;

    color: #656565;
}
.news-list-item__summary {
    grid-area: summary;
    margin: 0;
    /* line-height: 1.5em; */
}

/* News Pages */

.news__date, .news__summary, .news__story {
    font-size: 15px;
}

@media screen and (max-width: 680px) {
    .news .video iframe {
        width: 90.5vw;
        height: 56.74vw;
    }
}