:root {
  --background: #fbfbfc;
  --foreground: #232629;
  --card: #ffffff;
  --primary: #183d78;
  --primary-dark: #102d5f;
  --primary-soft: #eef3fb;
  --accent: #2c9b68;
  --accent-dark: #20784f;
  --muted: #f4f6f8;
  --text-muted: #687384;
  --border: #e3e7ed;
  --shadow: 0 16px 40px rgba(24, 61, 120, 0.09);
  --radius: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(227, 231, 237, 0.8);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.nav-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--foreground);
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 1.05rem;
  line-height: 1.15;
}

.brand small {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav>a,
.nav-more>button,
.nav-dropdown a {
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--foreground);
  cursor: pointer;
  font: inherit;
  font-size: 0.93rem;
  font-weight: 650;
  padding: 10px 12px;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav>a:hover,
.site-nav>a.active,
.nav-more>button:hover,
.nav-more>button.active {
  background: var(--primary-soft);
  color: var(--primary);
}

.nav-more {
  position: relative;
}

.nav-more>button {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.nav-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  min-width: 210px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-more:hover .nav-dropdown,
.nav-more:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  font-weight: 600;
}

.nav-dropdown a:hover,
.nav-dropdown a.active {
  background: var(--primary-soft);
  color: var(--primary);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: var(--primary);
}

.nav-toggle svg,
.icon-circle svg,
.btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  min-height: 42vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
}

.home-hero {
  min-height: 70vh;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  background: rgba(24, 61, 120, 0.74);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, 880px);
  padding: 88px 0;
  text-align: center;
}

.hero-wide {
  width: min(100% - 32px, 980px);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.hero p {
  width: min(100%, 760px);
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.hero-actions,
.section-action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}

.btn-accent:hover {
  background: var(--accent-dark);
}

.btn-outline {
  border-color: rgba(24, 61, 120, 0.25);
  color: var(--primary);
  background: #fff;
}

.btn-outline:hover {
  border-color: var(--primary);
  background: var(--primary-soft);
}

.btn-ghost-light {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.section {
  padding: clamp(58px, 8vw, 92px) 0;
}

.section.muted {
  background: rgba(244, 246, 248, 0.9);
}

.section-header {
  width: min(100%, 720px);
  margin: 0 auto 42px;
  text-align: center;
}

.section-header h2 {
  margin: 0;
  color: #1f2933;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.18;
}

.section-header p {
  margin: 14px 0 0;
  color: var(--text-muted);
}

.grid {
  display: grid;
  gap: 22px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border: 1px solid rgba(227, 231, 237, 0.95);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 1px 2px rgba(24, 61, 120, 0.03);
}

.value-card,
.priority-card,
.simple-card,
.partner-card,
.publication-card {
  padding: 28px;
  overflow: hidden;
  word-break: break-word;
}

.value-card {
  text-align: center;
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.value-card:hover,
.image-card:hover,
.media-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.icon-circle {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: rgba(24, 61, 120, 0.1);
  color: var(--primary);
}

.value-card:hover .icon-circle {
  background: var(--primary);
  color: #fff;
}

.card h2,
.card h3 {
  margin: 0;
  color: #202832;
  line-height: 1.25;
}

.card h3 {
  font-size: 1.12rem;
}

.card p {
  margin: 13px 0 0;
  color: var(--text-muted);
}

.eyebrow {
  display: block;
  margin-bottom: 9px;
  color: var(--primary);
  font-size: 0.83rem;
  font-weight: 800;
}

.image-card,
.media-card,
.list-card {
  overflow: hidden;
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.image-card img {
  width: 100%;
  height: 205px;
  object-fit: cover;
}

.image-card div,
.media-card div,
.list-card div {
  padding: 24px;
}

.news-feature {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 22px;
}

.media-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.media-card:first-child {
  grid-row: span 2;
}

.media-card:first-child img {
  height: 340px;
}

/* ── PREMIUM NEWS SLIDER ── */
.news-slider-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.28);
  background: #080f1e;
  max-width: 1100px;
  margin-inline: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.news-slider {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
}

.news-slider-track {
  position: absolute;
  inset: 0;
}

.news-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 800ms cubic-bezier(0.4, 0, 0.2, 1);
}

.news-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.news-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
  transition: transform 9000ms cubic-bezier(0.1, 0.8, 0.2, 1);
  transform: scale(1.1);
}

.news-slide.active img {
  transform: scale(1.02) translate(1%, -1%);
}

.news-slide-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 15, 30, 0.85) 0%, rgba(8, 15, 30, 0.4) 60%, rgba(8, 15, 30, 0.1) 100%),
    linear-gradient(0deg, rgba(8, 15, 30, 0.8) 0%, rgba(8, 15, 30, 0) 65%);
}

