.news {
  background-color: white;
}
.news__container {
  padding: 72px 0;
}
@media (max-width: 480px) {
  .news__container {
    padding: 38px 0;
  }
}
.news__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 32px;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
@media (max-width: 960px) {
  .news__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .news__list {
    grid-template-columns: 1fr;
  }
}
.news__elem {
  cursor: pointer;
  border-radius: 24px;
  transition: 200ms;
}
.news__elem img {
  width: 100%;
  max-width: 470px;
  border-radius: 24px;
  -o-object-fit: cover;
     object-fit: cover;
  height: 290px;
}
.news__elem * {
  transition: 200ms !important;
}
.news__elem:hover a {
  color: var(--mainRed);
}
.news__title {
  padding: 16px 0 4px;
  max-width: 90%;
}
.news__showmore {
  padding-top: 32px;
  display: flex;
  justify-content: center;
}/*# sourceMappingURL=newsLIst.css.map */