.page-search {
  padding: 1rem 2rem;
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .page-search {
    padding: 3rem 0.5rem 2rem 0.5rem;
  }
}
.page-search-meta {
  display: flex;
  gap: 0.5rem;
  padding: 1rem 0;
}
.page-search-meta-heading {
  font-family: "Ubuntu", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2rem;
  color: #FFF;
}
@supports (--css: variables) {
  .page-search-meta-heading {
    color: var(--text-main-high);
  }
}
.page-search-meta .searched-word {
  font-family: "Ubuntu", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  color: #FF6D12;
}
@supports (--css: variables) {
  .page-search-meta .searched-word {
    color: var(--orange-primary);
  }
}
.page-search-results {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .page-search-results {
    gap: 2rem;
  }
}
.page-search-results-header-count {
  font-family: "Ubuntu", sans-serif;
  font-size: 1rem;
  font-style: normal;
  line-height: 1.25rem;
  color: #A3A1A1;
}
@supports (--css: variables) {
  .page-search-results-header-count {
    color: var(--text-medium);
  }
}
.page-search-results-header-count span {
  color: #FFF;
}
@supports (--css: variables) {
  .page-search-results-header-count span {
    color: var(--text-main);
  }
}
.page-search-results-items {
  display: grid;
  grid-gap: 1rem;
}
@media screen and (max-width: 1200px) {
  .page-search-results-items {
    grid-gap: 4rem;
    margin-top: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .page-search-results-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 4rem;
    grid-column-gap: 0.5rem;
  }
}
@media screen and (max-width: 576px) {
  .page-search-results-items {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    row-gap: 4rem;
    grid-column-gap: 0.5rem;
  }
}