.blog-search {
  width: 850px !important;
  margin: 0 auto !important;
}

.blog-search__input {
  padding: 1.5rem !important;
}

.blog-search__results {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 400px;
  width: inherit;
  overflow-y: auto;
  position: absolute;
  background-color: #fff;
  z-index: 99;
}

.search-result {
  display: flex;
  align-items: center;
  padding: 0.5rem;
}

.search-result__thumbnail {
  width: 75px;
  height: 75px;
  object-fit: cover;
  margin-right: 10px;
}

.search-result a {
  display: flex;
  align-items: center;
  width: 100%;
  color: #333;
}

.search-result:hover,
.search-result:focus-within {
  background-color: #f1f1f1;
}

@media (max-width: 915px) {
  .blog-search {
    width: initial !important;
  }

  .blog-search__results {
    width: 90%;
  }

  .search-result__thumbnail {
    width: 55px;
    height: 55px;
  }
}
