/* ============================================================
   VONA ONCOLOGY — Design System
   Display: Fraunces (warm, optical serif — carries "hope")
   Body/UI: IBM Plex Sans (clinical, precise)
   Signature element: the "aurora line" — a thin three-stop
   gradient rule (teal > indigo > rose) used ONLY as a divider
   under section labels. Everything else stays quiet and clinical.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=IBM+Plex+Sans:wght@400;500;600&family=Jost:wght@400;500;600;700&display=swap');

:root{
  --ink:        #0F2438;   /* deep navy — primary text on light */
  --paper:      #F7F4EC;   /* warm paper background */
  --paper-dim:  #EFEAE0;
  --teal:       #1B4B4F;   /* primary brand */
  --teal-deep:  #0E2F32;
  --slate:      #3B4148;   /* body text */
  --line:       #D9D2C2;   /* hairline rule on paper */
  --line-dark:  rgba(247,244,236,0.18);
  --aurora-1:   #2E9E8C;
  --aurora-2:   #6E7FD1;
  --aurora-3:   #D88A9A;

  --display: 'Inter', sans-serif;
  --body: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --logotype: 'Jost', 'Century Gothic', 'Futura', sans-serif; /* matches the geometric sans in the Vona logo */
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin:0;
  background: var(--paper);
  color: var(--slate);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }

.wrap{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Aurora line — the signature element ---------- */
.aurora-line{
  height: 3px;
  width: 64px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--aurora-1), var(--aurora-2), var(--aurora-3));
  margin: 14px 0 0;
}
.aurora-line.center{ margin-left:auto; margin-right:auto; }
.aurora-line.wide{ width: 120px; }

/* ---------- Header / Nav ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247,244,236,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap{
  display:flex;
  align-items:center;
  justify-content: space-between;
  height: 84px;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  font-family: var(--logotype);
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #36365B;
}
  width: 48px; height: 48px;
  border-radius: 50%;
  flex-shrink:0;
  object-fit: contain;
}
nav.main-nav{ display:flex; gap: 64px; padding-right: 8px; }
nav.main-nav a{
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal-deep);
  position: relative;
  padding: 6px 0;
}
nav.main-nav a.active{ color: var(--ink); }
nav.main-nav a.active::after{
  content:"";
  position:absolute; left:0; right:0; bottom:0;
  height:2px;
  background: linear-gradient(90deg, var(--aurora-1), var(--aurora-2));
}
.nav-toggle{ display:none; }

/* ---------- Eyebrow / section labels ---------- */
.eyebrow{
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}

