.member-section {
  margin-bottom: 48px;
}
.member-section-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--teal);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.member-section-title::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: var(--teal);
}

/* Faculty card */
.faculty-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 560px;
  box-shadow: 0 2px 16px rgba(13, 27, 42, 0.05);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}
.faculty-card:hover {
  background: var(--cream);
}
.faculty-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--teal-muted);
  border: 2px solid rgba(30, 184, 160, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--teal);
}
.faculty-name {
  /* font-family: var(--font-serif); */
  font-size: 20px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.faculty-role {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 300;
}

/* Student list */
.student-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  line-height: 1.8;
}
.student-name {
  font-size: 18px;
  color: var(--text-dark);
  font-weight: 400;
}

/* Photo */
.group-photo-block {
  margin-top: 56px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(13, 27, 42, 0.06);
}
.group-photo-block img {
  width: 100%;
  display: block;
}
.group-photo-caption {
  padding: 16px 24px;
  font-size: 13px;
  color: var(--text-light);
  font-weight: 300;
  border-top: 1px solid var(--border);
}
.as-of {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 300;
  margin-top: 8px;
}
