.search-row .search-bar {
  position: relative;
  flex: 75 0 auto;
}

.search-bar:before {
  content: "";
  background-image: url("images/search-icon.svg");
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  display: block;
  top: 13px;
  left: 13px;
  position: absolute;
}

.search-row #page-search-input {
  width: 100%;
  border: 1px solid #d6d6d6;
  padding: 18px 15px 18px 45px;
  line-height: 1em;
  font-size: 16px;
  color: #000;
  -webkit-text-fill-color: #000;
  font-weight: 600;
}

.search-row {
  display: flex;
  gap: 20px;
}

.page-search-results {
  margin-top: 20px;
}

.page-search-results .grid__item:not(:last-child) .box {
  margin-bottom: 20px;
}

.page-search-results .box a {
  min-height: 180px;
  padding: 20px;
  display: block;
  background-color: #fafafa;
  border-radius: 10px;
  border: 1px solid #d6d6d6;
  position: relative;
}

.page-search-results .box a:before {
  content: "";
  mask-image: url("images/info.svg");
  mask-repeat: no-repeat;
  width: 25px;
  height: 25px;
  display: block;
  top: auto;
  bottom: 20px;
  position: absolute;
  left: 20px;
  background: #5d5d5d;
}

.page-search-results .box .box-title {
  color: #5d5d5d;
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .search-row {
    flex-wrap: wrap;
  }
}
