@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;600;700&family=Source+Sans+3:wght@400;600;700&display=swap');

:root {
  --blue-900: #072F6E;
  --blue-700: #0B4AA8;
  --blue-600: #0445B1;
  --blue-500: #1351A0;
  --blue-100: #E3EAF7;

  --ink: #1C1C1C;
  --ink-2: #4A4A4A;
  --ink-3: #8A8A8A;
  --line: #DBDBDB;
  --line-soft: #EAEAEA;
  --surface: #FFFFFF;
  --band: #F4F5F7;

  --font-display: 'Roboto Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;

  --fs-meta: 0.8125rem;
  --fs-sm: 0.9375rem;
  --fs-base: 1.0625rem;
  --fs-lg: 1.25rem;
  --fs-h3: 1.5rem;
  --fs-h2: 2rem;
  --fs-h1: 2.75rem;
  --fs-hero: 3.5rem;

  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 48px;
  --s-6: 64px;
  --s-7: 96px;

  --radius: 0;
  --radius-pill: 999px;
  --shadow: 0 2px 12px rgba(28,28,28,0.08);
  --scrim: linear-gradient(to top, rgba(7,47,110,0.92) 0%, rgba(7,47,110,0.15) 55%, transparent 100%);

  --container: 1240px;
  --gutter: var(--s-3);
}

@media (max-width: 900px) {
  :root {
    --fs-hero: 2.25rem;
    --fs-h1: 2rem;
    --fs-h2: 1.5rem;
  }
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a {
  color: var(--blue-600);
  text-decoration: none;
}
a:hover { color: var(--blue-700); text-decoration: none; }
h1, h2, h3, h4 {
  margin: 0 0 0.6em;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
}
h1 { font-size: var(--fs-h1); text-transform: uppercase; letter-spacing: 0.01em; }
h2 {
  font-size: var(--fs-h2);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding-bottom: var(--s-2);
  border-bottom: 1px solid var(--line);
  position: relative;
  margin: 0 0 var(--s-3);
}
h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 72px;
  height: 3px;
  background: var(--blue-600);
}
h3 { font-size: var(--fs-h3); font-weight: 600; }
h4 { font-size: var(--fs-lg); font-weight: 600; }
p {
  margin: 0 0 1em;
  max-width: 68ch;
  color: var(--ink);
}
ul { margin: 0 0 1em; padding-left: 1.2em; }
button, input, select, textarea {
  font: inherit;
}
.wrap {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  background: var(--blue-500);
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--fs-meta);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.topbar .wrap {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-2);
}
.gov {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 600;
}
.gov svg { opacity: 0.9; }
.topbar-right {
  display: flex;
  align-items: center;
  gap: var(--s-2);
}
.langs {
  display: flex;
  align-items: center;
  gap: 4px;
}
.lang-opt,
.a11y-btn {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
  font-size: var(--fs-meta);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 0;
  cursor: pointer;
}
.lang-opt:hover,
.a11y-btn:hover { background: rgba(255,255,255,0.08); }
.lang-opt.active {
  background: var(--blue-600);
  border-color: var(--blue-600);
}
.a11y-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.masthead {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.masthead .wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.emblem {
  width: 52px;
  height: 52px;
  flex: none;
}
.brand-sup {
  display: block;
  color: var(--ink-3);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
}
.brand-name {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.searchbox {
  display: flex;
  align-items: center;
  width: min(100%, 320px);
  background: var(--surface);
  border: 1px solid var(--line);
}
.searchbox input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 12px var(--s-2);
  font-size: var(--fs-sm);
  outline: none;
}
.searchbox input::placeholder { color: var(--ink-3); }
.searchbox button {
  width: 46px;
  height: 46px;
  border: 0;
  background: var(--blue-600);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.searchbox button:hover { background: var(--blue-900); }

.mainnav {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 70;
}
.mainnav .wrap {
  display: flex;
  align-items: stretch;
}
.navlinks {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
}
.mainnav a {
  display: flex;
  align-items: center;
  padding: 16px 18px;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  border-bottom: 3px solid transparent;
}
.mainnav a:hover {
  color: var(--blue-600);
  border-bottom-color: var(--blue-600);
}
.mainnav a.active {
  color: var(--blue-700);
  border-bottom-color: var(--blue-600);
}
.navtoggle {
  display: none;
}

.fi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  line-height: 1;
}

.pagehead {
  position: relative;
  background: var(--blue-500);
  color: #fff;
  padding: var(--s-5) 0;
  border-top: 3px solid rgba(255,255,255,0.2);
}
.pagehead::before {
  display: none;
}
.pagehead .wrap {
  position: relative;
  z-index: 1;
}
.pagehead h1 {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0.3em;
}
.pagehead p {
  margin: 0;
  color: rgba(255,255,255,0.9);
}
.crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--s-2);
  font-size: var(--fs-meta);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.8);
}
.crumbs a { color: rgba(255,255,255,0.95); }

