.grid.searchpage {
    grid-template-columns: 300px 1fr;
}

.searchpage {
    font-family: "RobotoCondensed";
}
  
#section-filter div {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: #888;
  cursor: pointer;
}
  
#section-filter div .arrow {
  --color: #eee
}

#section-filter div.current {
  font-family: "RobotoCondensed Bold";
  color: black;
}

#section-filter div.current .arrow {
  --color: red
}
  
#section-filter div:hover {
  color: black;
}

#search-pager {
  margin-top: 50px;
  margin-bottom: 100px;
  text-align: right;
}

#search-pager button {
  font-family: "Roboto";
  font-size: 13px;
  margin-left: 30px;
  appearance: none;
  border: solid #ddd 1px;
  background: white;
  width: 35px;
  height: 35px;
}
  
#search-pager button.current {
  font-family: "Roboto Bold";
  border-color: black;
}
  
/*  */

.item-card.search {
  max-width: 100%;
  flex-direction: row;
  gap: 50px;
  border-bottom: solid whitesmoke 2px;
}

.item-card.search .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}
  
.item-card.search .data:nth-last-child(1) {
  margin-bottom: 0;
  height: auto;
}

.item-card.search .photo-border {
  background: white;
  margin-bottom: 0;
}

.item-card.search .photo-bg {
  height: 100px;
  width: 100px;
}

.item-card.search .data {
  font-size: 16px;
  display: grid;
  grid-template-columns: 35px 1fr;
}