#LEADERSHIP {
  --board-accent: #df2a58;
  --board-accent-dark: #b51f46;
  --board-text: #20242b;
  --board-muted: #68707d;
  --board-line: #e8eaf0;
  --board-panel: #f7f8fb;
  padding: 80px 0;
  background: #fff;
}

#LEADERSHIP .board-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 44px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--board-line);
  color: var(--board-text);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.035em;
}

#LEADERSHIP .board-heading img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

#LEADERSHIP .board-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px 28px;
}

#LEADERSHIP .board-card {
  min-width: 0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 35px rgba(27, 35, 53, .08);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

#LEADERSHIP .board-card:hover,
#LEADERSHIP .board-card:focus-within,
#LEADERSHIP .board-card.is-active {
  transform: translateY(-5px);
  box-shadow: 0 18px 46px rgba(27, 35, 53, .14);
}

#LEADERSHIP .board-photo-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #eef0f5;
  cursor: pointer;
  overflow: hidden;
}

#LEADERSHIP .board-photo-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(17, 22, 31, .72));
  opacity: 0;
  transition: opacity .25s ease;
}

#LEADERSHIP .board-photo-button:hover::after,
#LEADERSHIP .board-photo-button:focus-visible::after,
#LEADERSHIP .board-card.is-active .board-photo-button::after {
  opacity: 1;
}

#LEADERSHIP .board-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  transition: transform .45s ease;
}

#LEADERSHIP .board-card:hover .board-photo,
#LEADERSHIP .board-card:focus-within .board-photo {
  transform: scale(1.025);
}

#LEADERSHIP .board-photo-label {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
}

#LEADERSHIP .board-photo-label::after {
  content: "\2192";
  font-size: 1.15rem;
}

#LEADERSHIP .board-photo-button:hover .board-photo-label,
#LEADERSHIP .board-photo-button:focus-visible .board-photo-label,
#LEADERSHIP .board-card.is-active .board-photo-label {
  opacity: 1;
  transform: translateY(0);
}

#LEADERSHIP .board-card-body {
  padding: 22px 24px 24px;
}

#LEADERSHIP .board-name {
  margin: 0 0 7px;
  color: var(--board-text);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
}

#LEADERSHIP .board-designation {
  min-height: 2.8em;
  margin: 0;
  color: var(--board-muted);
  font-size: .94rem;
  line-height: 1.5;
}

#LEADERSHIP .board-read-button,
#LEADERSHIP .board-close-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  padding: 10px 16px;
  border: 1px solid rgba(223, 42, 88, .24);
  border-radius: 999px;
  color: var(--board-accent);
  background: rgba(223, 42, 88, .06);
  font: inherit;
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

#LEADERSHIP .board-read-button:hover,
#LEADERSHIP .board-read-button:focus-visible,
#LEADERSHIP .board-close-button:hover,
#LEADERSHIP .board-close-button:focus-visible {
  color: #fff;
  border-color: var(--board-accent);
  background: var(--board-accent);
}

#LEADERSHIP .board-read-button::after {
  content: "+";
  font-size: 1.05rem;
  line-height: 1;
}

#LEADERSHIP .board-card.is-active .board-read-button::after {
  content: "\2212";
}

#LEADERSHIP .board-mobile-bio {
  display: none;
}

#LEADERSHIP .board-bio-panel {
  grid-column: 1 / -1;
  position: relative;
  display: none;
  margin-top: -12px;
  padding: 34px 38px;
  border: 1px solid var(--board-line);
  border-radius: 18px;
  background: var(--board-panel);
  box-shadow: 0 15px 40px rgba(27, 35, 53, .07);
}

#LEADERSHIP .board-bio-panel.is-open {
  display: block;
  animation: boardBioIn .28s ease both;
}

#LEADERSHIP .board-bio-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--indicator-left, 0);
  width: calc((100% - 56px) / 3);
  height: 4px;
  border-radius: 0 0 4px 4px;
  background: var(--board-accent);
  transition: left .25s ease;
}

#LEADERSHIP .board-bio-title {
  margin: 0 0 18px;
  color: var(--board-text);
  font-size: 1.35rem;
  font-weight: 700;
}

#LEADERSHIP .board-bio-content {
  padding-right: 48px;
  color: #4d5562;
  font-size: .98rem;
  line-height: 1.8;
}

#LEADERSHIP .board-bio-content p:last-child {
  margin-bottom: 0;
}

#LEADERSHIP .board-close-button {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 38px;
  height: 38px;
  margin: 0;
  padding: 0;
  font-size: 1.25rem;
}

@keyframes boardBioIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 991.98px) {
  #LEADERSHIP .board-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #LEADERSHIP .board-bio-panel::before {
    width: calc((100% - 28px) / 2);
  }
}

@media (max-width: 767.98px) {
  #LEADERSHIP {
    padding: 52px 0;
  }

  #LEADERSHIP .board-heading {
    margin-bottom: 28px;
  }

  #LEADERSHIP .board-heading img {
    width: 48px;
    height: 48px;
  }

  #LEADERSHIP .board-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #LEADERSHIP .board-card:hover,
  #LEADERSHIP .board-card:focus-within,
  #LEADERSHIP .board-card.is-active {
    transform: none;
  }

  #LEADERSHIP .board-photo-button {
    cursor: default;
    pointer-events: none;
  }

  #LEADERSHIP .board-photo-button::after,
  #LEADERSHIP .board-photo-label {
    display: none;
  }

  #LEADERSHIP .board-designation {
    min-height: 0;
  }

  #LEADERSHIP .board-bio-panel {
    display: none !important;
  }

  #LEADERSHIP .board-mobile-bio {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows .32s ease, opacity .25s ease;
  }

  #LEADERSHIP .board-mobile-bio-inner {
    overflow: hidden;
    color: #555d69;
    font-size: .94rem;
    line-height: 1.7;
  }

  #LEADERSHIP .board-card.is-active .board-mobile-bio {
    grid-template-rows: 1fr;
    opacity: 1;
  }

  #LEADERSHIP .board-mobile-bio-inner::before {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    margin: 22px 0 18px;
    border-radius: 3px;
    background: var(--board-accent);
  }
}

@media (prefers-reduced-motion: reduce) {
  #LEADERSHIP *,
  #LEADERSHIP *::before,
  #LEADERSHIP *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}
