.store-download {
  max-width: 1180px;
  margin: 0 auto 24px;
  padding: 34px 38px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  box-shadow: 0 8px 30px rgba(19, 34, 28, .045);
}

.store-download h2 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.store-download p {
  margin: 0;
  max-width: 650px;
  color: var(--muted);
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

.store-link {
  min-width: 168px;
  padding: 10px 18px;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.12;
  box-shadow: 0 10px 24px rgba(19, 34, 28, .16);
}

.store-link:hover {
  background: var(--brand-dark);
}

.store-link-kicker {
  font-size: .72rem;
}

.store-link strong {
  font-size: 1.22rem;
}

@media (max-width: 820px) {
  .store-download {
    margin: 0 18px 24px;
    padding: 28px;
    display: block;
  }

  .store-links {
    margin-top: 24px;
  }

  .store-link {
    flex: 1;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .store-link {
    transition: transform .2s ease, box-shadow .2s ease;
  }

  .store-link:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
  }
}
