/* App Store edition, alongside the established direct download. */
.edition-intro {
  margin: 14px 0 0;
  color: var(--text-secondary);
  font-size: 14px;
}
.edition-intro a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.store-section {
  padding-top: 80px;
  padding-bottom: 80px;
  border-top: 1px solid var(--border);
}
.store-heading {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 64px;
  margin-bottom: 40px;
}
.store-heading h2 {
  margin: 0 0 20px;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.04em;
  line-height: 1.12;
}
.store-intro {
  max-width: 480px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.65;
}
.store-offer {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card-bg);
}
.store-offer p {
  margin: 16px 0;
  line-height: 1.65;
}
.store-offer strong {
  color: var(--text-primary);
  font-size: 21px;
}
.store-offer .store-fine-print {
  color: var(--text-secondary);
  font-size: 13px;
}
.store-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.store-shot {
  min-width: 0;
  margin: 0;
}
.store-shot-featured {
  grid-column: 1 / -1;
}
.store-shot a {
  display: block;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #f2f3f5;
}
.store-shot a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}
.store-shot img {
  display: block;
  width: 100%;
  height: auto;
}
.store-shot figcaption {
  display: grid;
  gap: 6px;
  padding: 18px 2px 0;
  line-height: 1.6;
}
.store-shot figcaption strong {
  font-size: 18px;
  color: var(--text-primary);
}
.store-shot figcaption span {
  color: var(--text-secondary);
  font-size: 14px;
}
.store-section .gallery-provenance {
  margin-top: 28px;
  max-width: 760px;
}
.store-section .gallery-provenance a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 700px) {
  .store-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .store-heading,
  .store-gallery {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .store-intro {
    font-size: 16px;
  }
  .store-offer {
    padding: 22px;
  }
  .store-shot-featured {
    grid-column: auto;
  }
}
