/* =========================== */
/* Page Base */
body.bio-page {
  background: #FFFFFF;
  color: #000000;
  font-family: 'Inter', sans-serif;
}

/* =========================== */
/* Bio Content Wrapper */
#bio-content {
  max-width: 1300px;
  margin: 8rem auto 4rem auto;
  padding: 2rem;
}

/* Page Title */
#bio-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #000;
  font-weight: 700;
}

/* Paragraphs */
#bio-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 1.25rem;
}

/* ===================== */
/* Tabs */
.bio-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.bio-tabs .bio-tab {
  padding: 0.7rem 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  background: transparent;
  border: 1px solid #000;
  color: #000;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bio-tabs .bio-tab:hover {
  background: #000;
  color: #FFF;
}

.bio-tabs .bio-tab.active {
  background: #000;
  color: #FFF;
}

/* ===================== */
/* Panels */
.bio-panel { display: none; }
.bio-panel.active { display: block; }

/* ===================== */
/* Split Layout */
.bio-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
}

/* Vertical divider */
.bio-split::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #DDD;
}

/* Images */
.bio-media img {
  width: 100%;
  border-radius: 4px;
}

/* Text */
.bio-text {
  max-width: 700px;
}

/* ===================== */
/* Lists */
.bio-list {
  margin-top: 1rem;
  padding-left: 1.2rem;
}

.bio-list.two-col {
  columns: 2;
  column-gap: 3rem;
}

.bio-list li {
  margin-bottom: 0.5rem;
}

/* ===================== */
/* Dropdowns */
.bio-dropdown {
  margin-top: 1.25rem;
  padding: 0.9rem 1.1rem;
  background: #F7F7F7;
  border: 1px solid #E5E5E5;
  border-radius: 4px;   /* ← squared like tabs */
}


/* Summary row */
.bio-dropdown summary {
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  list-style: none;
}

/* Remove default marker */
.bio-dropdown summary::-webkit-details-marker {
  display: none;
}

/* Custom caret */
.bio-dropdown .arrow {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid #444; /* softer than black */
  transition: transform 0.2s ease;
}

.bio-dropdown[open] .arrow {
  transform: rotate(90deg);
}

/* Content */
.dropdown-content {
  margin-top: 0.75rem;
  padding-left: 1.2rem;
  color: #444;
}

/* Main bullet list */
.dropdown-content > ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 0.5rem 0;
}

.dropdown-content > ul > li {
  margin-bottom: 0.5rem;
  font-weight: 500;      /* slightly stronger */
  color: #222;           /* darker for primary points */
}

/* Sub-bullets (tighter indent) */
.dropdown-content ul ul {
  list-style: circle;
  margin-top: 0.2rem;
  margin-left: 0.7rem;   /* was 1.2rem — pulled inward */
  padding-left: 0.9rem;  /* smaller left padding */
}

.dropdown-content ul ul li {
  font-weight: 400;
  color: #555;
  margin-bottom: 0.3rem;
}

/* ===================== */
/* Responsive */
@media (max-width: 915px) {
  .bio-split {
    grid-template-columns: 1fr;
  }

  .bio-split::before { display: none; }

  .bio-media { display: none; }

  #bio-content h1 {
    font-size: 2.5rem;
  }
}
