/* ─────────────────────────────────────────────────────────────
   04-section-who.css
   Section 2 — Who This Is For
   2x2 card grid · collapses to 1-col on mobile (in responsive)
───────────────────────────────────────────────────────────── */

#who {
  background-color: #0A0A0A;
}

#who .inner {
  max-width: 880px;
  margin: 0 auto;
}

/* ── 2 × 2 card grid ── */
.who__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}

/* ── Individual card ── */
.who__card {
  background-color: #141414;
  border: 0.5px solid #2a2a2a;
  padding: 28px;
  border-radius: 0;
}

.who__card-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #C8F04A;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}

.who__card-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.6;
}

/* ── Footer line below grid ── */
.who__footer {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #555;
  font-style: italic;
}
