.page .title h2 {
  font-size: 1.5rem;
  font-weight: 500;
  width: 100%;
  text-align: center;
  margin: 3em 0 0 0;
}

.lineImg {
  width: 30%;
  margin: 0 auto;
  display: block;
  margin: 1em auto 4em auto;
}

.news {
  min-height: 50vh;
}

.newsItems {
  width: 95%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(310px,1fr))
}

.newsItem {
  width: 100%;
  padding: 0 .5em;
  position: relative;
  margin-bottom: 4em;
}

.newsItem:hover:after {
  content: '';
  width: 100%;
  height: 280px;
  position: absolute;
  top: 0;
  background: #efefef;
  opacity: 0.4;
  z-index: 2;
}

.newsItem > svg {
  position: absolute;
  top: 0;
  left: 0;
}

.newsItem tspan {
  font-size: 9px;
  font-weight: 700;
  font-family: sans-serif;
}

.newsItem > img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.newsItem > a {
  display: flex;
  flex-direction: column;
}

.newsItem > a > .title {
  color: var(--mainColor);
  font-weight: 500;
  word-break: break-word;
  font-size: 1.2rem;
} 

.newsItem > a > .date {
  color: #616161;
  margin-top: 1em;
}


