.group-board {
  padding: clamp(100px, 11vw, 170px) clamp(24px, 7vw, 120px);
  background: #001f18;
  color: #f5f3ec;
}
.board-heading {
  display: grid;
  grid-template-columns: 0.42fr 1.58fr;
  gap: 8vw;
  margin-bottom: 85px;
}
.board-heading h2 {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(3.4rem, 6vw, 7.2rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
}
.board-heading > div > p {
  max-width: 720px;
  margin: 35px 0 0;
  color: rgba(245, 243, 236, 0.56);
  font-size: 16px;
  line-height: 1.8;
}
.board-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-bottom: 1px;
  background: rgba(255, 255, 255, 0.14);
}
.board-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}
.board-member {
  min-width: 0;
  background: #062f25;
}
.board-member figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #0a3b2e;
}
.board-featured figure {
  aspect-ratio: 4/4.45;
}
.board-grid figure {
  aspect-ratio: 4/5;
}
.board-member figure:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 68%, rgba(0, 31, 24, 0.26));
  pointer-events: none;
}
.board-member img {
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: clamp(3px, 0.35vw, 6px) solid #f5f3ec;
  object-fit: contain;
  object-position: center center;
  filter: saturate(0.76);
  transition:
    transform 0.8s ease,
    filter 0.8s ease;
}
.board-member:hover img {
  transform: none;
  filter: saturate(0.9);
}
.board-member-copy {
  padding: clamp(25px, 3vw, 42px);
}
.board-role {
  margin: 0 0 16px;
  color: #c5a04d;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.board-member h3 {
  margin: 0;
  font-size: clamp(1.6rem, 2.5vw, 3.1rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}
.board-grid .board-member h3 {
  font-size: clamp(1.45rem, 2vw, 2.35rem);
}
.board-focus {
  min-height: 42px;
  margin: 22px 0 28px;
  color: rgba(245, 243, 236, 0.48);
  font-size: 10px;
  line-height: 1.65;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.board-member details {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}
.board-member summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  color: rgba(245, 243, 236, 0.78);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  list-style: none;
}
.board-member summary::-webkit-details-marker {
  display: none;
}
.board-member summary span {
  color: #c5a04d;
  font-size: 17px;
  font-weight: 400;
  transition: transform 0.25s;
}
.board-member details[open] summary span {
  transform: rotate(45deg);
}
.board-member details > p {
  margin: 5px 0 0;
  padding: 0 0 15px;
  color: rgba(245, 243, 236, 0.6);
  font-size: 12px;
  line-height: 1.75;
}
.board-member summary:focus-visible {
  outline: 2px solid #c5a04d;
  outline-offset: 5px;
}
@media (max-width: 1100px) {
  .board-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  .group-board {
    padding: 80px 20px;
  }
  .board-heading,
  .board-featured {
    grid-template-columns: 1fr;
  }
  .board-heading {
    margin-bottom: 60px;
  }
  .board-grid {
    grid-template-columns: 1fr;
  }
  .board-featured figure,
  .board-grid figure {
    aspect-ratio: 4/4.5;
  }
  .board-member-copy {
    padding: 28px 22px;
  }
  .board-focus {
    min-height: 0;
  }
  .board-member h3,
  .board-grid .board-member h3 {
    font-size: clamp(2rem, 9vw, 3.2rem);
  }
}
