/* Governing Body page */

.gb-section {
  padding: 5.5rem 0;
  background: var(--white);
}

.gb-intro p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 2rem;
  text-align: justify;
}

.gb-functions {
  margin-bottom: 2.5rem;
  padding: 1.75rem 2rem;
  background: var(--off-white);
  border-radius: var(--ab-radius-lg, 24px);
  border-left: 4px solid var(--gold);
}

.gb-functions h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.gb-functions ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.gb-functions li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.65;
}

.gb-functions li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.5rem;
}

.gb-members-heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.gb-members {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gb-member {
  padding: 1.35rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--ab-radius, 16px);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.gb-member:hover {
  border-color: rgba(255, 184, 0, 0.4);
  box-shadow: 0 8px 28px rgba(30, 58, 95, 0.08);
}

.gb-member-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 8px;
  margin-bottom: 0.65rem;
}

.gb-member h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
  line-height: 1.4;
}

.gb-member .gb-role {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.65rem;
}

.gb-member address,
.gb-member p {
  font-size: 0.86rem;
  color: var(--gray-600);
  line-height: 1.65;
  font-style: normal;
  margin-bottom: 0.25rem;
}

.gb-member a {
  color: var(--navy);
  font-weight: 500;
}

.gb-member a:hover {
  color: var(--gold-dark);
}