/* ---------- Hero ---------- */
.hero{
  background: var(--ink);
  color: var(--paper);
  padding: 96px 0 88px;
  position: relative;
  overflow: hidden;
}
.hero::before{
  content:"";
  position:absolute;
  top:-30%; right:-10%;
  width: 560px; height: 560px;
  background: radial-gradient(circle at 50% 50%, rgba(110,127,209,0.22), transparent 70%);
  filter: blur(10px);
  pointer-events:none;
}
.hero::after{
  content:"";
  position:absolute;
  bottom:-40%; left:-10%;
  width: 480px; height: 480px;
  background: radial-gradient(circle at 50% 50%, rgba(216,138,154,0.16), transparent 70%);
  pointer-events:none;
}
.hero .wrap{ position:relative; z-index:1; }
.hero-brand{
  display:flex;
  align-items:center;
  gap: 28px;
  margin-bottom: 34px;
}
.hero-logo{
  width: 132px; height: 132px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink:0;
}
.hero-wordmark{
  font-family: var(--logotype);
  display:flex;
  flex-direction:column;
  line-height: 1;
}
.hero-wordmark .vona{
  font-weight: 600;
  font-size: clamp(42px, 5.4vw, 64px);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  white-space: nowrap;
}
.hero-wordmark .oncology{
  margin-top: 10px;
  display:flex;
  justify-content: space-between;
  font-weight: 500;
  font-size: 19px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
}
.hero .eyebrow{ color: var(--aurora-1); }
.hero h1{
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  max-width: 880px;
  margin: 18px 0 0;
  color: #FBF9F4;
}
.hero h1 em{
  font-style: normal;
  font-weight: 300;
  background: linear-gradient(90deg, var(--aurora-1), var(--aurora-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lede{
  margin-top: 22px;
  max-width: 620px;
  font-size: 18px;
  color: rgba(247,244,236,0.78);
}
.hero .vona-gloss{
  margin-top: 36px;
  display:flex;
  gap: 14px;
  align-items: baseline;
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
  max-width: 620px;
}
.hero .vona-gloss .word{
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--aurora-1);
  flex-shrink:0;
}
.hero .vona-gloss .def{
  font-size: 14px;
  color: rgba(247,244,236,0.65);
  line-height:1.55;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 13px 26px;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor:pointer;
}
.btn-primary{
  background: var(--paper);
  color: var(--ink);
}
.btn-primary:hover{ background:#fff; }
.btn-outline{
  border-color: rgba(247,244,236,0.35);
  color: var(--paper);
}
.btn-outline:hover{ border-color: var(--paper); }
.btn-outline.on-light{
  border-color: var(--teal);
  color: var(--teal);
}
.btn-outline.on-light:hover{ background: var(--teal); color: var(--paper); }
.hero-ctas{ margin-top: 36px; display:flex; gap:14px; flex-wrap:wrap; }

/* ---------- Section scaffolding ---------- */
section{ padding: 88px 0; }
section.tight{ padding: 64px 0; }
.section-head{ max-width: 720px; margin-bottom: 48px; }
.section-head h2{
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 36px);
  color: var(--ink);
  margin: 14px 0 0;
  letter-spacing: -0.01em;
}
.section-head p{ margin-top: 14px; color: var(--slate); font-size: 16px; max-width: 620px; }

.band-dark{ background: var(--teal-deep); color: var(--paper); }
.band-dark .eyebrow{ color: var(--aurora-1); }
.band-dark .section-head h2{ color: #FBF9F4; }
.band-dark .section-head p{ color: rgba(247,244,236,0.75); }
.band-line{ border-top: 1px solid var(--line); }

/* ---------- Two/three column content grids ---------- */
.grid{ display:grid; gap: 40px; }
.grid.cols-2{ grid-template-columns: repeat(2, 1fr); }
.grid.cols-3{ grid-template-columns: repeat(3, 1fr); }

.card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px;
}
.band-dark .card{
  background: rgba(255,255,255,0.04);
  border-color: var(--line-dark);
}
.card h3{
  font-family: var(--display);
  font-weight: 500;
  font-size: 20px;
  color: var(--ink);
  margin: 0 0 12px;
}
.band-dark .card h3{ color: #FBF9F4; }
.card p{ margin:0; font-size: 15.5px; color: var(--slate); }
.band-dark .card p{ color: rgba(247,244,236,0.75); }
.card .tag{
  display:inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--aurora-2);
  margin-bottom: 14px;
}

/* ---------- Stat strip ---------- */
.stat-strip{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.stat-strip .stat{
  padding: 36px 32px;
  border-right: 1px solid var(--line-dark);
}
.stat-strip .stat:last-child{ border-right:none; }
.stat .num{
  font-family: var(--display);
  font-size: 38px;
  font-weight: 500;
  color: var(--aurora-1);
}
.stat .label{
  margin-top: 6px;
  font-size: 13.5px;
  color: rgba(247,244,236,0.7);
  letter-spacing: 0.02em;
}

/* ---------- Pipeline / indications list ---------- */
.indications{ display:grid; grid-template-columns: repeat(3,1fr); gap: 0; border: 1px solid var(--line); border-radius:6px; overflow:hidden; }
.indications .ind{
  padding: 30px 28px;
  border-right: 1px solid var(--line);
  background:#fff;
}
.indications .ind:last-child{ border-right:none; }
.indications .ind .eyebrow{ font-size:11.5px; }
.indications .ind h4{
  font-family: var(--display);
  font-weight:500;
  font-size: 19px;
  color: var(--ink);
  margin: 8px 0 0;
}

/* ---------- Awards list ---------- */
.awards-list{ display:flex; flex-direction:column; }
.award-row{
  display:grid;
  grid-template-columns: 200px 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.award-row:first-child{ border-top:none; }
.org-badge{ display:flex; align-items:center; gap:12px; }
.badge-mark{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  font-family: var(--body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-align:center;
}
.badge-mark.nih{ background: #20558A; }
.badge-mark.oedit{ background: #B6862C; }
.org-badge .org{ font-size: 15px; line-height:1.3; }
.award-row .org{
  font-family: var(--display);
  font-weight: 500;
  font-size: 19px;
  color: var(--ink);
}
.band-dark .award-row{ border-top: 1px solid var(--line-dark); }
.band-dark .award-row .org{ color: #FBF9F4; }
.band-dark .award-row .desc p{ color: rgba(247,244,236,0.82); }
.band-dark .award-row .desc .grant-title{ color: var(--aurora-1); }
.band-dark .award-row .link a{ color: #FBF9F4; border-bottom-color: var(--aurora-1); }
.award-row .desc p{ margin:0; color: var(--slate); font-size:15px; }
.award-row .desc .grant-title{
  display:block;
  font-style: italic;
  color: var(--teal);
  margin-bottom: 6px;
  font-size: 14.5px;
}
.award-row .link a{
  font-size: 13px;
  font-weight:600;
  color: var(--teal);
  border-bottom: 1px solid var(--aurora-1);
  white-space: nowrap;
}

/* ---------- Team grid (About page) ---------- */
.team-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 44px 32px; }
.person{ display:flex; flex-direction:column; }
.person .photo{
  width:100%;
  aspect-ratio: 3/4;
  background: var(--paper-dim);
  border-radius: 6px;
  overflow:hidden;
  margin-bottom: 18px;
  display:block;
  position:relative;
}
.person .photo img{
  position:absolute;
  top:0; left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position: top center;
  display:block;
}
.person h3{
  font-family: var(--display);
  font-weight:500;
  font-size: 19px;
  color: var(--ink);
  margin:0;
}
.person .role{
  font-size: 13px;
  font-weight:600;
  color: var(--teal);
  letter-spacing: 0.02em;
  margin-top: 4px;
}
.person .affil{
  font-size: 13px;
  color: var(--slate);
  opacity: 0.8;
  margin-top: 2px;
  font-style: italic;
}
.person .bio{
  margin-top: 12px;
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.6;
}
.person.lead{ grid-column: span 3; display:grid; grid-template-columns: 280px 1fr; gap: 36px; align-items:start; }
.person.lead .photo{ aspect-ratio: 3/4; margin-bottom:0; }
.person.lead .bio{ font-size: 15.5px; margin-top: 16px; }

/* ---------- Contact page ---------- */
.contact-grid{ display:grid; grid-template-columns: 1fr 1.1fr; gap: 64px; }
.contact-info dl{ margin: 28px 0 0; }
.contact-info dt{
  font-size: 12.5px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color: var(--teal);
  font-weight:600;
  margin-top: 26px;
}
.contact-info dd{ margin: 6px 0 0; font-size: 16px; color: var(--ink); }
.contact-info dd a{ border-bottom: 1px solid var(--aurora-1); }

.form-field{ margin-bottom: 20px; }
.form-field label{
  display:block;
  font-size: 13px;
  font-weight:600;
  letter-spacing:0.03em;
  color: var(--ink);
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea{
  width:100%;
  font-family: var(--body);
  font-size: 15px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background:#fff;
  color: var(--ink);
}
.form-field input:focus,
.form-field textarea:focus{
  outline: 2px solid var(--aurora-2);
  outline-offset: 1px;
  border-color: transparent;
}
.form-note{ font-size: 12.5px; color: var(--slate); opacity:0.7; margin-top: 4px; }
.form-actions{ margin-top: 28px; display:flex; gap:14px; }
.btn-submit{
  background: var(--teal);
  color: #fff;
  border:none;
  font-family: var(--body);
}
.btn-submit:hover{ background: var(--teal-deep); }

/* ---------- Footer ---------- */
footer{
  background: var(--ink);
  color: rgba(247,244,236,0.6);
  padding: 48px 0 36px;
}
footer .wrap{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  flex-wrap:wrap;
  gap: 24px;
}
footer .foot-brand{
  font-family: var(--logotype);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #FFFFFF;
}
footer .foot-links{ display:flex; gap: 28px; }
footer .foot-links a{ font-size: 13.5px; }
footer .foot-links a:hover{ color: var(--paper); }
footer .foot-meta{
  width:100%;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  font-size: 12.5px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:8px;
}

/* ---------- Skip link / a11y ---------- */
.skip-link{
  position:absolute; left:-9999px; top:auto;
  background:var(--ink); color:#fff; padding:10px 16px; z-index:100;
}
.skip-link:focus{ left: 16px; top: 16px; }
:focus-visible{ outline: 2px solid var(--aurora-2); outline-offset: 2px; }

/* ---------- Responsive ---------- */
@media (max-width: 880px){
  .grid.cols-2, .grid.cols-3{ grid-template-columns: 1fr; }
  .indications{ grid-template-columns: 1fr; }
  .indications .ind{ border-right:none; border-bottom:1px solid var(--line); }
  .indications .ind:last-child{ border-bottom:none; }
  .stat-strip{ grid-template-columns: 1fr; }
  .stat-strip .stat{ border-right:none; border-bottom: 1px solid var(--line-dark); }
  .stat-strip .stat:last-child{ border-bottom:none; }
  .team-grid{ grid-template-columns: repeat(2,1fr); }
  .person.lead{ grid-column: span 2; grid-template-columns: 1fr; }
  .person.lead .photo{ max-width: 280px; }
  .contact-grid{ grid-template-columns: 1fr; gap: 48px; }
  .award-row{ grid-template-columns: 1fr; gap: 8px; }
}
@media (max-width: 640px){
  nav.main-nav{ display:none; }
  .team-grid{ grid-template-columns: 1fr; }
  .person.lead{ grid-column: span 1; }
  .hero{ padding: 64px 0 56px; }
  section{ padding: 56px 0; }
}

/* ============================================================
   ANIMATIONS & INTERACTIVE ENHANCEMENTS
   ============================================================ */

/* ---------- Scroll-reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ---------- Stat counter ---------- */
.stat .num {
  display: inline-block;
  transition: transform 0.2s ease;
}

/* ---------- Team card hover ---------- */
.person .photo {
  position: relative;
  overflow: hidden;
}
.person .photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,47,50,0.88) 0%, rgba(14,47,50,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 16px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.person .photo:hover .photo-overlay {
  opacity: 1;
}
.person .photo-overlay .ov-name {
  font-family: var(--logotype);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  line-height: 1.2;
}
.person .photo-overlay .ov-role {
  font-size: 12px;
  color: var(--aurora-1);
  margin-top: 4px;
  font-weight: 500;
}
.person .photo img {
  transition: transform 0.45s ease;
}
.person .photo:hover img {
  transform: scale(1.04);
}

/* ---------- Pipeline ---------- */
.pipeline-wrap {
  margin-top: 48px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}
.pipeline {
  display: flex;
  align-items: stretch;
  min-width: 680px;
  position: relative;
}
.pipeline::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 0; right: 0;
  height: 3px;
  background: var(--line-dark);
  z-index: 0;
}
.pipeline-stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.pipeline-stage .dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 3px solid var(--line-dark);
  background: var(--teal-deep);
  margin-bottom: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease;
  margin-top: 29px;
}
.pipeline-stage.active .dot {
  width: 24px; height: 24px;
  margin-top: 26px;
  border-color: var(--aurora-1);
  background: var(--aurora-1);
  box-shadow: 0 0 0 5px rgba(46,158,140,0.25);
}
.pipeline-stage.complete .dot {
  border-color: var(--aurora-2);
  background: var(--aurora-2);
}
.pipeline-stage .stage-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(247,244,236,0.55);
  text-align: center;
  padding: 0 4px;
  line-height: 1.4;
}
.pipeline-stage.active .stage-label {
  color: var(--aurora-1);
}
.pipeline-stage.complete .stage-label {
  color: rgba(247,244,236,0.8);
}
.pipeline-stage .stage-sub {
  font-size: 10.5px;
  color: rgba(247,244,236,0.38);
  text-align: center;
  margin-top: 4px;
  padding: 0 4px;
}
.pipeline-stage.active .stage-sub {
  color: rgba(247,244,236,0.65);
}

/* ---------- Nav active-scroll highlight ---------- */
nav.main-nav a.scroll-active {
  color: var(--ink);
}
nav.main-nav a.scroll-active::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--aurora-1), var(--aurora-2));
}

/* ============================================================
   HORIZONTAL TEAM LAYOUT (About page)
   ============================================================ */

.team-list {
  display: flex;
  flex-direction: column;
  max-width: 920px;
}

/* Jim Lambert — lead card */
.person-lead {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 44px;
  align-items: start;
  padding: 0 0 44px;
  border-bottom: 2px solid var(--line);
  margin-bottom: 4px;
}
.person-lead .photo {
  width: 240px;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper-dim);
  flex-shrink: 0;
  position: relative;
}
.person-lead .photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.45s ease;
}
.person-lead .photo:hover img { transform: scale(1.04); }
.person-lead h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 5px;
}
.person-lead .role {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.person-lead .affil {
  font-size: 13px;
  color: var(--slate);
  opacity: 0.75;
  font-style: italic;
  margin-bottom: 16px;
}
.person-lead .bio {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.65;
}

/* Regular horizontal rows */
.person-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 28px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.person-row:last-child { border-bottom: none; }
.person-row .photo {
  width: 130px;
  height: 156px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--paper-dim);
  flex-shrink: 0;
  position: relative;
}
.person-row .photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.45s ease;
}
.person-row .photo:hover img { transform: scale(1.06); }
.person-row h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 3px;
}
.person-row .role {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.person-row .bio {
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.62;
}
.person-body { min-width: 0; }

/* Hover overlays for horizontal photos */
.person-lead .photo .photo-overlay,
.person-row .photo .photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,47,50,0.82) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px 10px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.person-lead .photo:hover .photo-overlay,
.person-row .photo:hover .photo-overlay { opacity: 1; }
.photo-overlay .ov-name {
  font-family: var(--logotype);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1.2;
}
.photo-overlay .ov-role {
  font-size: 10px;
  color: var(--aurora-1);
  margin-top: 3px;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 640px) {
  .person-lead { grid-template-columns: 1fr; gap: 20px; }
  .person-lead .photo { width: 100%; height: 240px; }
  .person-row { grid-template-columns: 100px 1fr; gap: 18px; }
  .person-row .photo { width: 100px; height: 120px; }
}
