/* -------------------------------------------------------- */
/* 🔹 App Buttons                                           */
/* -------------------------------------------------------- */
/* Pill CTA and the App Store badge link                     */
/* Hover is an opacity fade, mirroring PressableOpacity      */


/* -------------------------------------------------------- */
/* 🔹 Pill Button                                           */
/* -------------------------------------------------------- */

.app-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-s);
  padding: var(--space-m) var(--space-xl);
  background-color: var(--color-secondary);
  color: var(--color-on-primary);
  border-radius: var(--radius-pill);
  font-size: var(--text-body-large);
  font-weight: var(--text-title-weight);
  white-space: nowrap;
  transition: opacity var(--animation-fast) var(--animation-curve);
}

.app-button:hover {
  opacity: var(--opacity-pressed);
  text-decoration: none;
}


/* -------------------------------------------------------- */
/* 🔹 App Store Badge                                       */
/* -------------------------------------------------------- */

.app-store-badge {
  display: inline-block;
  transition: opacity var(--animation-fast) var(--animation-curve);
}

.app-store-badge:hover {
  opacity: var(--opacity-pressed);
}

.app-store-badge img {
  height: 54px;
  width: auto;
}

@media (max-width: 767px) {
  .app-store-badge img {
    height: 48px;
  }
}
