.newsPage {
  margin-top: calc(20px + 30 * ((100vw - 320px) / 1600));
}
.newsPage h2 {
  font-weight: 700;
}
.newsPage__title {
  margin-bottom: calc(15px + 15 * ((100vw - 320px) / 1600));
}
.newsPage__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: calc(10px + 20 * ((100vw - 320px) / 1600));
}
.newsPage__item {
  background: #FFF;
  color: #000;
  -webkit-filter: drop-shadow(0px 0px 24px rgba(0, 0, 0, 0.35));
          filter: drop-shadow(0px 0px 24px rgba(0, 0, 0, 0.35));
}
.newsPage__item-img {
  height: 14.2857142857vw;
}
.newsPage__item-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.newsPage__item-content {
  padding: calc(10px + 10 * ((100vw - 320px) / 1600));
  padding-top: 0;
}
.newsPage__item-views {
  opacity: 0.5;
  text-align: right;
}

@media (max-width: 768px) {
  .newsPage__item-img {
    height: 20vw;
  }
}
@media (max-width: 600px) {
  .newsPage__items {
    grid-template-columns: 1fr 1fr;
  }
  .newsPage__item-img {
    height: 33.3333333333vw;
  }
}
@media (max-width: 425px) {
  .newsPage__items {
    grid-template-columns: 1fr;
    gap: calc(30px + 20 * ((100vw - 320px) / 1600));
  }
  .newsPage__item-img {
    height: auto;
  }
  .newsPage__item-img img {
    height: auto;
  }
  .newsPage__item-content {
    padding: calc(15px + 5 * ((100vw - 320px) / 1600));
    padding-top: 0;
  }
}/*# sourceMappingURL=newsPage.css.map */