.team-member-list {
  display: grid;
  gap: clamp(54px, 7vw, 108px);
}

.team-profile-shell {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 92px);
  align-items: start;
  padding: 0;
  border-top: 0;
  scroll-margin-top: calc(var(--header-height) + 36px);
}

.team-profile-shell + .team-profile-shell {
  padding-top: clamp(4px, 1.2vw, 18px);
}

.team-profile-aside {
  display: grid;
  gap: 18px;
  align-content: start;
}

.team-portrait-frame {
  margin: 0;
  display: grid;
  gap: 16px;
  max-width: 360px;
}

.team-portrait-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: rgba(37, 85, 88, 0.045);
}

.team-portrait {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}

.team-profile-role {
  color: var(--accent-strong);
  font-size: 16px;
  line-height: 1.35;
}

.team-profile-role strong {
  color: var(--ink);
}

.team-profile-name {
  font-size: clamp(36px, 3vw, 56px);
  line-height: 0.98;
}

.team-profile-main {
  gap: clamp(28px, 3.5vw, 52px);
  padding-top: clamp(2px, 0.5vw, 10px);
}

.team-profile-details {
  display: grid;
  gap: 0;
  max-width: 960px;
  border-top: 0;
}

.team-detail-section {
  display: grid;
  grid-template-columns: minmax(132px, 0.24fr) minmax(0, 1fr);
  gap: clamp(20px, 3.2vw, 48px);
  padding: 0;
}

.team-detail-section + .team-detail-section {
  margin-top: 24px;
  border-top: 0;
}

.team-detail-section .micro-label {
  margin-bottom: 0;
}

.team-detail-list,
.team-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
}

.team-detail-list {
  gap: 14px;
  color: var(--muted);
  font-size: var(--body-size);
  line-height: 1.65;
}

.team-detail-list li {
  position: relative;
  padding-left: 20px;
}

.team-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.team-contact-list {
  gap: 12px;
  color: var(--accent-strong);
}

.team-contact-list li {
  padding-top: 0;
}

.team-contact-list a:not(.social-icon-button) {
  width: fit-content;
  color: var(--accent-strong);
  font-weight: var(--font-weight-semibold);
}

.team-social-link {
  color: var(--accent-strong);
  border-color: rgba(37, 136, 141, 0.28);
}

.team-growth-note {
  display: grid;
  grid-template-columns: minmax(120px, 0.18fr) minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
  max-width: none;
  margin-top: clamp(4px, 1.2vw, 18px);
  padding: clamp(24px, 3.2vw, 38px) clamp(22px, 3vw, 42px);
  border-top: 0;
  background: rgba(37, 85, 88, 0.045);
}

.team-growth-note .micro-label {
  margin-bottom: 0;
}

.team-growth-note .cta-row {
  margin-top: 0;
}

@media (max-width: 1180px) {
  .team-profile-shell {
    grid-template-columns: 1fr;
  }

  .team-profile-aside {
    max-width: 420px;
  }

  .team-portrait-frame {
    max-width: 420px;
  }

  .team-detail-section {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .team-growth-note {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 720px) {
  .team-member-list {
    gap: 52px;
  }

  .team-portrait-frame {
    max-width: none;
  }

  .team-growth-note {
    padding: 26px 20px;
  }
}
