/* SEARCH-RESULT-HERO */

.search-result-hero {
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;    
  justify-content: center;
  background-image: url('../../assets/images/search-dark-img.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* SEARCH_RESULTS */
.search-result-wrapper {
  padding: 120px 0;
  background-color: var(--white-color-second);
}
.search-result-wrapper h1 {
  text-align: center;
  font-family: 'Montserrat-Bold';
  font-size: 32px;
  font-weight: 700;
  line-height: 130%;
}
.search-result-wrapper h1 span {
  color: var(--primary-color);
}
.search-result-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 56px;
  gap: 24px;
}

@media (max-width: 900px) {
  .search-result-hero {
    height: 300px;
    padding: 0px 10%;

  }
  .search-result-cards-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px){
  .search-result-cards-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  .search-result-wrapper {
    padding: 70px 0;
  }

  .search-result-wrapper h1 {
    font-size: 24px;
  }
  .search-result-hero {
    height: 200px;

  }

}
