
.news-list {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 900px) {
    .news-list {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media screen and (max-width: 650px) {
    .news-list {
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width: 450px) {
    .news-list {
        grid-template-columns: 1fr;
    }
}

.news-list-item {
    display: grid;
    grid: "teaser" min-content
          "title" min-content
          "date"  min-content
          "." 5px
          "summary" 4.5em
        / auto;
    gap: 5px 20px;

    /* line-height: 1.2em; */
}

.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;

    margin-bottom: 6px;

    /* height: 140px;
    width: 100%; */

    background: url(/Content/Images/tc_news_bg.jpg);
    background-size: cover;
    aspect-ratio: 5 / 3;
}
.news-list-item__teaser img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-list-item__teaser-img--cover {
    object-fit: cover;
}
.news-list-item__teaser-img--contain.news-list-item__teaser-img--contain {
    object-fit: contain;
}

a.news-list-item__title.news-list-item__title {
    grid-area: title;

    /* color: #30567d; */
    color: black;
    text-decoration: none;
}
.news-list-item__title:hover {
    text-decoration: underline;
    filter: brightness(70%);
}
.news-list-item__title h3 {
    margin: 0;
    font-size: inherit;
    font-size: inherit;
}
.news-list-item__date {
    grid-area: date;

    color: #454545;
    font-style: italic;
}
.news-list-item__summary {
    grid-area: summary;
    height: 4.5em;

    display: -webkit-box;
    /* max-width: 200px; */
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;

    margin: 0;
    text-overflow: ellipsis;
}




/* News Pages */

.news__date, .news__summary, .news__story {
    font-size: 15px;
}
