.newsfeed {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: var(--blue6);
}

.newsfeed__filters {
  display: flex;
  margin-top: 50px;
}

.newsfeed__head .section-title {
  margin-bottom: 30px;
}
.newsfeed__head p {
  color: var(--grey);
}

.newsfeed__content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.newsfeed__foot {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.newsfeed__content {
  transition: opacity 0.2s ease-in-out, filter 0.2s ease-in-out;
}
.newsfeed__content.loading {
  pointer-events: none;
  opacity: 0.5;
  filter: blur(3px);
  transition: opacity 0.2s ease-in-out, filter 0.2s ease-in-out;
}

@media screen and (max-width: 1279px) {
  .newsfeed {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .newsfeed__content {
    gap: 20px;
  }
  .newsfeed__filters {
    margin-top: 30px;
  }
  .newsfeed-item__date {
    font-size: 14px;
  }
  .newsfeed-item__content {
    gap: 8px;
  }
  .newsfeed__foot {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .newsfeed {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .newsfeed__content {
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(254px, 1fr));
  }
}
@media screen and (max-width: 559px) {
  .newsfeed__content {
    gap: 30px;
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=news-block.css.map */