/* Scoped to the board page; shared navigation and homepage styles are unchanged. */
.board-hero {
  padding: clamp(64px, 8vw, 110px) 0 54px;
  background: linear-gradient(120deg, var(--forest-deep), #0c281a);
  border-bottom: 3px solid var(--gold);
  text-align: center;
}

.board-hero .eyebrow {
  display: block;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.board-hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5.5vw, 4.75rem);
  overflow-wrap: anywhere;
}

.management-hero { background-size: cover; background-position: center; }
.board-breadcrumb { margin-top: 2rem; }
.board-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem 0.75rem;
  list-style: none;
  color: #dce6de;
  font-size: 0.85rem;
}
.board-breadcrumb a { display: inline-flex; align-items: center; min-height: 44px; }
.board-breadcrumb a:hover { color: var(--gold-light); }
.board-breadcrumb [aria-current] { color: var(--gold-light); }

.board-section { padding: clamp(56px, 7vw, 100px) 0; background: var(--off-white); }
.board-intro { text-align: center; margin-bottom: 2rem; }
.board-rule { display: block; width: 44px; height: 2px; background: var(--gold); margin: 0 auto 1.5rem; }
.board-intro h2 { color: var(--ink); font-size: clamp(2rem, 3.5vw, 3rem); }
.board-preview {
  max-width: 660px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.board-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; }
.board-grid-compact { max-width: 844px; margin-inline: auto; }
.board-grid-compact .director-card { width: 100%; max-width: 260px; justify-self: center; }
.director-card {
  min-width: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.director-portrait { aspect-ratio: 4 / 5; overflow: hidden; background: var(--beige); }
.director-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.6s ease; }
.director-card:hover .director-portrait img { transform: scale(1.025); }
.director-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem;
  color: var(--ink-soft);
  background: linear-gradient(145deg, var(--off-white), var(--beige));
  font-size: 0.8rem;
  text-align: center;
}
.director-placeholder svg { width: 34%; max-height: 160px; opacity: 0.55; }
.director-details { padding: 1.75rem; border-top: 2px solid var(--gold); overflow-wrap: anywhere; }
.director-details h3 { color: var(--ink); font-size: 1.5rem; line-height: 1.3; margin-bottom: 0.65rem; }
.director-details p { color: var(--ink-soft); font-size: 0.92rem; }

@media (max-width: 1100px) {
  .board-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
}
@media (max-width: 600px) {
  .board-grid { grid-template-columns: minmax(0, 1fr); }
  .director-details { padding: 1.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  .board-page .reveal { opacity: 1; transform: none; transition: none; }
  .director-card:hover .director-portrait img { transform: none; }
}
