/* ============================================
   LEADERSHIP BIO PAGE STYLES — Apple-style hero layout
   ============================================ */

.bio-hero {
  padding: 170px 0 0;
}

.bio-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  padding-bottom: 0;
  border-bottom: 1px solid var(--border-strong);
}

.bio-hero-text {
  padding-bottom: 48px;
}

.bio-role {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.bio-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 7vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 16px;
  overflow-wrap: normal;
  word-break: normal;
}

.bio-title {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 19px;
  line-height: 1.4;
  color: var(--text-secondary);
}

.bio-hero-image-container {
  position: relative;
  width: 100%;
  max-height: 460px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.bio-hero-image-container img {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}

@media (max-width: 800px) {
  .bio-hero-inner { grid-template-columns: 1fr; gap: 0; }
  .bio-hero-text { padding-bottom: 32px; }
  .bio-hero-image-container { max-height: 360px; }
  .bio-hero-image-container img { max-height: 360px; }
}

/* Two-column body, Apple-style */
.bio-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 0 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.bio-col p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.bio-col p:last-child { margin-bottom: 0; }

@media (max-width: 800px) {
  .bio-body { grid-template-columns: 1fr; gap: 8px; }
}

.bio-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.2s;
}
.bio-back:hover { color: var(--white); }
