
.news-list {
    display: flex;
    gap: 20px;
    flex-direction: row;
    flex-wrap: nowrap;
}

.news-list-item {
    display: grid;
    grid:
        "teaser" min-content
        "title" min-content
        "date"  min-content
        "summary"  1fr
        / 20vw auto;
    gap: 15px;
    font-size: 15px;
    line-height: 1.2em;
}
/* Stack the image on top on mobile */
@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 1px 1px #c7c7c7, -3px 3px 10px 0px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 232px;
    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;
}

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;
}

.c-news-embed-modal.c-news-embed-modal {
    height: auto;
    width: max-content;
}
.c-news-embed-modal .o-modal__close-btn {
    margin-bottom: 0.5em;
}
.c-news-embed-modal .o-modal__content {
    display: flex;
}


/* News Pages */

.news__date, .news__summary, .news__story {
    font-size: 15px;
}
