/* Team profiles: complete biographies remain readable without JavaScript. */
.team-page .team-intro {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: end;
  gap: 80px;
  padding: 70px 0 64px;
  border-bottom: 1px solid var(--line);
}
.team-page .team-intro .page-description { margin-top: 0; }
.team-page .team-intro .page-eyebrow { margin-bottom: 22px; }
.team-page .team-roster { padding-top: 56px; padding-bottom: 96px; }
.team-page .team-roster-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}
.team-page .team-roster-heading h2 { font-size: 25px; }
.team-page .team-roster-heading p {
  font: 10px/1.6 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .05em;
  color: #92a583;
}
.team-page .team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.team-page .team-profile {
  min-width: 0;
  padding: 32px;
  border: 1px solid #c9dbb426;
  border-radius: 7px;
  background: linear-gradient(145deg, #b9d39b08, #b9d39b02);
  scroll-margin-top: 120px;
}
.team-page .team-profile-heading {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 100px;
  margin-bottom: 26px;
}
.team-page .team-portrait {
  display: block;
  flex: 0 0 100px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  background: #202e22;
}
.team-page .team-initials {
  display: grid;
  place-items: center;
  border: 1px solid #b9d39b32;
  color: #c5d9b0;
  font-size: 29px;
  letter-spacing: -.04em;
}
.team-page #aditya-gupta .team-portrait { filter: grayscale(1); }
.team-page .team-profile h3 { font-size: clamp(23px, 2.15vw, 29px); }
.team-page .team-role {
  margin-top: 9px;
  font-size: 12px;
  line-height: 1.6;
  color: #bfd59e;
}
.team-page .team-bio { color: #b0bfa5; font-size: 14px; }
.team-page .team-bio + .team-bio { margin-top: 16px; }
.team-page .team-links { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 25px; }
.team-page .team-links a { font-size: 11px; }
@media (max-width: 900px) {
  .team-page .team-intro { gap: 40px; }
  .team-page .team-grid { gap: 18px; }
  .team-page .team-profile { padding: 25px; }
  .team-page .team-profile-heading { align-items: flex-start; flex-direction: column; gap: 20px; }
}
@media (max-width: 600px) {
  .team-page .team-intro { grid-template-columns: 1fr; gap: 25px; padding: 44px 0 40px; }
  .team-page .team-roster { padding-top: 38px; padding-bottom: 58px; }
  .team-page .team-roster-heading { align-items: flex-start; flex-direction: column; gap: 10px; margin-bottom: 24px; }
  .team-page .team-grid { grid-template-columns: 1fr; gap: 18px; }
  .team-page .team-profile { padding: 25px; }
  .team-page .team-profile-heading { flex-direction: row; align-items: center; gap: 17px; min-height: 76px; margin-bottom: 22px; }
  .team-page .team-portrait { width: 76px; height: 76px; flex-basis: 76px; }
  .team-page .team-initials { font-size: 25px; }
  .team-page .team-profile h3 { font-size: 23px; }
  .team-page .team-role { font-size: 11px; margin-top: 6px; }
  .team-page .team-bio { font-size: 13px; }
}