.hero {
  position: relative;
  background: var(--blue-500);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(7,47,110,0.12);
}
.hero::after {
  content: '';
  position: absolute;
  right: -120px;
  top: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.hero .wrap {
  position: relative;
  z-index: 1;
  padding-top: var(--s-6);
  padding-bottom: var(--s-6);
}
.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.9fr);
  gap: var(--s-4);
  align-items: center;
}
.hero-content { max-width: 760px; }
.hero .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-family: var(--font-display);
  font-size: var(--fs-meta);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  margin-bottom: var(--s-2);
}
.hero h1 {
  font-size: var(--fs-hero);
  line-height: 1.05;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5em;
  text-transform: none;
}
.hero p {
  margin: 0 0 var(--s-3);
  max-width: 620px;
  color: rgba(255,255,255,0.9);
  font-size: var(--fs-base);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
}
.hero-visual {
  position: relative;
  min-height: 420px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255,255,255,0.18);
  overflow: hidden;
}
.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}
.slide.active {
  opacity: 1;
  pointer-events: auto;
}
.slide-art {
  position: absolute;
  inset: 0;
}
.slide-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9) contrast(1.05);
}
.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 17, 32, 0.72), rgba(5, 17, 32, 0.18) 52%, rgba(5, 17, 32, 0.28));
  z-index: 1;
}
.slide-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 18px 20px;
  background: rgba(6, 28, 62, 0.38);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(2px);
}
.slide-copy span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.slide-copy strong {
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.25;
  font-weight: 700;
}
.slider-dots {
  position: absolute;
  left: 24px;
  bottom: 16px;
  z-index: 3;
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  padding: 0;
}
.slider-dot.active {
  background: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px var(--s-3);
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.btn:hover { text-decoration: none; }
.btn-primary,
.btn-gold {
  background: var(--blue-600);
  color: #fff;
}
.btn-primary:hover,
.btn-gold:hover { background: var(--blue-900); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
}
.btn-outline {
  background: var(--surface);
  color: var(--blue-600);
  border-color: var(--blue-600);
}
.btn-outline:hover {
  background: var(--blue-100);
  color: var(--blue-700);
}
.btn-sm {
  padding: 10px 14px;
  font-size: 0.78rem;
}

.stats {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats .wrap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.stat {
  padding: var(--s-3) var(--s-2);
  text-align: center;
  border-right: 1px solid var(--line);
  background: var(--surface);
}
.stat:last-child { border-right: 0; }
.stat b {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2rem, 2vw, 2.5rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.stat span {
  display: block;
  margin-top: 8px;
  color: var(--ink-3);
  font-size: var(--fs-meta);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section {
  padding: var(--s-6) 0;
}
.section.alt {
  background: var(--band);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sec-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--s-3);
  margin-bottom: var(--s-3);
  flex-wrap: wrap;
}
.sec-head h2 {
  margin: 0;
}
.sec-head p {
  margin: 10px 0 0;
  color: var(--ink-2);
}

.grid {
  display: grid;
  gap: var(--s-3);
}
.g2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.g5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--s-3);
}
a.card:hover {
  border-color: var(--blue-600);
}
.gcard {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 160px;
}
.gcard .gnum {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-100);
  color: var(--blue-600);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}
