.news-strip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.25rem 0.125rem 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.news-strip > * {
  flex: 0 0 min(18rem, 84vw);
  scroll-snap-align: start;
}

.news-strip-card,
.news-strip-card > a,
.news-strip-article {
  height: 100%;
}

.news-strip-media {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: center;
  background: rgb(21 24 95);
  padding: 1rem;
  text-align: center;
  color: white;
}

.news-strip-media--image {
  min-height: 8rem;
  overflow: hidden;
  padding: 0;
}

.news-strip-image {
  display: block;
  min-height: 8rem;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-strip-body {
  padding: 1rem;
}

.news-strip-body > * + * {
  margin-top: 1rem;
}

.news-strip-title {
  color: rgb(17 24 39);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
}

.news-strip-excerpt {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: rgb(75 85 99);
  font-size: 0.875rem;
  line-height: 1.5rem;
}
