.tx-sf-banners > div {
  display: flex;
  gap: var(--g-gap);
  justify-content: center;
}

.banner {
  display: flex;
  background: rgb(var(--c-neutral-lightest));
  border-radius: var(--b-radius);
  height: 95px;
  line-height: 95px;
  width: 180px;
  border: 1px solid rgb(var(--c-neutral-lightest));
  justify-content: center;
  align-content: center;
  align-items: center;
  text-align: center;
}

.footer.-white .banner {
  border: 1px solid rgb(var(--c-neutral-light));
}

.banner img {
  max-height: 65px;
  max-width: 80%;
}

@media (hover: hover) {
  .page .banner:hover {
    border: 1px solid rgb(var(--c-primary));
  }
}