.brand-logo {
  display: block;
  width: 190px;
  height: 62px;
  overflow: hidden;
  border-radius: 4px;
  text-decoration: none;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  transition: filter .2s ease, transform .2s ease;
}

.brand-logo:hover img,
.brand-logo:focus-visible img {
  filter: brightness(1.14);
  transform: scale(1.02);
}

@media (max-width: 760px) {
  .brand-logo {
    width: 175px;
    height: 58px;
    margin: 0 auto;
  }
}
