/* Board list — responsive grid with “featured” first row for Officers & Editorial Office */
/* ===== Grid container per group ===== */
.board-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

/* 2 cols on medium, 1 col on small */
@media (max-width: 980px) {
  .board-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .board-grid { grid-template-columns: 1fr; }
}

/* ===== Card ===== */
.board-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  align-items: center;
  padding: 12px;
  border: 1px solid #e6e9ef;
  border-radius: 8px;
  background: #fff;
}

/* The featured card stretches across all columns of the grid */
.board-card.is-featured {
  grid-column: 1 / -1;
}

/* Photo block */
.board-photo {
  width: 112px;
  height: 112px;
  border-radius: 2px;
  overflow: hidden;
  background: #f2f4f7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.board-photo img {
  display: block;
  width: 112px;
  height: 112px;
  object-fit: cover;
}
.board-photo--placeholder {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #d9dee7;
}
/* Text */
.board-info { min-width: 0;margin-block-start:unset!important; }
.board-name {margin-block-start:unset!important;margin-top:0;padding-top:0;}


.board-country,.board-title {
  font-size:var(--wp--preset--font-size--small)
}
