/* =========================================================
   Join - Why Section
   - Boxes LEFT (tight internal spacing)
   - Text RIGHT (vertically centered)
   ========================================================= */

.gc-join-why{
  background: var(--gc-white);
}

.gc-join-why__wrap{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-lg);
  align-items: stretch;
}

/* LEFT: boxes */
.gc-join-why__boxes{
  display: grid;
  gap: var(--space-xs);
}

.gc-join-why__card{
  padding: var(--space-md);
  border-left: 4px solid rgba(0,145,235,.25);
}

/* 🔑 FIX: tighten spacing INSIDE the card */
.gc-join-why__card h4{
  margin: 0 0 var(--space-2xs); /* maliit na gap */
}

.gc-join-why__card p{
  margin: 0; /* tanggal default bottom margin */
}

/* RIGHT: text */
.gc-join-why__content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
}

.gc-join-why__content h2{
  margin: 0 0 var(--space-xs);
}

.gc-join-why__content p{
  margin: 0 0 var(--space-sm);
}

.gc-join-why__content p:last-child{
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 980px){
  .gc-join-why__wrap{
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .gc-join-why__boxes{
    gap: var(--space-xs);
  }

  .gc-join-why__content{
    max-width: 100%;
    justify-content: flex-start;
  }
}
