.store-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.store-badges a {
  display: flex;
  transition: transform 0.2s, filter 0.2s;
}

.store-badges a:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.store-badges img {
  display: block;
  width: auto;
  height: 50px;
}

.store-badges-centered {
  justify-content: center;
  margin-top: 24px;
}

.download .store-badges img {
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 0;
}

@media (max-width: 560px) {
  .hero-actions .store-badges {
    justify-content: center;
  }

  .store-badges {
    gap: 8px;
  }

  .store-badges img {
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .store-badges a {
    transition: none;
  }
}
