.news_grid_cont {
  display: flex;
  flex-wrap: wrap;
  margin: -12px;
}
.news_grid_cont a {
  display: block;
  text-decoration: none;
  border: 1px solid #c7c7c7;
  border-radius: 16px;
  overflow: hidden;
  transition: all 300ms;
  max-width: calc(33.33333% - 30px);
  width: 100%;
  margin: 15px;
}
.news_grid_cont a .item_image {
  display: block;
  height: 270px;
}
.news_grid_cont a .item_image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.news_grid_cont a .item_date {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #afafaf;
  margin-top: 16px;
  margin-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  transition: color 300ms;
}
.news_grid_cont a .item_title {
  display: block;
  font-size: 1.25rem;
  font-weight: 500;
  color: #505049;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  transition: color 300ms;
}
.news_grid_cont a:hover {
  background: #fff;
  box-shadow: 0px 2px 30px 6px rgba(0, 0, 0, 0.1);
}
.news_grid_cont a:hover .item_date {
  color: #505049;
}
.news_grid_cont a:hover .item_title {
  color: #1a1a18;
}

@media screen and (max-width: 991px) {
  .news_grid_cont a {
    max-width: calc(50% - 30px);
  }
}
@media screen and (max-width: 640px) {
  .news_grid_cont a {
    max-width: calc(100% - 30px);
  }
}
