.search-hero__title {
  margin-bottom: 56px;
}
@media screen and (max-width: 900px) {
  .search-hero__title {
    margin-bottom: 48px;
  }
}
.search-hero__search-bar {
  width: 768px;
  background-color: var(--color-blue-2);
  height: 24px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .search-hero__search-bar {
    width: 100%;
    margin-bottom: 16px;
  }
}
.search-hero__search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1 1 auto;
}
.search-hero__search-arrow-button {
  padding: 8px;
  opacity: 0.5;
  pointer-events: none;
  transition: var(--transition);
}
.search-hero__search-arrow-button._active {
  opacity: 1;
  pointer-events: all;
  transition: var(--transition);
}
@media screen and (max-width: 900px) {
  .search-hero__search-arrow-button {
    padding: 2px;
  }
}
.search-hero__search-icon {
  height: 24px;
  width: 24px;
  flex: 0 0 24px;
}
.search-hero__search-arrow-icon {
  height: 20px;
  width: 20px;
  flex: 0 0 20px;
}
.search-hero__search-input {
  border-bottom: var(--border-white);
  background-color: transparent;
  color: var(--color-white);
  padding: 2px 0;
  width: 100%;
  font-size: var(--font-size-s);
  line-height: 22px;
  margin: 0 8px 2px;
}
.search-preview {
  border-bottom: var(--border-blue-5);
  padding-bottom: 22px;
  margin-bottom: 24px;
}
.search-preview__breadcrumbs {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  margin-left: -6px;
}
.search-preview__breadcrumbs-item {
  display: flex;
  align-items: center;
}
.search-preview__breadcrumbs-item-text {
  display: block;
  margin: 0 6px;
  font-size: var(--font-size-xs);
  line-height: var(--line-height-xxs);
}
.search-preview__title {
  margin-bottom: 16px;
  max-width: 875px;
}
.search-preview__details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}
.search-preview__date {
  font-size: var(--font-size-xs);
  line-height: var(--line-height-xxs);
}
.search-preview__text {
  max-width: 520px;
}
.search-recommendations__item-cards {
  display: flex;
  border: var(--border-blue-5);
  border-right: none;
}
@media screen and (max-width: 900px) {
  .search-recommendations__item-cards {
    flex-direction: column;
    border-bottom: none;
  }
}
.search-recommendations__item-card {
  padding: 32px;
  border-right: var(--border-blue-5);
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .search-recommendations__item-card {
    border-bottom: var(--border-blue-5);
    padding: 24px 16px;
  }
}
.search-recommendations__item-card-title {
  margin-bottom: 16px;
}
.search-recommendations__item-card-text {
  margin-bottom: 24px;
}
@media screen and (max-width: 900px) {
  .search-results {
    padding-bottom: 24px;
  }
}
.search-results__text {
  display: block;
  padding-bottom: 32px;
  border-bottom: var(--border-blue-5);
  margin-bottom: 24px;
}
.search-results__list {
  margin-bottom: 32px;
}
@media screen and (max-width: 900px) {
  .search-results__list {
    margin-bottom: 24px;
  }
}
.search-results__pagination {
  border-bottom: var(--border-blue-5);
  padding-bottom: 32px;
}
.search-results__not-found-text {
  font-size: var(--font-size-xxl);
  line-height: var(--line-height-xl);
  max-width: 760px;
  margin-bottom: 96px;
}
.search-results__not-found-text ._blue {
  color: var(--color-blue);
}
@media screen and (max-width: 900px) {
  .search-results__not-found-text {
    font-size: var(--font-size-l);
    line-height: var(--line-height-l);
    margin-bottom: 64px;
  }
}
