.news-list {
  display: flex;
  gap: 20px;
  flex-direction: column;
  flex-wrap: nowrap;
}

.news-list-item {
  display: grid;
  grid:
    "teaser title" min-content
    "teaser date" min-content
    "teaser summary" 1fr
    / 250px auto;
  gap: 2px 20px;

  font-size: 15px;
  line-height: 1.2em;
}

.news-list-item__teaser {
  grid-area: teaser;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  width: 250px;
  height: 140px;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0px 0px 1px 1px #c7c7c7;
  background: linear-gradient(
    87deg,
    rgba(130, 21, 26, 1) 0%,
    rgb(206, 21, 26, 1) 100%
  );
  border: 1px solid #092f60;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-list-item__video {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.news-list-item__teaser img:not(.default) {
  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 h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.2em;
}
.news-list-item__title h3:hover {
  text-decoration: underline;
  filter: brightness(70%);
}
.news-list-item__date {
  grid-area: date;

  color: #656565;
}
.news-list-item__summary {
  grid-area: summary;
  margin: 0;
  line-height: 1.2em;
  font-size: 15px;
  align-self: start;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.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;
}

/* 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
      / auto;
    gap: 8px;
  }
}
@media screen and (max-width: 310px) {
  .news-list-item__teaser {
    width: 100%;
  }
}

/* News Pages */
.news__date,
.news__summary,
.news__story {
  font-size: 15px;
}


