/* ============================================================
   INTERLOCK — component: team section + discipline list
   (cell lines + hover come from .cellgrid primitive)
   ============================================================ */
.team-grid{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:start}
.team-left p{color:var(--text-dim);font-size:1.05rem;max-width:50ch}
.team-left p+p{margin-top:1.1em}
.team-left strong{color:var(--text);font-weight:500}
.disciplines{display:flex;flex-direction:column}
.disc{padding:24px 28px;display:flex;gap:20px;align-items:baseline}
.disc .d-num{font-family:var(--mono);font-size:12px;color:var(--green);white-space:nowrap}
.disc h4{font-family:var(--disp);font-weight:600;font-size:1.02rem;margin-bottom:4px}
.disc p{color:var(--text-dim);font-size:.9rem}

@media (max-width:900px){
  .team-grid{grid-template-columns:1fr;gap:48px}
}