/* slide inner content (glassmorphic cards) */
.news-slide-content {
  position: absolute;
  left: clamp(28px, 5vw, 56px);
  bottom: clamp(32px, 5vw, 56px);
  z-index: 2;
  width: min(calc(100% - 56px), 620px);
  color: #fff;
  background: rgba(8, 15, 30, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: clamp(20px, 4vw, 36px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.news-slide-content > * {
  transform: translateY(24px);
  opacity: 0;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1), opacity 700ms ease;
}

.news-slide.active .news-slide-content > :nth-child(1) { transform: translateY(0); opacity: 1; transition-delay: 150ms; }
.news-slide.active .news-slide-content > :nth-child(2) { transform: translateY(0); opacity: 1; transition-delay: 250ms; }
.news-slide.active .news-slide-content > :nth-child(3) { transform: translateY(0); opacity: 1; transition-delay: 350ms; }
.news-slide.active .news-slide-content > :nth-child(4) { transform: translateY(0); opacity: 1; transition-delay: 450ms; }

.news-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(44, 155, 104, 0.35);
  color: #6ee7b7;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  box-shadow: 0 0 15px rgba(110, 231, 183, 0.15);
}

.news-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #34d399;
  box-shadow: 0 0 8px #34d399;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.news-slide-content h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.news-slide-content p {
  width: 100%;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.btn-slide {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #1f9460);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 750;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 20px rgba(44, 155, 104, 0.35);
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-slide:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 30px rgba(44, 155, 104, 0.5);
  background: linear-gradient(135deg, #32c484, #128a55);
}

.btn-slide svg {
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-slide:hover svg {
  transform: translateX(4px);
}

/* nav arrows */
.slider-control {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(8, 15, 30, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-control:hover {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(44, 155, 104, 0.4);
  color: #fff;
}

.slider-control.prev { left: 24px; }
.slider-control.next { right: 24px; }

.slider-control.prev:hover { transform: translateY(-50%) translateX(-2px) scale(1.05); }
.slider-control.next:hover { transform: translateY(-50%) translateX(2px) scale(1.05); }

/* progress bar */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  height: 4px;
  background: rgba(255,255,255,0.08);
}

.slider-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #54dca1);
  width: 0%;
  transition: width linear;
  border-radius: 0 999px 999px 0;
  box-shadow: 0 0 8px rgba(44, 155, 104, 0.6);
}

/* thumbnail sidebar strip */
.news-thumb-strip {
  display: flex;
  gap: 0;
  background: #090e1a;
  border-top: 1px solid rgba(255,255,255,0.06);
  overflow-x: auto;
  scrollbar-width: none;
}

.news-thumb-strip::-webkit-scrollbar { display: none; }

.news-thumb {
  flex: 1;
  min-width: 0;
  padding: 20px 22px;
  cursor: pointer;
  border: 0;
  border-right: 1px solid rgba(255,255,255,0.05);
  background: transparent;
  text-align: left;
  color: rgba(255,255,255,0.45);
  font: inherit;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.news-thumb:last-child { border-right: 0; }

.news-thumb::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.news-thumb.active {
  background: rgba(255,255,255,0.03);
  color: #fff;
}

.news-thumb.active::before {
  transform: scaleX(1);
}

.news-thumb:hover:not(.active) {
  background: rgba(255,255,255,0.02);
  color: rgba(255,255,255,0.8);
}

.news-thumb-num {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.6;
  margin-bottom: 6px;
  transition: opacity 250ms;
}

.news-thumb.active .news-thumb-num { opacity: 1; }

.news-thumb-label {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 250ms;
}

/* old slider-dots kept but hidden by default; only shown on mobile */
.slider-dots { display: none; }

@media (max-width: 700px) {
  .news-slider { height: 380px; }

  .news-slide-content {
    left: 16px;
    bottom: 20px;
    width: calc(100% - 32px);
    padding: 20px;
  }

  .slider-control { display: none; }

  .news-thumb-strip {
    display: none;
  }

  .slider-dots {
    display: flex;
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    gap: 6px;
    z-index: 5;
  }

  .slider-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.45);
    cursor: pointer;
    transition: background 200ms ease, width 200ms ease;
  }

  .slider-dots button.active {
    width: 24px;
    background: var(--accent);
  }
}

@media (min-width: 701px) and (max-width: 980px) {
  .news-slider { height: 440px; }
  .news-thumb-label { display: none; }
  .news-thumb-num { font-size: 0.7rem; }
  .news-thumb { padding: 12px 14px; min-width: 70px; }
}

.person-card {
  padding: 26px 22px;
  text-align: center;
  overflow: hidden;
  word-break: break-word;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.person-card img {
  width: 96px;
  height: 96px;
  margin: 0 auto 18px;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
}

.person-card span {
  display: block;
  margin-top: 4px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 800;
}

/* Team member bio base style – preserves line breaks entered in admin */
.person-bio {
  margin: 13px 0 0;
  color: var(--text-muted);
  line-height: 1.6;
  white-space: pre-line;
}

/* Truncate bio to 3 lines with ellipsis */
.person-bio.person-bio-truncate {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* Read More button inside person card */
.person-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 7px 16px;
  border: 1px solid rgba(24, 61, 120, 0.2);
  border-radius: 999px;
  background: transparent;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.person-read-more:hover {
  background: var(--primary-soft);
  border-color: var(--primary);
  color: var(--primary-dark);
}

/* Team member modal – large round photo */
.team-modal-photo {
  width: clamp(80px, 20vw, 120px);
  height: clamp(80px, 20vw, 120px);
  border-radius: 999px;
  object-fit: cover;
  margin: 0 auto 20px;
  display: block;
  border: 4px solid var(--primary-soft);
  box-shadow: 0 8px 24px rgba(24, 61, 120, 0.14);
}

/* Role pill inside team modal */
.team-modal-role {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

/* Team modal center-aligned header */
.team-modal-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.team-modal-header h2 {
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  font-weight: 800;
  color: #111827;
  margin: 8px 0 0;
  line-height: 1.2;
}

/* Team modal bio text */
.team-modal-bio {
  font-size: 1rem;
  line-height: 1.75;
  color: #374151;
  max-height: 55vh;
  overflow-y: auto;
  padding-right: 4px;
}

.team-modal-bio::-webkit-scrollbar {
  width: 4px;
}
.team-modal-bio::-webkit-scrollbar-thumb {
  background: rgba(24, 61, 120, 0.15);
  border-radius: 999px;
}

.team-modal-bio p {
  margin-bottom: 16px;
  text-align: justify;
  line-height: 1.75;
}

.team-modal-bio p:last-child {
  margin-bottom: 0;
}

/* ── COMMITTEE PAGE ── */
.committee-group {
  margin-bottom: 48px;
}

.committee-group-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.committee-group-title h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #111827;
  margin: 0;
}

.committee-group-title::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--border) 0%, transparent 100%);
  border-radius: 999px;
}

.committee-group-desc {
  color: var(--text-muted);
  font-size: 0.93rem;
  margin: 0 0 20px;
}

/* Clickable category chip buttons */
.committee-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.committee-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--card);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 660;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(24,61,120,0.05);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.committee-chip:hover {
  background: var(--primary-soft);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(24,61,120,0.11);
}

