/* ============================================================
   CGT DESIGN SYSTEM v3.0 — INDEX / HOME PAGE (MOBILE)
   File: style_css/index/mobile.css
   ============================================================ */

/* TABLET (max 991px) */
@media (max-width: 991px) {
  .cgt-explore-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cgt-apps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE (max 576px) */
@media (max-width: 576px) {
  .cgt-explore {
    padding: 40px 0;
  }

  .cgt-follow {
    padding: 36px 0;
  }

  .cgt-apps {
    padding: 40px 0;
  }

  .cgt-explore .section-title,
  .cgt-follow .section-title,
  .cgt-apps .section-title {
    font-size: 1.25rem;
  }

  .cgt-init-card {
    padding: 24px 14px;
  }

  .cgt-init-card .ci-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .cgt-social-btn {
    padding: 11px 22px;
    font-size: .82rem;
    gap: 8px;
  }

  .cgt-social-btn i {
    width: 26px;
    height: 26px;
    font-size: .88rem;
  }

  /* App cards — vertical layout on mobile, 2 per row */
  .cgt-apps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0 12px;
  }

  .cgt-app-card {
    padding: 16px 10px;
    border-radius: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .cgt-app-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    object-fit: cover;
  }

  .cgt-app-meta {
    align-items: center;
  }

  .cgt-app-name {
    font-size: .84rem;
    line-height: 1.25;
    text-align: center;
  }

  .cgt-app-store {
    font-size: .7rem;
    justify-content: center;
  }
}
