/* ── Member detail pages ── */

.member-hero {
  position: relative;
  padding: 140px 0 70px;
  background: var(--navy-dark);
  overflow: hidden;
}
.member-hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/hero-bg.png') center/cover no-repeat;
  opacity: .25;
}
.member-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(6,15,26,.95) 0%, rgba(6,15,26,.7) 100%);
}
.member-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 3.5rem;
}
.member-photo-lg {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  flex-shrink: 0;
  box-shadow: 0 8px 40px rgba(201,168,76,.25);
}
.member-photo-lg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.member-hero-text .section-label { color: var(--gold); }
.member-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white);
  margin: .4rem 0 .2rem;
  letter-spacing: .05em;
}
.member-title-lg {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: .5rem;
}

.member-content {
  padding: 70px 0 100px;
  background: var(--white);
}
.member-bio { max-width: 760px; }
.bio-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.bio-sub {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin: 2rem 0 1rem;
}
.member-bio p {
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}
.bio-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bio-list li {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: .9rem;
  color: var(--gray-700);
  padding: .6rem 0 .6rem 1.2rem;
  border-bottom: 1px solid var(--gray-200);
  position: relative;
  line-height: 1.6;
}
.bio-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 1rem;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

@media (max-width: 600px) {
  .member-hero-inner { flex-direction: column; text-align: center; gap: 1.5rem; }
  .member-photo-lg { width: 140px; height: 140px; }
}