.committee-chip:active {
  transform: translateY(0);
}

.committee-chip-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0 7px;
  flex-shrink: 0;
}

.committee-chip:hover .committee-chip-count {
  background: var(--primary-dark);
}

.committee-chip.empty {
  opacity: 0.55;
}

/* Committee member list inside modal */
.committee-member-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.committee-member-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fafbfd;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.committee-member-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(24, 61, 120, 0.12);
}

.committee-member-avatar {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.4rem;
  flex-shrink: 0;
  overflow: hidden;
  margin-bottom: 16px;
}

.committee-member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.committee-member-info {
  flex: 1;
  min-width: 0;
}

.committee-member-info h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.3;
}

.committee-member-role {
  display: inline-block;
  margin-top: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 750;
}

.committee-member-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.committee-member-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.committee-member-bio {
  margin-top: 12px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  white-space: pre-line;
}

.committee-member-bio-truncate {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0;
}

.committee-member-read-more {
  margin-top: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(24, 61, 120, 0.25);
  border-radius: 999px;
  background: white;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.committee-member-read-more:hover {
  background: var(--primary-soft);
  border-color: var(--primary);
}

.committee-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 32px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .committee-member-list {
    grid-template-columns: 1fr;
  }
  .committee-chips {
    gap: 8px;
  }
  .committee-chip {
    padding: 9px 16px;
    font-size: 0.87rem;
  }
}

.partner-card strong {
  display: block;
  color: var(--primary);
  font-size: 1.15rem;
}

.publication-card strong {
  display: block;
  margin-top: 18px;
  color: #253142;
}

.list-stack {
  display: grid;
  gap: 18px;
}

.list-card {
  display: grid;
  grid-template-columns: 220px 1fr;
}

.list-card img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

.list-card .btn {
  margin-top: 18px;
}

