.board-outer {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  padding-left: 1rem;
  padding-right: 1rem;
}
.board-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.board-title {
  margin-top: 2.5rem;   /* adjust as needed, e.g., 40px */
  margin-bottom: 1.2rem;
  font-size: 2rem;      /* optional: make it stand out */
  font-weight: 700;     /* optional: bold */
  color:#93168a
}
.team-member {
  display: grid;
  align-items: center;
  gap: 32px;
  grid-template-columns: 1fr 2fr; /* Always image 1/3, text 2/3 */
  padding: 32px 0 32px 0;
  border-bottom: 1px solid #eee;
}
.member-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.member-image img {
  width: 100%;           /* Image fills its column */
  max-width: 164px;      /* Max width for portrait, adjust as needed */
  object-fit: cover;
  border-radius: 8px;
  height: auto;
  display: block;
}
.member-title {
  color: #93168a;
  font-weight: bold;
  font-size: 1.25em;
  margin-bottom: 0.5em;
  display: block;
}
@media (max-width: 900px) {
  .board-outer {
    padding: 0 8px;
  }
  .team-member {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .team-member {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px 0 20px 0;
  }
  .member-image {
    margin-bottom: 12px;
  }
  .member-image, .member-info {
    order: unset; /* always keep image first, text second */
  }
}
.member-body-wrapper {
  position: relative;
}

.member-body {
  overflow: hidden;
  max-height: 4.5em; /* Show approx 3 lines */
  position: relative;
  transition: max-height 0.3s ease;
}

.member-body.expanded {
  max-height: 1000px; /* Large enough to show full content */
}

.toggle-bio {
  cursor: pointer;
  color: #881d97;
  font-weight: bold;
  display: inline-block;
  margin-top: 0.5em;
}