.app-download-cta {
  padding: 72px 24px;
  background: #000;
  color: #fff;
}

.app-download-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.app-download-cta__copy {
  max-width: 620px;
}

.app-download-cta__eyebrow {
  margin: 0 0 12px;
  color: #ffb14f;
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.app-download-cta h2 {
  margin: 0;
  scroll-margin-top: 120px;
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
}

.app-download-cta__description {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .78);
  font-family: Outfit, sans-serif;
  font-size: 18px;
  line-height: 1.55;
}

.app-download-cta__stores {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 14px;
}

.app-download-cta__store {
  display: block;
  border-radius: 10px;
  transition: transform .18s ease, filter .18s ease;
}

.app-download-cta__store:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 14px 20px rgba(0, 0, 0, .35));
}

.app-download-cta__store:focus-visible {
  outline: 3px solid #ffb14f;
  outline-offset: 5px;
}

.app-download-cta__store img {
  display: block;
  width: 190px;
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 991px) {
  .app-download-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 479px) {
  .app-download-cta {
    padding: 52px 20px;
  }

  .app-download-cta__inner {
    gap: 30px;
  }

  .app-download-cta__stores {
    width: 100%;
    gap: 10px;
  }

  .app-download-cta__store {
    flex: 1 1 0;
    min-width: 0;
  }

  .app-download-cta__store img {
    width: 100%;
  }
}
