.hero__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.hero__item {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: #000;
  background-color: #f2f1f0;
  background-repeat: no-repeat;
  background-size: 110px 90px;
  background-position-x: 99%;
  min-height: 90px;
}
.hero__item:hover{
  background-color: #ebeae8;
}
.hero__item-link {
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px 14px;
}
.hero__item-link span{
  display: block;
  color: var(--dark-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  width: 25%;
  text-align: left;
}
.hero__more {
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100% !important;
}
.hero__more-img {
  min-width: 14px;
  min-height: 14px;
  transform: rotate(90deg);
}
.search__inner{
  padding: 0;
}
