.team .intro { padding: 20px 16px; }
.team .cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; padding: 20px 16px; }
.member { 
  position: relative;
  height: 400px;
  border-radius: 16px; 
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  cursor: pointer;
}
.member:hover { 
  transform: translateY(-8px); 
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.member .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}
.member:hover .card-bg {
  transform: scale(1.05);
}
.member .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,.4) 50%, rgba(0,0,0,.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.member .card-content {
  color: white;
  text-align: center;
}
.member h3 { 
  margin: 0 0 8px 0; 
  color: white; 
  font-size: 1.3rem; 
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,.5);
}
.member .role { 
  color: rgba(255,255,255,.9); 
  font-size: 1rem; 
  margin: 0 0 20px 0; 
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0,0,0,.5);
}
.member .links { 
  display: flex; 
  gap: 12px; 
  justify-content: center;
}
.member .links a { 
  color: white; 
  text-decoration: none; 
  font-size: 0.9rem; 
  padding: 8px 16px;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 25px;
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
}
.member .links a:hover { 
  background: rgba(255,255,255,.3);
  border-color: rgba(255,255,255,.5);
  transform: translateY(-2px);
} 