.member-profile-container {
  container-type: inline-size;
}

.member-profile {
  display: flex;
  gap: 30px;
  margin: 30px 0;
  text-align: left;
}

.member-profile-image {
  position: relative;
  width: 180px;
  flex-shrink: 0;
}

.member-profile-image img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--rounded);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.member-profile-text {
  flex-grow: 1;
  min-width: 0;
}

.member-profile-name {
  margin-bottom: 4px;
  font-family: var(--heading);
  font-size: 1.35rem;
  font-weight: var(--semi-bold);
  line-height: var(--compact);
}

.member-profile-name a {
  color: inherit;
  text-decoration: none;
}
.member-profile-name a:hover {
  color: var(--primary);
}

.member-profile-dates {
  font-weight: var(--regular);
  font-size: 1rem;
  color: var(--gray);
}

.member-profile-role {
  margin-bottom: 4px;
  font-weight: var(--semi-bold);
}

.member-profile-affiliation {
  margin-bottom: 8px;
  color: var(--gray);
}

.member-profile-links {
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.member-profile-link-row {
  margin: 2px 0;
}

.member-profile-link-label {
  font-weight: var(--semi-bold);
}

.member-profile-link-empty {
  color: var(--gray);
}

.member-profile-bio {
  color: var(--text);
  line-height: var(--spacing);
}
.member-profile-bio p {
  margin: 12px 0 0 0;
  text-align: left;
}
.member-profile-bio p:first-child {
  margin-top: 0;
}

.member-profile[data-style=alumni] {
  gap: 20px;
  margin: 24px 0;
  padding-bottom: 24px;
  border-bottom: solid 1px var(--light-gray);
}
.member-profile[data-style=alumni]:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.member-profile[data-style=alumni] .member-profile-image {
  width: 80px;
}
.member-profile[data-style=alumni] .member-profile-image img {
  border-radius: var(--rounded);
}
.member-profile[data-style=alumni] .member-profile-name {
  font-size: 1.15rem;
}
.member-profile[data-style=alumni] .member-profile-role {
  font-weight: var(--regular);
}
.member-profile[data-style=alumni] .member-profile-affiliation {
  margin-bottom: 0;
}

@container (max-width: 800px) {
  .member-profile {
    flex-direction: column;
  }
  .member-profile-image {
    width: min(180px, 100%);
  }
  .member-profile[data-style=alumni] .member-profile-image {
    width: 80px;
  }
}

/*# sourceMappingURL=member-profile.css.map */