@import url(https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Vollkorn:wght@600;700&display=swap);


.fbadges {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 1rem;
  width: 100%;
  max-width: 85rem;
  margin: 0 auto;
  box-sizing: border-box;
  background: var(--colors--light, #f7f4fd);
  padding: 1.25rem 2rem;
  border-radius: var(--radius--small, 1rem);
}

.fbadges__badge {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.fbadges__img {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.6;
  transition: filter 200ms ease, opacity 200ms ease;
  display: block;
}

.fbadges__badge:hover .fbadges__img,
.fbadges__badge:focus-visible .fbadges__img {
  filter: none;
  opacity: 1;
}

.fbadges__divider {
  width: 1px;
  height: 24px;
  background: rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  margin: 0 0.5rem;
}

@media (max-width: 768px) {
  .fbadges {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }

  .fbadges__divider {
    display: none;
  }
}

