/* Hero */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 62ch;
  width: 100%;
}
.hero-text h1,
.hero-text h2,
.hero-text p {
  margin: 0;
}
.hero-text h2 {
  margin-top: 14px;
}

.hero-image {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Image */
.app-image {
  width: min(100%, 540px);
  height: auto;
  display: block;
  /* filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.2)); PNG already has shadow */
}

@media (min-width: 900px) and (max-width: 1700px) {
  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
  }

  .hero-image {
    justify-content: flex-end;
  }
}
@media (min-width: 1701px) {
  .hero {
    display: flex;
    flex-direction: column;
  }

  .hero-image {
    justify-content: center;
  }
}
.cta-wrap {
  padding: 11px; /* should be at least 1/4 of app-store-badge height */
}
.app-store-badge {
  display: inline-block;
  height: 44px;
  width: auto;
}

@media (max-width: 480px) {
  .app-store-badge {
    height: 40px;
  }
}