/* Board of Trustees — page-specific styles */

.page-trustees .bot-hero {
  background: linear-gradient(155deg, var(--lca-green) 0%, #154735 50%, #0f3d28 100%);
  padding: clamp(3rem, 8vw, 5rem) 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.bot-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 50%, rgba(255, 184, 28, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.bot-hero__inner {
  position: relative;
  max-width: 44rem;
}

.bot-hero__eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lca-gold);
  margin-bottom: 0.75rem;
}

.bot-hero__title {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.bot-hero__lead {
  font-size: 1.0625rem;
  color: var(--gray-100);
  line-height: 1.7;
}

.bot-section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.bot-section--alt {
  background: var(--off-white);
}

.bot-section--cream {
  background: var(--cream);
}

.bot-section--dark {
  background: #154735;
  color: var(--white);
}

.bot-section__header {
  max-width: 42rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.bot-section__header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.bot-section__eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lca-gold);
  margin-bottom: 0.625rem;
}

.bot-section--alt .bot-section__eyebrow {
  color: var(--gold-dark);
}

.bot-section__header h2 {
  font-family: var(--font-headline);
  font-size: clamp(1.5rem, 3.5vw, 2.125rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--lca-green);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.bot-section--dark .bot-section__header h2 {
  color: var(--white);
}

.bot-section__header p {
  color: var(--gray-600);
  line-height: 1.75;
  font-size: 1rem;
}

.bot-section--dark .bot-section__header p {
  color: var(--gray-100);
}

/* Officers */
.bot-officers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.bot-officer {
  background: var(--white);
  border-top: 4px solid var(--lca-gold);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.bot-officer__role {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lca-gold);
  margin-bottom: 0.35rem;
}

.bot-officer__name {
  font-family: var(--font-subhead);
  font-size: 1rem;
  font-weight: 700;
  color: var(--lca-green);
  line-height: 1.3;
}

/* Trustee bios */
.bot-bios {
  max-width: 52rem;
  margin: 0 auto;
}

.bot-bios details {
  background: var(--white);
  border: 1px solid rgba(21, 71, 52, 0.1);
  border-radius: var(--radius);
  margin-bottom: 0.625rem;
  overflow: hidden;
}

.bot-section--alt .bot-bios details {
  background: var(--white);
}

.bot-bios summary {
  font-family: var(--font-subhead);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--lca-green);
  padding: 1rem 2.5rem 1rem 1.25rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  line-height: 1.35;
}

.bot-bios summary span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-top: 0.15rem;
}

.bot-bios summary::-webkit-details-marker {
  display: none;
}

.bot-bios summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-headline);
  font-size: 1.375rem;
  color: var(--lca-gold);
}

.bot-bios details[open] summary::after {
  content: "−";
}

.bot-bios details[open] summary {
  border-bottom: 1px solid var(--gray-100);
  background: rgba(255, 235, 201, 0.35);
}

.bot-bios__body {
  padding: 1rem 1.25rem 1.25rem;
  color: var(--gray-600);
  font-size: 0.9375rem;
  line-height: 1.75;
}

.bot-bios__body p + p {
  margin-top: 0.875rem;
}

/* Governance grid */
.bot-governance {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.bot-governance-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.bot-governance-card h3 {
  font-family: var(--font-headline);
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lca-gold);
  margin-bottom: 0.75rem;
}

.bot-governance-card p,
.bot-governance-card li {
  color: var(--gray-100);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.bot-governance-card ul {
  margin: 0;
  padding-left: 1.25rem;
}

.bot-governance-card li + li {
  margin-top: 0.35rem;
}

.bot-governance-card--wide {
  grid-column: 1 / -1;
}

/* Info columns */
.bot-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.bot-info-block h3 {
  font-family: var(--font-subhead);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--lca-green);
  margin-bottom: 0.75rem;
}

.bot-info-block p {
  color: var(--gray-600);
  line-height: 1.75;
  font-size: 0.9375rem;
}

.bot-info-block ul {
  margin: 0;
  padding-left: 1.25rem;
}

.bot-info-block li {
  color: var(--gray-600);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 0.5rem;
}

.bot-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.bot-pillar {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--lca-green);
  background: var(--cream);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius);
}

.bot-cta {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

.bot-cta h2 {
  font-family: var(--font-headline);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 0.875rem;
}

.bot-cta p {
  color: var(--gray-100);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

  .bot-governance,
  .bot-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .bot-officers {
    grid-template-columns: 1fr;
  }
}
