.badges {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.official-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  border-radius: 9px;
  transition: transform .2s ease, opacity .2s ease;
}

.official-badge img {
  display: block;
  width: 120px;
  height: 40px;
  object-fit: fill;
}

.bazaar-official img {
  border-radius: 7px;
}

.link-sign {
  width: 22px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #282d26;
  font-size: 18px;
  font-weight: 700;
}

a.official-badge:hover {
  transform: translateY(-2px);
}

a.official-badge:hover .link-sign {
  background: transparent;
  color: #5f8b39;
}

a.official-badge:focus-visible {
  outline: 3px solid rgba(95,139,57,.3);
  outline-offset: 4px;
}

.static-badge {
  cursor: default;
  user-select: none;
}

@media (max-width: 390px) {
  .badges {
    display: flex;
    justify-content: flex-end;
  }

  .official-badge img {
    width: 114px;
    height: 38px;
  }

  .link-sign {
    width: 22px;
    height: 38px;
  }
}
