.about-governance {
  scroll-margin-top: 6.5rem;
  position: relative;
  overflow: hidden;
}

.about-governance::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(170, 34, 46, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.about-governance::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 48, 88, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.about-governance .container {
  position: relative;
  z-index: 1;
}

.about-governance__intro {
  max-width: 640px;
  margin-inline: auto;
}

.about-governance__layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}

.about-governance__sidebar {
  min-height: 0;
  align-self: stretch;
}

.about-side-nav {
  position: sticky;
  top: calc(var(--site-nav-height, 76px) + 1rem);
  max-height: calc(100vh - var(--site-nav-height, 76px) - 2rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.about-side-nav__group-label {
  margin: 0.5rem 0 0.15rem;
  padding: 0.35rem 0.65rem 0;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.about-side-nav__group-label:first-child {
  margin-top: 0;
}

.about-side-nav button {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--brand-primary);
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.about-side-nav button i {
  flex-shrink: 0;
  width: 1.35rem;
  font-size: 1rem;
  opacity: 0.85;
}

.about-side-nav button:hover {
  background: var(--bg-soft);
}

.about-side-nav button.is-active {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(23, 48, 88, 0.22);
}

.about-side-nav button.is-active i {
  opacity: 1;
}

.about-panels-shell {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem 1.65rem;
  min-height: 420px;
}

.about-panel {
  display: none;
}

.about-panel.is-active {
  display: block;
  animation: aboutPanelIn 0.4s ease;
}

@keyframes aboutPanelIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-leader-message {
  margin: 0;
}

.about-leader-message__card {
  background: linear-gradient(145deg, #fff 0%, #f6f9fc 100%);
  border: 1px solid rgba(23, 48, 88, 0.1);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.35rem 1.35rem;
  margin-bottom: 1.5rem;
}

.about-leader-message__head {
  display: flex;
  gap: 1.35rem;
  align-items: center;
}

.about-leader-message__photo {
  width: 132px;
  height: 132px;
  flex-shrink: 0;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-soft);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.75rem;
  font-weight: 700;
  border: 3px solid #fff;
  box-shadow: 0 10px 28px rgba(23, 48, 88, 0.15);
}

.about-leader-message__photo--initials {
  background: linear-gradient(145deg, var(--brand-primary), #2a4a7a);
}

.about-leader-message__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-leader-message__meta .section-label {
  margin-bottom: 0.35rem;
}

.about-leader-message__meta h3 {
  color: var(--brand-primary);
  font-size: 1.35rem;
  margin: 0;
}

.about-leader-message__role {
  display: inline-block;
  margin: 0.5rem 0 0;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(170, 34, 46, 0.1);
  color: var(--brand-accent);
}

.about-leader-message__qual {
  margin: 0.65rem 0 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.about-leader-message__body {
  position: relative;
  padding-left: 0.15rem;
}

.about-leader-message__body p {
  margin: 0 0 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.98rem;
}

.about-leader-message__body p:first-child {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brand-primary);
}

.about-leader-message__body p:last-child {
  margin-bottom: 0;
}

.about-panel-table__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.about-panel-table__head h3 {
  margin: 0;
  color: var(--brand-primary);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.about-panel-table__head h3 i {
  color: var(--brand-accent);
}

.about-panel-table__count {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg-soft);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.about-gov-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.about-gov-card {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(23, 48, 88, 0.1);
  border-radius: 14px;
  background: linear-gradient(160deg, #ffffff 0%, #f6f9fc 100%);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.about-gov-card:hover {
  border-color: rgba(170, 34, 46, 0.28);
  box-shadow: 0 12px 28px -20px rgba(23, 48, 88, 0.45);
  transform: translateY(-2px);
}

.about-gov-card__body {
  min-width: 0;
}

.about-gov-card__name {
  margin: 0;
  color: var(--brand-primary);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
}

.about-gov-card__position {
  margin: 0.35rem 0 0;
  color: var(--brand-accent);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
  text-justify: auto;
  hyphens: none;
  word-spacing: normal;
}

.about-gov-card__meta {
  margin: 0.25rem 0 0;
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.45;
  text-align: left;
  text-justify: auto;
  hyphens: none;
  word-spacing: normal;
}

.about-governance-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}

.about-governance-table {
  width: 100%;
  margin: 0;
  font-size: 0.88rem;
}

.about-governance-table thead {
  position: sticky;
  top: 0;
  z-index: 1;
}

.about-governance-table th {
  background: var(--brand-primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  border: none;
}

.about-governance-table td,
.about-governance-table th {
  padding: 0.85rem 1rem;
  vertical-align: top;
}

.about-governance-table tbody tr {
  transition: background 0.15s ease;
}

.about-governance-table tbody tr:hover {
  background: rgba(23, 48, 88, 0.04);
}

.about-governance-table tbody tr:nth-child(even) {
  background: rgba(245, 248, 252, 0.8);
}

.about-governance-table tbody tr:nth-child(even):hover {
  background: rgba(23, 48, 88, 0.06);
}

.about-governance-table td:first-child {
  font-weight: 700;
  color: var(--brand-primary);
  width: 3.5rem;
}

.about-governance-table td:last-child {
  font-weight: 600;
  color: var(--brand-accent);
  white-space: nowrap;
}

.about-governance-table--wide td:last-child {
  white-space: normal;
  font-weight: 500;
  color: var(--text-muted);
}

@media (max-width: 991.98px) {
  .about-governance,
  .about-governance .container,
  .about-governance__layout,
  .about-governance__sidebar,
  .about-side-nav,
  .about-panels-shell,
  .about-panels,
  .about-panel,
  .about-leader-message,
  .about-leader-message__card,
  .about-leader-message__head,
  .about-leader-message__meta,
  .about-leader-message__body {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .about-governance__layout {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  .about-governance__sidebar {
    align-self: auto;
    width: 100%;
  }

  .about-gov-cards {
    grid-template-columns: 1fr;
  }

  .about-side-nav {
    position: static;
    max-height: none;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 0.45rem;
    padding: 0.75rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    width: 100%;
    max-width: 100%;
  }

  .about-side-nav__group-label {
    display: none;
  }

  .about-side-nav button {
    white-space: nowrap;
    width: calc(100% - 4.75rem);
    flex: 0 0 calc(100% - 4.75rem);
    max-width: calc(100% - 4.75rem);
    min-width: 0;
    padding: 0.55rem 0.85rem;
    font-size: 0.8rem;
  }

  .about-side-nav button span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .about-panels-shell {
    padding: 1.25rem 1rem;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: visible;
    width: 100%;
  }

  .about-leader-message__head {
    flex-direction: column !important;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    gap: 0.85rem;
    width: 100%;
  }

  .about-leader-message__photo {
    margin-inline: auto;
    width: min(132px, 42vw);
    height: min(132px, 42vw);
    max-width: 100%;
  }

  .about-leader-message__card {
    overflow: hidden;
    width: 100%;
  }

  .about-leader-message__meta,
  .about-leader-message__meta h3,
  .about-leader-message__qual,
  .about-leader-message__body,
  .about-leader-message__body p {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
  }

  .about-leader-message__qual {
    max-width: 28rem;
    margin-inline: auto;
  }
}

@media (max-width: 575.98px) {
  .about-leader-message__photo {
    width: min(108px, 38vw);
    height: min(108px, 38vw);
  }

  .about-governance-table {
    font-size: 0.82rem;
  }
}
