/* ==== ABO Board of Directors – EABA-style layout (updated) ==== */

/* Overall board layout: left people, right bios */
.abo-board-layout {
  display: flex;
  flex-wrap: nowrap;
  gap: 2em;
  align-items: flex-start;
}

/* Left side: people/roles */
.abo-board-people {
  flex: 2;
}

/* Right side: biographies column */
.abo-board-bios {
  flex: 1;
  font-size: 0.9rem;
  border-left: 1px solid #e5e5e5;
  padding-left: 1.5em;
  margin-top: 0.6em;
}

.abo-board-bios h3 {
  margin-top: 0;
  font-size: 1.1rem;
}

.abo-bio {
  margin-bottom: 1.1em;
}

.abo-bio h4 {
  margin: 0 0 0.25em;
  font-size: 0.95rem; /* smallest header size for bio names */
  font-weight: 600;
}

.abo-bio p {
  margin: 0;
  font-size: 0.9rem;
}

/* Role headings (President, Vice Presidents, etc.) */
.abo-role-block {
  margin-bottom: 1.5em;
}

.abo-role-title {
  margin: 0 0 0.6em;
  font-size: 1.1rem;
  font-weight: 700;
  color: #333333;
  border-bottom: 1px solid #e3e3e3;
  padding-bottom: 0.35em;
}

/* Name + org closer to the circle photo */
.abo-person-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 260px;
}

/* Circle photo */
.abo-person-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5f8f5, #e4efe6);
  border: 1px solid #d5e0d6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9BA79B;
  text-align: center;
  margin-bottom: 0.3em; /* smaller gap so text is closer */
  overflow: hidden;
}

/* Real images fill the circle if you use them */
.abo-person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* Name + organization font styling */
/* same font-family; “First Lastname” = smallest header, org ~4pt smaller */
/* Approximation: 1rem (~16px) vs 0.8rem (~13px) */
.abo-person-name {
  margin: 0.1em 0 0.05em;
  font-size: 1rem;       /* smallest header size */
  font-weight: 600;
  font-family: inherit;
}

.abo-person-org {
  margin: 0;
  font-size: 0.8rem;     /* ~4 “points” smaller visually */
  font-family: inherit;
  color: #6E7A6F;
}

/* Optional extra text under organization (if used) */
.abo-person-meta {
  margin: 0.15em 0 0;
  font-size: 0.8rem;
  color: #9BA79B;
}

/* For lists of people under a role (Vice Presidents, Steering Board) */
.abo-person-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
}

/* Responsive behavior: stack bios under people on small screens */
@media (max-width: 900px) {
  .abo-board-layout {
    flex-direction: column;
  }

  .abo-board-bios {
    border-left: none;
    border-top: 1px solid #e5e5e5;
    padding-left: 0;
    padding-top: 1em;
    margin-top: 1.2em;
  }
}

@media (max-width: 600px) {
  .abo-person-list {
    flex-direction: column;
  }
}
