.news-card {
  border: 1px solid lightgray;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
.news-card .thumbnail {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-card .desc {
  padding: 10px;
}
.news-card .desc .date {
  font-size: 0.8rem;
  color: grey;
  margin-bottom: 10px;
}
.news-card .desc .date i {
  margin-right: 5px;
}
.news-card .desc .title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  line-height: 1.5em;
  height: calc(2 * 1.5em);
  color: black;
  transition: all 0.2s ease-in-out;
  font-weight: normal;
}
.news-card:hover {
  box-shadow: 5px 5px 10px lightgrey;
}
.news-card:hover .desc .title {
  color: #2582A1;
}

#single-news-section #newsCarousel .carousel-item img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#single-news-section .title {
  color: black;
}/*# sourceMappingURL=news.css.map */