.brand-row .search-link{
  display:grid;
  width:46px;
  height:46px;
  margin-left:auto;
  flex:0 0 46px;
  place-items:center;
  gap:0;
  border:1px solid #d7d9dd;
  border-radius:50%;
  background:#fff;
  color:#181a1e;
  font-size:0;
  transition:transform .2s ease,background-color .2s ease,border-color .2s ease,color .2s ease;
}
.brand-row .search-link svg{
  display:block;
  width:22px;
  height:22px;
  margin:0;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.brand-row .search-link:hover{
  transform:translateY(-2px);
  border-color:#c8232c;
  background:#c8232c;
  color:#fff;
}
@media(max-width:900px){
  .brand-row .search-link{width:42px;height:42px;flex-basis:42px}
  .brand-row .search-link svg{width:21px;height:21px}
}
