/* ============================================
   BIO PAGE STYLES
   ============================================ */

/* --- Bio Hero --- */
.bio-hero {
  padding: 8rem 2rem 4rem;
  background: var(--cream);
}
.bio-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: center;
}

/* Portrait */
.bio-portrait {
  display: flex;
  justify-content: center;
}
.bio-hero .portrait-frame {
  position: relative;
  max-width: 420px;
  width: 100%;
}
.bio-hero .portrait-frame img {
  width: 100%;
  height: auto;
  display: block;
}
.bio-hero .portrait-frame .corner-accent {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 30px;
  height: 30px;
  border-top: 1.5px solid var(--gold);
  border-left: 1.5px solid var(--gold);
  z-index: 2;
  pointer-events: none;
}
.bio-hero .portrait-frame .corner-bottom-right {
  top: auto;
  left: auto;
  bottom: -1px;
  right: -1px;
  border-top: none;
  border-left: none;
  border-bottom: 1.5px solid var(--gold);
  border-right: 1.5px solid var(--gold);
}

/* Hero text */
.bio-hero-text .section-heading {
  font-size: 2.8rem;
}
.bio-tagline {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--charcoal);
  opacity: 0.6;
  line-height: 1.7;
}

/* --- Bio Body --- */
.bio-narrow {
  max-width: 780px;
}
.bio-prose p {
  font-family: var(--font-body);
  font-size: 1.2rem;
  line-height: 2;
  color: var(--charcoal);
  opacity: 0.8;
  margin-bottom: 1.75rem;
}
.bio-lead {
  font-size: 1.3rem !important;
  opacity: 1 !important;
}
.bio-prose em {
  font-style: italic;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .bio-hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .bio-hero .portrait-frame {
    max-width: 300px;
    margin: 0 auto;
  }
  .bio-hero-text .section-heading {
    font-size: 2.2rem;
  }
  .bio-hero-text .gold-divider {
    margin-left: auto;
    margin-right: auto;
  }
  .bio-narrow {
    max-width: 100%;
  }
}
