#who {
  background: var(--white);
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.who-item {
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--cream-dark);
  transition: background 0.2s;
}

.who-item:hover {
  background: var(--cream);
}

.who-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--green-dark);
}

.who-item h5 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  letter-spacing: -0.015em;
}

.who-image-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: var(--cream);
}

/* 2×2 grid border helpers (replaces inline styles) */
.who-item-tr { border-left: none; }
.who-item-bl { border-top: none; }
.who-item-br { border-top: none; border-left: none; }

@media (max-width: 767px) {
  .who-item,
  .who-item-tr,
  .who-item-bl,
  .who-item-br {
    border-left: none;
    border-top: none;
    border-bottom: 1px solid var(--cream-dark);
  }

  .who-item:last-child {
    border-bottom: none;
  }
}
