/* =========================
   INDEX PAGE ONLY
   ========================= */

.hero-section {
  margin-bottom: 40px;
}

.hero-lead {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.4;
}

/* App Section */
.app-container {
  margin-top: 56px;
}

.app-item {
  margin-bottom: 72px;
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 16px;
}

.app-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.app-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.app-meta {
  font-size: 0.8rem;
  opacity: 0.6;
}

.app-badge img {
  height: 40px;
}

.badge-caption {
  font-size: 0.75rem;
  opacity: 0.6;
  margin-top: 6px;
}

/* Mobile adjustments */
@media (max-width: 700px) {

  .hero-lead {
    font-size: 1.2rem;
  }

  .app-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .app-badge {
    margin-top: 12px;
    text-align: left;
  }
}