.store-badges,
.store-badges--trio {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
}
.hero--local .store-badges--hero {
  margin: 1.25rem 0 0;
  justify-content: flex-start;
}
.store-badges .store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  flex: 1 1 0;
  min-height: 64px;
  min-width: 0;
  max-width: 220px;
  box-sizing: border-box;
  text-decoration: none;
}
.store-badges .store-badge--google,
.store-badges .store-badge--apple,
.store-badges .store-badge--web {
  background: #101010;
  color: #fff;
  border: 1px solid #777;
  border-radius: 12px;
  padding: 0.65rem 1rem;
}
.store-badges .store-badge--google:hover,
.store-badges .store-badge--apple:hover,
.store-badges .store-badge--web:hover {
  background: #252525;
  border-color: #fff;
}
.store-badge--google:focus-visible,
.store-badge--apple:focus-visible,
.store-badge--web:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 4px;
}
.store-badge__icon {
  flex: 0 0 28px;
  width: 28px;
  height: 32px;
}
.store-badge__copy {
  display: flex;
  flex-direction: column;
  text-align: start;
  line-height: 1.25;
  min-width: 0;
}
.store-badge__copy strong {
  font-size: 1.15rem;
  white-space: nowrap;
}
.store-badge small {
  font-size: 0.72rem;
  font-weight: 500;
  white-space: nowrap;
}
.store-badges .store-badge--pending {
  flex-direction: column;
  gap: 0.2rem;
  cursor: default;
  color: var(--text);
  opacity: 1;
}
.cta-final .container {
  max-width: 920px;
}
@media (max-width: 720px) {
  .store-badges,
  .store-badges--trio {
    gap: 0.5rem;
  }
  .store-badges .store-badge {
    padding: 0.55rem 0.6rem;
    gap: 0.45rem;
    max-width: none;
  }
  .store-badge__icon {
    flex-basis: 22px;
    width: 22px;
    height: 26px;
  }
  .store-badge__copy strong {
    font-size: 0.95rem;
  }
  .store-badge small {
    font-size: 0.64rem;
  }
}