.article-detail {
  color: #2b3441;
}

.article-detail h2 {
  margin: 0;
  color: #202832;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.16;
}

.article-detail p {
  margin: 18px 0 0;
  color: var(--text-muted);
}

.article-detail .lead {
  color: #394554;
  font-size: 1.16rem;
}

.article-detail .btn {
  margin-top: 28px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
}

.compact {
  gap: 16px;
}

.side-panel {
  position: sticky;
  top: 96px;
  padding: 28px;
}

.side-panel ul {
  padding-left: 20px;
  color: var(--text-muted);
}

.side-panel .btn {
  width: 100%;
  margin-top: 12px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.contact-card,
.form-card {
  padding: 30px;
}

.contact-card .icon-circle {
  margin-inline: 0;
}

.form-card {
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: #253142;
  font-weight: 750;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: var(--foreground);
  font: inherit;
  padding: 12px 13px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus,
textarea:focus {
  border-color: rgba(24, 61, 120, 0.62);
  box-shadow: 0 0 0 4px rgba(24, 61, 120, 0.1);
}

.narrow {
  width: min(100% - 32px, 760px);
}

.site-footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.9);
  padding: 42px 0 30px;
}

.footer-partners {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.footer-partners h2 {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.partner-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.partner-strip span {
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  padding: 8px 13px;
  color: #fff;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: #fff;
  text-underline-offset: 4px;
}

/* ── MODAL SYSTEM ── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(13, 27, 53, 0.75);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.active {
  display: flex;
  opacity: 1;
}

.modal-container {
  background: #fff;
  width: min(100%, 820px);
  max-height: 90vh;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.active .modal-container {
  transform: translateY(0);
}

.modal-close {
  position: sticky;
  top: 20px;
  right: 20px;
  float: right;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--foreground);
  cursor: pointer;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.2s;
}

.modal-close:hover {
  background: var(--primary);
  color: #fff;
  transform: rotate(90deg);
}

.modal-content {
  padding: 40px;
}

.modal-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 30px;
}

.modal-header {
  margin-bottom: 24px;
}

.modal-header .eyebrow {
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.modal-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  color: #111827;
}

.modal-body {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #374151;
}

.modal-body p {
  margin-bottom: 20px;
}

@media (max-width: 640px) {
  .modal-content { padding: 24px; }
  .modal-img { height: 240px; }
  .modal-header h2 { font-size: 1.6rem; }
}

/* ── CENTER MODAL RESPONSIVE BANNER ── */
@media (max-width: 640px) {
  .center-modal-banner {
    height: 200px !important;
  }
  .center-modal-banner-title {
    font-size: 1.25rem !important;
    bottom: 16px !important;
    left: 20px !important;
    right: 20px !important;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 980px) {

  .grid.four,
  .grid.three,
  .news-feature {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-card:first-child {
    grid-row: auto;
  }

  .media-card:first-child img {
    height: 170px;
  }

  .news-slider {
    min-height: 390px;
  }

  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .side-panel {
    position: static;
  }
}

@media (max-width: 820px) {
  .brand small {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav>a,
  .nav-more>button {
    width: 100%;
    justify-content: space-between;
    text-align: left;
  }

  .nav-dropdown {
    position: static;
    display: grid;
    gap: 2px;
    min-width: 0;
    margin-top: 4px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    padding: 4px 0 0 12px;
  }
}

@media (max-width: 640px) {

  .container,
  .narrow {
    width: min(100% - 24px, var(--container));
  }

  .nav-shell {
    min-height: 66px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand strong {
    max-width: 190px;
    white-space: normal;
    font-size: 0.95rem;
  }

  .home-hero {
    min-height: 66vh;
  }

  .hero-content {
    padding: 66px 0;
  }

  .grid.two,
  .grid.three,
  .grid.four,
  .news-feature {
    grid-template-columns: 1fr;
  }

  .list-card {
    grid-template-columns: 1fr;
  }

  .list-card img {
    height: 190px;
  }

  .news-slider {
    min-height: 430px;
  }

  .news-slide-shade {
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.2));
  }

  .news-slide-content {
    left: 22px;
    bottom: 58px;
    width: calc(100% - 44px);
  }

  .news-slide-content h3 {
    font-size: 2rem;
  }

  .news-slide-content p {
    font-size: 0.95rem;
  }

  .slider-control {
    top: auto;
    bottom: 16px;
    width: 36px;
    height: 36px;
    font-size: 1.7rem;
    transform: none;
  }

  .slider-control:hover {
    transform: scale(1.04);
  }

  .slider-dots {
    right: 22px;
    bottom: 29px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}