.team {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  color: #141414;
  background: #ffffff;
}

.team-header {
  text-align: center;
  margin-bottom: 80px;
}

.team-kicker {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #b3b3b3;
  margin: 0 0 14px;
}

.team-header h2 {
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #141414;
  margin: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}

.member {
  display: block;
  text-decoration: none;
  color: inherit;
}

.portrait {
  border-bottom: 3px solid #141414;
  overflow: hidden;
  background: #ffffff;
  line-height: 0;
}

section.team .portrait img {
  width: 300px;
  height: 250px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
margin:0 auto;
}

.member:hover .portrait img {
  transform: scale(1.04);
}

.member-info {
  text-align: center;
  padding-top: 28px;
}

.member-info h3 {
  font-weight: 600;
  font-size: 1.7rem;
  line-height: 1.2;
  color: #141414;
  margin: 0;
}

.member-info .role {
  margin: 8px 0 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #b3b3b3;
}

.member-info .email {
  display: inline-block;
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px solid #e5e5e5;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  color: #b3b3b3;
  transition: color 0.25s ease;
}

.member:hover .email {
  color: #141414;
}

@media (max-width: 900px) {
  .team {
    padding: 70px 24px 90px;
  }
  .team-header {
    margin-bottom: 56px;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 64px;
    max-width: 420px;
    margin: 0 auto;
  }
}