.team-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: 0.2s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.team-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.team-img--lead {
  width: 150px;
  height: 150px;
}

.team-card--lead {
  border-radius: 28px;
}

.team-badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  font-weight: 600;
  font-size: 0.85rem;
}

.team-role {
  font-weight: 600;
  color: #111;
  opacity: 0.75;
}

.team-desc {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.section-title h4 {
  font-weight: 700;
}

.info-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.2s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
}


.tech-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.8;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.tech-icon:hover {
  opacity: 1;
  transform: scale(1.15);
}

.tech-icons--4col {
  display: grid;
  grid-template-columns: repeat(4, 28px);
  gap: 8px;
  justify-content: center;
}
