.biography-panel {
  padding: 12px 14px;
  /* Stay inside the host box — long bios scroll internally instead of
     spilling over other components below. */
  height: 100%;
  overflow-y: auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.biography-panel::-webkit-scrollbar { width: 6px; }
.biography-panel::-webkit-scrollbar-thumb { background: #2f3236; border-radius: 3px; }
.bio-body { flex: 1; }
.bio-header {
  border-bottom: 1px solid rgba(212,210,202,0.18);
  padding-bottom: 6px;
  margin-bottom: 8px;
}
.bio-title {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1.2px;
  line-height: 1.15;
  text-shadow: 0 1px 0 rgba(0,0,0,0.6);
}
.bio-subtitle {
  font-size: 10.5px;
  color: var(--text-dim);
  font-style: italic;
  letter-spacing: 0.8px;
  margin-top: 2px;
}
.bio-body {
  font-family: var(--font-body);
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--text);
  white-space: pre-wrap;
  letter-spacing: 0.1px;
}
