/* Official-style app store download badges */
.store-badges {
  direction: ltr;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 1.25rem;
  width: 100%;
  max-width: 520px;
}

.store-badges--center {
  justify-content: center;
  margin-inline: auto;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex: none;
  width: 158px;
  height: 44px;
  padding: 5px 10px 5px 8px;
  background: #000;
  color: #fff;
  border: 1px solid #3a3a3a;
  border-radius: 7px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  box-sizing: border-box;
}

.store-badge:hover {
  background: #101010;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  color: #fff;
}

.store-badge:focus-visible {
  outline: 2px solid var(--primary, #e93c06);
  outline-offset: 3px;
}

.store-badge__icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-badge__icon svg,
.store-badge__icon img {
  width: 26px;
  height: 26px;
  display: block;
  object-fit: contain;
}

.store-badge--windows .store-badge__icon svg,
.store-badge--windows .store-badge__icon img {
  width: 24px;
  height: 24px;
}

.store-badge__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.05;
  min-width: 0;
  text-align: left;
}

.store-badge__text small {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.03em;
  opacity: 0.95;
  text-transform: none;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.store-badge__text strong {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.footer-brand .store-badges {
  flex-direction: column;
  align-items: flex-start;
  max-width: 158px;
}

@media (max-width: 768px) {
  .footer-brand .store-badges {
    align-items: center;
    margin-inline: auto;
  }
}

@media (max-width: 520px) {
  .store-badges {
    flex-direction: column;
    align-items: center;
    max-width: 170px;
  }
}
