/* Board & Team — modern person cards: fixed square photo with a light
   glass-gradient border; text flows around it (no empty side column).
   Loads alongside governance.css (subpage-doc chrome + .section/.framing). */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 20px 0 8px;
}

.team-card {
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.team-card::after { content: ""; display: block; clear: both; }  /* contain the float */
.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--sky-deep);
  box-shadow: 0 16px 40px rgba(16, 22, 44, 0.10);
}

/* Fixed sharp square photo, floated so role/name sit beside it and the bio wraps under */
.team-img {
  float: left;
  width: 116px; height: 116px;
  margin: 4px 22px 10px 0;
  border-radius: 0;                    /* sharp square */
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(16, 22, 44, 0.12);
}
.team-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  display: block;
}
.team-img.is-placeholder {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, var(--navy) 0%, #1b2546 100%);
}
.team-img.is-placeholder span {
  font-family: 'Noto Serif Display', Georgia, serif; font-size: 1.9rem;
  color: var(--sky); letter-spacing: 0.04em;
}

.team-info .role {
  font-family: 'Inter', sans-serif; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy-link);
  margin-bottom: 6px; padding-top: 6px; font-weight: 500;
}
.team-info h4 {
  font-family: 'Noto Serif Display', Georgia, serif; font-size: 1.32rem; font-weight: 500;
  color: var(--navy); margin: 0 0 12px 0; letter-spacing: -0.005em; line-height: 1.15;
}
.team-info p { font-size: 0.9rem; color: var(--ink-soft); margin: 0; line-height: 1.62; }

@media (max-width: 980px) { .team-grid { grid-template-columns: 1fr; } }
@media (max-width: 420px) {
  .team-img { float: none; margin: 0 0 16px 0; }
}
