.team {
  background: var(--dark-bg);
  padding: 80px 80px;
}

.team h2 { 
  margin-bottom: 50px; 
  font-size: 48px; 
  color: #ffffff;
}

.team-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
  gap: 30px; 
}

.team-card {
  background: linear-gradient(rgba(95, 120, 180, 0.85), rgba(15, 23, 42, 0.9)), url("../../images/back.png") no-repeat center center / cover;
  border-radius: 15px;
  padding: 25px;
  transition: .3s;
  text-align: center;
}

.team-card:hover { 
  transform: translateY(-8px); 
}

.team-card img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

/* Komanda üzvlərinin vəzifə mətni ağ edildi */
.position { 
  color: #ffffff !important; 
  font-weight: 600; 
  margin: 10px 0; 
}