.search-results-page__hero {
  text-align: center;
}
.search-results-page__title span {
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .search-results-page__title {
    font-size: 2.875rem;
  }
}
.search-results-page__intro {
  margin-top: 28px;
}
.search-results-page__intro-text {
  max-width: 680px;
  margin: 10px auto 0;
  color: var(--box-text-color);
  font-size: 0.9375rem;
  line-height: 1.5;
}
.search-results-page__search-form {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin: 28px auto 0;
}
@media screen and (min-width: 768px) {
  .search-results-page__search-form {
    grid-template-columns: minmax(0, 1fr) 170px;
  }
}
.search-results-page .search-results-page__search-input {
  width: 100%;
  min-height: 50px;
  border: 1px solid #E0E0E0;
  border-radius: 10px;
  background: #ffffff;
  padding: 0 20px;
  color: var(--text-color-secondary);
  font-size: 1rem;
  line-height: 1.4;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.search-results-page .search-results-page__search-input::placeholder {
  color: #b0aea9;
}
.search-results-page .search-results-page__search-input:focus {
  border-color: #46C2C2;
}
.search-results-page__content {
  margin-top: 34px;
}
.search-results-page__toolbar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}
@media screen and (min-width: 1024px) {
  .search-results-page__toolbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.search-results-page__results-count {
  margin: 0;
  color: var(--box-text-color);
}
.search-results-page__results-count span {
  font-weight: 700;
  color: var(--title-color-primary);
}
.search-results-page__filter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: stretch;
}
.search-results-page__filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.search-results-page__filter-group label {
  color: var(--title-color-primary);
  font-weight: 800;
  text-transform: uppercase;
}
.search-results-page__select-wrap {
  position: relative;
}
.search-results-page__select-wrap::after {
  content: "";
  position: absolute;
  top: 13px;
  right: 16px;
  width: 20px;
  height: 20px;
  color: #98a2b3;
  background-image: url("../images/icon-arrow-down.svg");
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
.search-results-page__select-wrap select {
  appearance: none;
  min-height: 44px;
  padding: 12px 40px 12px 14px;
  border: 1px solid #d7dde2;
  border-radius: 12px;
  background: #ffffff;
  font-size: 0.9375rem;
  line-height: 1.2;
  outline: none;
}
.search-results-page__list {
  display: grid;
  gap: 20px;
}
.search-results-page__load-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .search-results-page__load-more {
    flex-direction: row;
  }
}
.search-results-page__load-more-count {
  color: #98a2b3;
  font-size: 0.875rem;
  line-height: 1.4;
}
.search-results-page__empty {
  padding: 40px 24px;
  text-align: center;
}
.search-results-page__empty-title {
  margin: 0;
  color: var(--title-color-primary);
  font-size: 1.625rem;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
}
.search-results-page__empty-text {
  max-width: 580px;
  margin: 16px auto 0;
  color: var(--box-text-color);
  font-size: 1rem;
  line-height: 1.5;
}

.search-result-card {
  overflow: hidden;
  border: 1px solid var(--border-color-primary);
  border-radius: 20px;
  background: var(--box-background-color);
}
.search-result-card[hidden] {
  display: none !important;
}
.search-result-card__content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
}
.search-result-card__body {
  padding: 22px 22px 18px;
}
.search-result-card__eyebrow {
  margin: 0 0 10px;
  color: #46C2C2;
  font-size: 0.9375rem;
  line-height: 1.2;
  font-weight: 600;
}
.search-result-card__title {
  margin: 0;
  color: var(--box-title-color);
  font-size: 1.25rem;
  line-height: 1.35;
  font-weight: 800;
  text-transform: uppercase;
}
.search-result-card__title a {
  color: inherit;
  text-decoration: none;
}
.search-result-card__excerpt {
  margin: 14px 0 0;
  color: var(--box-text-color);
  font-size: 0.9375rem;
  line-height: 1.55;
}
.search-result-card__footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px 22px 18px;
  border-top: 1px solid #edf1f5;
}
@media screen and (min-width: 768px) {
  .search-result-card__footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.search-result-card__date {
  position: relative;
  padding-left: 26px;
  color: #7f8790;
  font-size: 0.875rem;
  line-height: 1.4;
}
.search-result-card__date::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  background-color: var(--menu-contact-icon-color);
  transform: translateY(-50%);
  mask-image: url("../images/icon-calendar.svg");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}
.search-result-card__media {
  min-height: 220px;
  background: #0c6aa8;
}
.search-result-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.search-result-card__media-link {
  display: block;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .search-result-card--pressuobshteniya {
    display: grid;
    grid-template-columns: minmax(220px, 31%) minmax(0, 1fr);
  }
}
.search-result-card--career .search-result-card__title {
  color: var(--title-color-primary);
}

/*# sourceMappingURL=search-results.css.map */
