.board-hero {
  background: linear-gradient(135deg, var(--garnet-dark) 0%, var(--garnet) 60%, var(--garnet-light) 100%);
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.board-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(206, 184, 136, 0.04) 30px, rgba(206, 184, 136, 0.04) 31px);
}

.board-hero-content {
  position: relative;
  z-index: 1;
}

.board-hero h1 {
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 6px;
}

.board-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}

.board-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

/* Search */
.board-search {
  max-width: 420px;
  margin: 0 auto 2.5rem;
  position: relative;
}

.board-search input {
  width: 100%;
  padding: 10px 14px 10px 38px;
  border: 1.5px solid var(--garnet);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  background: var(--bg);
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
}

.board-search input:focus {
  border-color: var(--gold);
}

.board-search svg {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--garnet);
  pointer-events: none;
}

/* Advisor */
.board-advisor {
  margin-bottom: 2.5rem;
}

.board-advisor-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--garnet);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 8px;
  margin-bottom: 1.25rem;
}

.board-advisor-card {
  display: flex;
  justify-content: center;
}

.board-card {
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: box-shadow 0.15s;
}

.board-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.board-card-photo img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold-light);
  transition: border-color 0.15s;
  display: block;
  margin: 0 auto 0.75rem;
}

.board-card:hover .board-card-photo img {
  border-color: var(--garnet);
}

.board-card-photo a {
  display: block;
}

.board-advisor-card .board-card {
  max-width: 200px;
}

.board-advisor-card .board-card-photo img {
  width: 112px;
  height: 112px;
}

.board-card-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--garnet);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.board-card-name {
  font-size: 14px;
  color: var(--text2);
}

/* Year sections */
.board-year {
  margin-bottom: 2.5rem;
}

.board-year-header {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 8px;
  margin-bottom: 1.25rem;
}

.board-year-header h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
}

.board-current-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--garnet);
  background: rgba(120, 47, 64, 0.1);
  border: 1px solid var(--garnet);
  border-radius: 20px;
  padding: 2px 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.board-empty {
  text-align: center;
  color: var(--text2);
  padding: 3rem 0;
}

@media (max-width: 900px) {
  .board-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .board-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
