/* Shared bio modal + trigger — FloodDash/AirDash parity */
.bio-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(25, 23, 18, 0.55);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; overflow: auto;
}
.bio-overlay[hidden] { display: none !important; }
.bio-card {
  position: relative;
  width: min(720px, 100%);
  max-height: min(90vh, 900px);
  overflow: auto;
  background: #faf9f7;
  color: #191712;
  border: 2px solid #191712;
  box-shadow: 0 1px 0 rgba(75,60,30,.03), 0 24px 48px -20px rgba(75,60,30,.35);
  padding: 28px 28px 22px;
}
.bio-close {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; border: 1px solid #d2cfc5; background: #fff;
  cursor: pointer; font-size: 16px;
}
.bio-close:hover { background: #b3261e; color: #fff; border-color: #b3261e; }
.bio-owner { display: flex; gap: 18px; align-items: flex-start; padding-right: 40px; }
.bio-portrait {
  width: 96px; height: 96px; object-fit: cover; border-radius: 50%;
  border: 2px solid #191712; flex: none;
}
.bio-name { font-size: 22px; font-weight: 700; line-height: 1.15; }
.bio-name-en { font-size: 14px; color: #6f6c63; margin-top: 2px; }
.bio-role { margin-top: 10px; font-size: 13px; line-height: 1.45; font-weight: 600; }
.bio-role-en, .bio-blurb-en, .bio-intro-en, .bio-extra-en, .bio-disclaimer-en, .bio-fineprint-en {
  font-size: 12px; color: #6f6c63; margin-top: 4px; line-height: 1.45;
  padding-top: 4px; border-top: 1px dashed #e7e5dd;
}
.bio-blurb { margin-top: 10px; font-size: 13.5px; line-height: 1.5; color: #3a3730; }
.bio-body { margin-top: 22px; padding-top: 18px; border-top: 1px solid #e7e5dd; }
.bio-eyebrow {
  font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.16em;
  font-weight: 700; color: #a9a59a; margin-bottom: 10px;
}
.bio-intro { font-size: 14px; line-height: 1.55; }
.bio-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 16px;
}
.bio-block h4 { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
.bio-block ul { padding-left: 16px; font-size: 12.5px; line-height: 1.55; color: #3a3730; }
.bio-extra { margin-top: 14px; font-size: 13px; line-height: 1.5; }
.bio-extra a, .bio-extra-en a { color: #0039A6; }
.bio-partners {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-top: 18px; padding-top: 16px; border-top: 1px solid #e7e5dd;
}
.bio-partner { display: flex; gap: 10px; align-items: center; font-size: 12px; }
.bio-logo { height: 36px; width: auto; object-fit: contain; }
.bio-partner .muted { color: #6f6c63; font-size: 11px; }
.bio-disclaimer {
  margin-top: 16px; padding: 12px 14px; background: #fff; border: 1px solid #e7e5dd;
  font-size: 12px; line-height: 1.5; color: #6f6c63;
}
.bio-fineprint {
  margin-top: 14px; font-size: 11px; line-height: 1.5; color: #a9a59a;
}
@media (max-width: 640px) {
  .bio-owner { flex-direction: column; }
  .bio-cols, .bio-partners { grid-template-columns: 1fr; }
}
