.search-page {
  margin-bottom: 30px;
} .search-page h1 {
  font-weight: 400;
} .search-page h1 span {
  font-weight: 700;
} .news-list-item-catalog {
  margin-bottom: 30px;
} .news-list-item-catalog .plit {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 30px 0 0;
} #show-more {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto 0;
  padding: 16px;
  background: #1B212A;
  border-radius: 10px;
  border: none;
  outline: none;
  cursor: pointer;

  font-family: 'OpenSans';
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 6%;
  text-align: center;
  vertical-align: middle;
  color: #FFF;
} .news-list-item-catalog .search-list__show-more.is-loading {
  opacity: .6;
  pointer-events: none;
} .news-list-item-catalog .search-list__show-more.is-finished {
  opacity: .65;
  cursor: default;
} .news-list-item-catalog .search-list__show-more.is-error {
  background: #f7334b;
  color: #fff;
}

@media (max-width: 1200px) {
  .news-list-item-catalog .plit {
    grid-template-columns: repeat(4, 1fr);
  }
} @media (max-width: 950px) {
  .news-list-item-catalog .plit {
    grid-template-columns: repeat(3, 1fr);
  }
} @media (max-width: 750px) {
  .news-list-item-catalog .plit {
    grid-template-columns: repeat(2, 1fr);
  }
}