/* ── Our Team ────────────────────────────────────────────────────────────────
   A roster: each member is a photo beside a flowing bio, so detailed bios read
   well and short ones look fine too. Stacks to photo-on-top on phones. */
.team-roster{
  max-width:900px;margin:0 auto;padding:0 24px;
  display:flex;flex-direction:column;gap:52px;
}
.team-member{
  display:grid;grid-template-columns:240px 1fr;gap:34px;align-items:start;
}
.team-photo-wrap{position:sticky;top:96px}
.team-photo{
  display:block;width:240px;height:240px;object-fit:cover;object-position:center 22%;
  border-radius:6px;background:#e2e2e2;box-shadow:0 10px 30px rgba(0,0,0,.15);
}
.team-initials{
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-display);font-size:96px;color:#fff;
  background:linear-gradient(150deg,var(--blood),#5a0d10);
}
.team-name{
  font-family:var(--font-display);font-size:34px;color:var(--ink);line-height:1.05;margin:0;
}
.team-role{
  font-family:var(--font-mono);font-size:12px;letter-spacing:.2em;text-transform:uppercase;
  color:var(--blood);margin:10px 0 0;
}
.team-bio{
  font-family:var(--font-body);font-size:17.5px;line-height:1.7;color:#333;
  margin:20px 0 0;white-space:pre-line;   /* preserve the paragraph breaks in the bio */
}
.team-links{margin:20px 0 0;display:flex;gap:18px;flex-wrap:wrap}
.team-links a{
  font-family:var(--font-mono);font-size:11px;letter-spacing:.14em;text-transform:uppercase;
  color:var(--blood);
}
.team-links a:hover{color:var(--ember)}

@media(max-width:640px){
  .team-roster{gap:44px;padding:0 20px}
  .team-member{grid-template-columns:1fr;gap:18px;justify-items:center;text-align:center}
  .team-photo-wrap{position:static}
  .team-photo{width:180px;height:180px}
  .team-links{justify-content:center}
  .team-name{font-size:28px}
}

/* ── Admin: team manager (dark back office) ─────────────────────────────────── */
.team-admin-list{display:flex;flex-direction:column;gap:10px;margin-top:8px}
.team-admin-row{
  display:flex;align-items:center;gap:14px;padding:12px 14px;
  border:1px solid var(--border);border-radius:8px;background:var(--surface);
}
.team-admin-thumb{
  width:52px;height:52px;border-radius:6px;object-fit:cover;flex-shrink:0;background:#333;
  display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-size:20px;
}
.team-admin-main{flex:1;min-width:0}
.team-admin-name{font-weight:700}
.team-admin-role{font-size:12px;color:var(--muted)}
.team-admin-actions{display:flex;gap:8px;flex-shrink:0}
