/* ============================================================
   WHO WE SERVE
   ============================================================ */
.who-section { background: var(--white); }

.who-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.who-heading {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.who-sub {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.75;
}

.who-card {
  border-radius: 14px;
  padding: 2.2rem;
  margin-bottom: 14px;
}
.who-card:last-child { margin-bottom: 0; }
.who-card-for { background: var(--off-white); border: 1px solid var(--border); }
.who-card-not { background: #fff; border: 1px solid #fcdada; }

.who-card-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.who-card-label.green { color: var(--teal); }
.who-card-label.red   { color: #c0392b; }

.who-list { display: flex; flex-direction: column; gap: 11px; }
.who-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--slate);
  line-height: 1.5;
}
.who-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center top;
  border-radius: 14px;
  margin-top: 2rem;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

.who-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.dot-green { background: var(--teal); }
.dot-red   { background: #c0392b; }

