.news-all {
  margin-bottom: 11rem
}
.news-all__heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.9rem
}
.news-all__form {
  display: flex
}
.news-all__form-button {
  transition: opacity .25s
}
.news-all__form-button_disabled {
  opacity: .5;
  pointer-events: none
}
.news-all__select {
  transition: opacity .25s
}
.news-all__select_disabled {
  opacity: .5;
  pointer-events: none!important
}
.news-all__select:not(:last-child) {
  margin-right: 1rem
}
.news-all__select .select-text {
  width: 25rem
}
.news-all__content {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-gap: 2.7rem 2.8rem
}
.news-all__item {
  border: 1px solid #c1c1c2;
  transition: border .25s
}
.news-all__item:hover {
  border-color: #1e5d9d
}
@media (max-width:48em) {
  .news-all {
    margin-bottom: 8rem
  }
  .news-all__heading {
    display: block;
    margin-bottom: 4rem
  }
  .news-all__title {
    font-size: 6.4rem;
    margin-bottom: 4rem
  }
  .news-all__form {
    display: block
  }
  .news-all__select:not(:last-child) {
    margin-right: 0;
    margin-bottom: 2rem
  }
  .news-all__select .select-text {
    width: 100%
  }
  .news-all__content {
    grid-template-columns: repeat(1,1fr);
    grid-gap: 5.4rem
  }
  .news-all__item .news-item__img {
    height: 38rem
  }
  .news-all__item .news-item__text {
    padding-right: 5rem;
    padding-bottom: 3.5rem
  }
}