ul.brand-list-filter {
    padding: 0;
    gap: 0.5rem;
    display: flex;
    list-style: none;
    text-align: center;
    overflow-x: auto;
    text-transform: uppercase;
}
ul.brand-list-filter > li {
  width: 90px;
}

ul.brand-list-filter > li .js-url {
  background-color: #fff;
}
ul.brand-list-filter > li .js-url > b {
    display: block;
    text-overflow: ellipsis;
    text-wrap: nowrap;
    overflow: hidden;
    padding: 0 2px;
    font-size: 11px;
}
ul.brand-list-filter > li .js-url:hover, ul.brand-list-filter > li .js-url.active {
  animation: destaca 0.5s linear;
  border-color: var(--green-color-bg);
}

.brand-list-filter img {
    width: 90px;
    height: auto;
    aspect-ratio: 100 / 90;
    object-fit: scale-down;
    mix-blend-mode: darken;
    padding: 8px;
}
@media (min-width:992px) {
  .brand-list-filter img, ul.brand-list-filter > li {
    width: 100%;
  }
  ul.brand-list-filter {
    display: grid;
    list-style: none;
    overflow-x: unset;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
}