
/* Heading */
.page-title{
  text-align:center;
  font-family:"Great Vibes",serif;
  font-size:3.4rem;
  color:var(--amba);
  margin-bottom:10px;
}
.page-subtitle{
  text-align:center;
  color:#dffaf4;
  margin-bottom:38px;
  font-size:1.1rem;
}

/* Team Cards */
.team-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.team-card{
  background:var(--glass);
  border:1px solid var(--border);
  border-radius:18px;
  padding:22px;
  text-align:center;
  box-shadow:0 10px 26px rgba(0,0,0,0.35);
  transition:transform .3s ease;
}
.team-card:hover{
  transform:translateY(-6px);
}
.team-img{
  width:150px;
  height:150px;
  border-radius:50%;
  overflow:hidden;
  margin:0 auto;
}
.team-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.team-card h3{
  margin:14px 0 6px;
  color:var(--amba);
  font-size:1.4rem;
}
.role{
  font-size:0.95rem;
  color:#b8f8ef;
  margin-bottom:8px;
  font-weight:600;
}
.team-card p{
  color:#e0faf4;
  font-size:0.9rem;
  line-height:1.55;
}

/* Responsive */
@media(max-width:900px){
  .team-grid{grid-template-columns:1fr 1fr;}
}
@media(max-width:600px){
  .team-grid{grid-template-columns:1fr;}
}