.gcard .gname {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  line-height: 1.3;
  font-weight: 600;
}
.gcard .gcount {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--ink-3);
  font-size: var(--fs-meta);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mcard {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.mphoto {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(180deg, #edf4ff 0%, #dfeaf8 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mphoto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.mrole {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--blue-600);
  color: #fff;
  text-align: center;
  padding: 5px 6px;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.minitials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: var(--blue-600);
  font-size: clamp(3.2rem, 4.5vw, 5.5rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.mbody {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 14px 16px;
  flex: 1;
}
.mname {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  line-height: 1.35;
}
.morg,
.mpos,
.result-count,
.pending,
.notice,
.doccard .dsub,
.ncard p,
.meeting-meta,
.meeting-body ul,
.infolist .v,
.field label,
.check,
.doccard .dnote {
  color: var(--ink-2);
}
.morg {
  font-size: 0.82rem;
  line-height: 1.45;
  min-height: calc(1.45em * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mpos {
  font-size: 0.74rem;
  color: var(--ink-3);
  min-height: calc(1.45em * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mgroup {
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  color: var(--blue-600);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

.filters {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: var(--s-3);
  margin-bottom: var(--s-3);
}
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.chip {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink-2);
  padding: 7px 12px;
  font-size: var(--fs-meta);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
}
.chip:hover { border-color: var(--blue-600); color: var(--blue-600); }
.chip.active {
  background: var(--blue-600);
  border-color: var(--blue-600);
  color: #fff;
}
.mem-search {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  padding: 11px 12px;
  margin-bottom: 12px;
  outline: none;
}
.mem-search:focus,
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px var(--blue-100);
}
.result-count {
  margin-bottom: 16px;
  font-size: var(--fs-meta);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.grouped-members {
  display: grid;
  gap: var(--s-4);
}
.member-group {
  display: grid;
  gap: var(--s-3);
}
.group-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}
.group-head .rule {
  width: 54px;
  height: 3px;
  background: var(--blue-600);
  flex: none;
}
.group-head h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 700;
  color: var(--ink);
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(28,28,28,0.68);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 200;
}
.modal.open { display: flex; }
.modal-box {
  width: min(100%, 640px);
  max-height: 88vh;
  overflow: auto;
  background: var(--surface);
  border: 1px solid var(--line);
}
.modal-top {
  display: flex;
  gap: 18px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.modal-photo {
  width: 110px;
  height: 138px;
  flex: none;
  background: linear-gradient(180deg, #edf4ff 0%, #dfeaf8 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.modal-close {
  margin-left: auto;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}
.modal-close:hover { border-color: var(--blue-600); color: var(--blue-600); }
.modal-body { padding: 22px 24px 26px; }
.dl {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 10px 16px;
  font-size: 0.88rem;
}
.dl dt {
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: var(--fs-meta);
}
.dl dd {
  margin: 0;
  color: var(--ink);
}
.pending {
  font-style: italic;
}

.doccard {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.docicon {
  width: 52px;
  height: 62px;
  flex: none;
  background: var(--blue-100);
  border: 1px solid var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.doccard h3 { margin: 0 0 6px; }
.doccard .dsub { margin: 0 0 8px; }
.doccard .dnote {
  background: var(--blue-100);
  border-left: 3px solid var(--blue-600);
  padding: 8px 12px;
  margin: 0 0 12px;
  font-size: 0.8rem;
}
.docacts { display: flex; gap: 8px; flex-wrap: wrap; }

.tasklist {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: tk;
}
.tasklist li {
  position: relative;
  counter-increment: tk;
  padding: 0 0 0 54px;
  margin-bottom: 20px;
  color: var(--ink-2);
  font-size: 0.94rem;
}
.tasklist li::before {
  content: counter(tk);
  position: absolute;
  left: 0;
  top: 0;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-600);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

.meeting {
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
}
.meeting-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.mdate {
  width: 64px;
  flex: none;
  background: var(--blue-500);
  color: #fff;
  padding: 9px 6px;
  text-align: center;
}
.mdate b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.32rem;
  line-height: 1;
  font-weight: 700;
}
.mdate span {
  display: block;
  margin-top: 4px;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}
.meeting-head h3 { margin: 0 0 5px; }
.meeting-meta {
  color: var(--ink-3);
  font-size: 0.8rem;
}
.meeting-body { padding: 20px; }
.meeting-body h4 {
  margin: 0 0 10px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--fs-meta);
}
.meeting-body ul {
  margin: 0 0 18px;
  padding-left: 20px;
  color: var(--ink-2);
}
.meeting-body li { margin-bottom: 6px; }
.decision {
  background: var(--blue-100);
  border-left: 3px solid var(--blue-600);
  padding: 12px 16px;
  color: var(--ink);
}

.ncard {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  border-radius: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.ncard:hover {
  background: var(--surface);
  border-color: var(--blue-200, #c9d8f4);
  box-shadow: 0 10px 24px rgba(7, 47, 110, 0.06);
  transform: translateY(-1px);
}
.nimg {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--blue-100);
  display: block;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}
.nimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nbody {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 18px 18px 20px;
}
.nmeta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
  font-size: var(--fs-meta);
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ncat {
  display: inline-flex;
  align-items: center;
  background: var(--blue-100);
  color: var(--blue-600);
  padding: 4px 10px;
  font-weight: 700;
}
.ncard h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.7vw, 2rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  overflow-wrap: break-word;
  word-break: break-word;
}
.ncard p {
  margin: 0 0 16px;
  color: var(--ink-2);
  line-height: 1.7;
  overflow-wrap: break-word;
  word-break: break-word;
}
.nmore-row {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-600);
  font-size: var(--fs-meta);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.nmore {
  color: var(--blue-600);
  font-size: var(--fs-meta);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.narrow {
  font-size: 1.25rem;
  line-height: 1;
}

.news-topbar {
  margin-bottom: 18px;
}

.news-detail {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 24px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.news-detail-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 10px;
}

.news-date {
  color: var(--ink-3);
  font-size: var(--fs-meta);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.news-detail-title {
  width: 100%;
  max-width: 100%;
  margin: 0 auto 12px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
}

.news-detail-summary {
  width: 100%;
  max-width: 100%;
  margin: 0 auto 18px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--ink-2);
}

.news-feature {
  width: 100%;
  max-width: 100%;
  margin: 0 auto 22px;
  background: var(--blue-100);
  border: 1px solid var(--line);
  overflow: hidden;
}

.news-feature img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.news-copy {
  display: grid;
  gap: 16px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  color: var(--ink-2);
  font-size: 1.02rem;
  line-height: 1.9;
}

.news-copy p {
  margin: 0;
  width: 100%;
  max-width: 100%;
}

.news-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.share-btn {
  min-width: 110px;
  justify-content: center;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.news-related {
  margin-top: 28px;
}

.news-related h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: var(--fs-meta);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  padding: 12px var(--s-2);
  border-radius: var(--radius);
}
.field textarea { min-height: 140px; resize: vertical; }
.check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--ink-2);
}
.check input { width: auto; margin-top: 4px; }
.notice {
  background: #fff7dc;
  border: 1px solid #f1d895;
  border-left: 4px solid var(--blue-600);
  padding: 12px 16px;
  color: #5d5d5d;
  margin-bottom: 20px;
}
.notice.ok {
  background: #eafaf0;
  border-color: #b6e6c8;
  border-left-color: var(--blue-600);
  color: #1f6940;
}
.infolist { list-style: none; padding: 0; margin: 0; }
.infolist li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
}
.infolist li:last-child { border-bottom: 0; }
.infolist .k {
  width: 110px;
  flex: none;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: var(--fs-meta);
}
.infolist .v { color: var(--ink); font-weight: 600; }

.demo-badge {
  display: inline-block;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  font-weight: 700;
}

.footer {
  background: var(--blue-900);
  color: #eaf1ff;
  padding: 44px 0 0;
  margin-top: var(--s-6);
}
.footer p,
.footer li,
.footer a,
.footer .foot-brand div,
.footer .foot-bottom {
  color: #eaf1ff;
}
.footer h4 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer a { color: #dfeafc; }
.footer a:hover { color: #ffffff; }
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 34px;
  padding-bottom: 34px;
}
.foot-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.foot-brand .emblem {
  width: 44px;
  height: 44px;
  filter: brightness(0) invert(1);
  opacity: 1;
}
.foot-brand div {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 700;
  line-height: 1.2;
}
.foot-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.foot-links li { margin-bottom: 9px; }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 16px 0;
  color: #dfeafc;
  font-size: 0.76rem;
}

body.a11y {
  background: #000;
  color: #fff;
  font-size: 19px;
}
body.a11y * { box-shadow: none \!important; }
body.a11y h1, body.a11y h2, body.a11y h3, body.a11y h4,
body.a11y a, body.a11y p, body.a11y li, body.a11y span,
body.a11y label, body.a11y input, body.a11y textarea, body.a11y select {
  color: #fff \!important;
}
body.a11y .topbar,
body.a11y .masthead,
body.a11y .mainnav,
body.a11y .footer,
body.a11y .hero,
body.a11y .hero-visual,
body.a11y .slide-copy,
body.a11y .pagehead,
body.a11y .section.alt,
body.a11y .stats,
body.a11y .card,
body.a11y .meeting,
body.a11y .ncard,
body.a11y .filters,
body.a11y .modal-box,
body.a11y .decision,
body.a11y .notice {
  background: #000 \!important;
  border-color: #fff \!important;
}
body.a11y .hero .tag,
body.a11y .hero .btn,
body.a11y .hero .slide-copy,
body.a11y .hero .slide-copy span,
body.a11y .hero .slide-copy strong,
body.a11y .hero-visual,
body.a11y .hero-visual .slide-copy,
body.a11y .btn,
body.a11y .chip,
body.a11y .lang-opt,
body.a11y .a11y-btn {
  background: #000 \!important;
  color: #fff \!important;
  border-color: #fff \!important;
}
body.a11y .hero .tag {
  background: #000 \!important;
  color: #fff \!important;
  border: 1px solid #fff;
}
body.a11y .hero .slide::before,
body.a11y .hero::before,
body.a11y .hero::after {
  background: rgba(255,255,255,0.06) \!important;
}

@media (max-width: 1080px) {
  .g5 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 900px) {
  .masthead .wrap { flex-wrap: wrap; }
  .searchbox { width: 100%; }
  .g4, .g5 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .g3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-shell { grid-template-columns: 1fr; }
  .stats .wrap { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat:nth-child(2) { border-right: 0; }
}
@media (max-width: 700px) {
  .navtoggle {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: var(--fs-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 14px 0;
    cursor: pointer;
  }
  .mainnav .wrap { flex-direction: column; }
  .navlinks { display: none; flex-direction: column; }
  .navlinks.open { display: flex; }
  .mainnav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .g2, .g3, .g4, .g5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .dl { grid-template-columns: 1fr; gap: 4px 0; }
  .dl dt { margin-top: 8px; }
  .modal-top { flex-direction: column; }
  #newsGrid.grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 460px) {
  .g2, .g3, .g4, .g5 { grid-template-columns: 1fr; }
  .stats .wrap { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .hero .wrap { padding-top: 42px; padding-bottom: 42px; }
}
@media print {
  .topbar, .mainnav, .searchbox, .hero-cta, .footer { display: none \!important; }
  body { background: #fff; }
}
