.teamAlgo {
  padding: 5rem 0 6rem;
  background: #f7f9fc;
  scroll-margin-top: calc(var(--site-header-h, 6.4rem) + var(--site-subnav-h, 4.8rem) + 1.2rem);
}

.teamAlgo__header {
  max-width: 72rem;
  margin-bottom: 3.2rem;
}

.teamAlgo__title {
  font-size: 2.8rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 0.8rem;
}

.teamAlgo__subtitle {
  font-size: 1.8rem;
  font-weight: 500;
  color: #024ad8;
  margin: 0 0 1.2rem;
}

.teamAlgo__intro {
  font-size: 1.6rem;
  line-height: 1.85;
  color: #4b5563;
  margin: 0;
}

.teamAlgo__list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.teamExpertCard {
  display: flex;
  align-items: flex-start;
  gap: 2.4rem;
  padding: 2.4rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1.6rem;
}

.teamExpertCard__avatarWrap {
  flex-shrink: 0;
}

.teamExpertCard__avatar {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 16px rgba(17, 24, 39, 0.08);
  background: #e5e7eb;
}

.teamExpertCard__body {
  flex: 1;
  min-width: 0;
}

.teamExpertCard__head {
  margin-bottom: 1.2rem;
}

.teamExpertCard__name {
  font-size: 2rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 0.4rem;
}

.teamExpertCard__role {
  font-size: 1.4rem;
  color: #024ad8;
  margin: 0 0 1rem;
}

.teamExpertCard__block {
  margin-bottom: 1.2rem;
}

.teamExpertCard__block:last-child {
  margin-bottom: 0;
}

.teamExpertCard__label {
  font-size: 1.3rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 0.4rem;
}

.teamExpertCard__text {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #4b5563;
  margin: 0;
}

.teamExpertCard__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.teamExpertCard__tag {
  font-size: 1.2rem;
  color: #024ad8;
  background: #eff6ff;
  border-radius: 999px;
  padding: 0.4rem 1rem;
}

@media (max-width: 640px) {
  .teamAlgo {
    padding: 4rem 0 5rem;
  }

  .teamAlgo__title {
    font-size: 2.4rem;
  }

  .teamExpertCard {
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.8rem;
    gap: 1.6rem;
  }

  .teamExpertCard__avatar {
    width: 9.6rem;
    height: 9.6rem;
  }

  .teamExpertCard__body {
    width: 100%;
  }

  .teamExpertCard__head {
    text-align: center;
  }

  .teamExpertCard__tags {
    justify-content: center;
  }
}
