
/***************************************
Board of Directors and Ambassadors
***************************************/
.board-members-list .page-heading3::before {
  bottom: 8px;
}

.board-members-list p {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 16px;
}

.board-members > li {
  padding: 10px 16px;
  border-top: 1px solid #D7D7D7;
}

.board-members > li:last-child {
  border-bottom: 1px solid #D7D7D7;
}

.member-title {
  color: var(--gold);
  font-weight: 700;
}

.member-name {
  font-weight: 500;
}

.member-modal-contents {
  background: var(--beige);
}

.member-img {
  display: block;
  width: 200px;
  height: auto;
  margin: 0 auto;
}

.career-chart-wrapper {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 40px;
}

.career-chart-wrapper img {
  width: 1000px;
  height: auto;
}


@media (min-width:768px) {

  .board-members > li {
    padding: 14px 16px;
    display: flex;
    align-items: center;
  }

  .member-title {
    width: 200px;
    line-height: 1.6;
  }
  
  .member-name {
    font-weight: 500;
    line-height: 1.6;
  }

  .board-members li > *:not(.member-title) {
    flex: 1;
  }

  .career-chart-wrapper {
    padding-bottom: 40px;
  }

  .career-chart-wrapper img {
    width: 960px;
    height: auto;
  }

  .member-desc {
    display: flex;
    align-items: start;
    gap: 40px;
  }

  .member-desc-text {
    flex: 1;

  }
}