/**
 * App Store + Google Play badges (index, studio-join, studio-claim, pricing).
 * Both badges use height: var(--store-badge-h) (Apple/Google: equal cap height).
 * badge-google-play-en.png is trimmed to the artwork bounds (no extra PNG padding).
 */
.store-badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}

.store-badge-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 0;
  border-radius: 8px;
  transition: transform 0.18s ease-out, opacity 0.18s ease-out;
}

.store-badge-link:hover {
  transform: scale(1.02);
  text-decoration: none;
  opacity: 0.95;
}

.store-badge-link:focus-visible {
  outline: 2px solid var(--purple, #6a00f4);
  outline-offset: 4px;
}

.store-badge-img {
  display: block;
  height: var(--store-badge-h, 40px);
  width: auto;
  max-width: 100%;
}

@media (max-width: 520px) {
  .store-badge-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
