/* ================================================================
   App card — clean light Patient App card + Google Play badge
================================================================ */
.app-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
}

.app-card > * {
  position: relative;
  z-index: 1;
}

.app-title {
  font-size: 18px;
  font-weight: 650;
  margin: 0 0 6px;
}

.app-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0 0 18px;
  max-width: 42ch;
}

.play-link {
  display: inline-block;
  border-radius: 12px;
  transition: transform 120ms ease, filter 120ms ease;
}

.play-link:hover {
  transform: translateY(-1px);
  filter: brightness(0.96);
}

.app-download {
  margin-top: 14px;
}

.play-badge {
  width: 138px;
  height: auto;
  display: block;
  border-radius: 11px;
}