/* Board of Directors -------------------------------------------------- */
.board-shell {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

.board-hero {
  padding: clamp(8.5rem, 14vw, 12rem) 6vw clamp(3rem, 6vw, 5rem);
  background: #fff;
  padding-top: 145px;
}

.board-hero__eyebrow {
  display: inline-block;
  margin: 0 0 1.6rem;
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffd54a 0%, #73d4ee 100%);
  color: #111;
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.board-hero__title {
  margin: 0;
  color: var(--brand-blue);
  font-family: var(--font-display);
  font-size: 57px;
  line-height: 1.08;
  font-weight: 500;
}

.board-directory {
  padding: 0 6vw 60px;
  background: #fff;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.board-card {
  min-width: 0;
  padding: clamp(1.2rem, 2.5vw, 2rem);
  border: 1px solid rgba(37, 64, 143, 0.14);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(29, 67, 111, 0.07);
  text-align: center;
}

.board-card__visual {
  position: relative;
  min-height: 250px;
  margin-bottom: 1.1rem;
}

.board-card__photo {
  position: absolute;
  inset: 0 46px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1.5px dashed rgba(7, 84, 165, 0.45);
  border-radius: 46% 54% 43% 57% / 54% 48% 52% 46%;
  background: linear-gradient(135deg, #eef8df 0%, #e8f7f2 52%, #d9f2f8 100%);
  color: rgba(7, 84, 165, 0.7);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.board-card__photo::after {
  content: "";
  position: absolute;
  left: 0;
  right: 38%;
  bottom: 0;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #4fc3e7 0%, #82c94c 72%, #ffcb05 72%);
}

.board-card__photo--image {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.board-card__photo--image::after {
  display: none;
}

.board-card__photo--image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.board-card__badges {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  transform: translateY(-50%);
}

.board-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 1.5px solid #7bc843;
  border-radius: 50%;
  background: #eff9df;
  color: #111;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
}

.board-badge--chair {
  background: #7bc843;
}

.board-card__name {
  margin: 0 0 0.25rem;
  color: #111;
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
}

.board-card__role {
  margin: 0;
  color: #111;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.35;
}

.board-legend {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 2.3fr);
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: clamp(3.5rem, 7vw, 6rem);
  padding-top: 2rem;
  border-top: 1px solid #7bc843;
}

.board-legend__status {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.board-legend__status p,
.board-legend__committees li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0;
  color: #111;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.35;
}

.board-legend__committees {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 1050px) {
  .board-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .board-hero,
  .board-directory {
    padding-inline: 7vw;
  }

  .board-hero__title {
    font-size: 36px;
    line-height: 1.12;
  }

  .board-grid,
  .board-legend,
  .board-legend__committees {
    grid-template-columns: minmax(0, 1fr);
  }

  .board-card__visual {
    min-height: 230px;
  }
}
