/* =========================
   Team page (Advisors) — matches mockup
   ========================= */

.teamPage{
  background:#fff;
  padding: 42px 0 70px;
}

.teamPage__inner{
  text-align:center;
}

.teamPage__eyebrow{
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.4;
  color: #64748b;
  font-weight: 500;
}

.teamPage__title{
  margin: 0 0 36px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0f172a;
}

.teamGrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 44px;
  row-gap: 34px;
  align-items:start;
}

.teamCard{
  display:flex;
  flex-direction:column;
  align-items:center;
}

.teamCard__avatar{
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: #f5cfcf;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  margin-bottom: 14px;
}

.teamCard__avatar img{
  width: 112px;
  height: 112px;
  border-radius: 999px;
  object-fit: cover;
  display:block;
}

.teamCard__name{
  margin: 0 0 4px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  color: #0f172a;
}

.teamCard__role{
  margin: 0 0 10px;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 600;
  color: #64748b;
}

.teamCard__text{
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: #334155;
  max-width: 36ch;
}

@media (max-width: 980px){
  .teamGrid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
  }
}

@media (max-width: 640px){
  .teamPage{
    padding: 34px 0 56px;
  }
  .teamGrid{
    grid-template-columns: 1fr;
    row-gap: 28px;
  }
  .teamCard__text{
    max-width: 46ch;
  }
}
