/************************************/
/*************  COLORS   ************/
/************************************/
.module-news {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4px 1fr 4px 1fr 4px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 4px;
}
.module-news .news-container:hover .image-container .image {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.module-news .news-container .image-container {
  margin-bottom: 14px;
  overflow: hidden;
}
.module-news .news-container .image-container .image {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  will-change: transform;
}
.module-news .news-container .title,
.module-news .news-container .description,
.module-news .news-container .date {
  margin-bottom: 12px;
  padding-right: 20px;
}
@media (max-width: 800px) {
  .module-news {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
