:root {
  --ink: #0a1b33;
  --blue: #102e58;
  --blue-2: #173e72;
  --teal: #147c78;
  --gold: #f1b84c;
  --cream: #f7f7f3;
  --paper: #fff;
  --muted: #66758a;
  --line: #dde5ef;
  --dark: #07172b;
  --shadow: 0 24px 70px rgba(9, 30, 61, 0.12);
  --radius: 22px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
}
.shell {
  margin: 0 auto;
  width: min(1180px, calc(100% - 48px));
}
.skip-link {
  background: #fff;
  left: -10000px;
  padding: 10px;
  position: fixed;
  top: 0;
  z-index: 100;
}
.skip-link:focus {
  left: 10px;
}
.topline {
  background: #081a33;
  color: #bac8dd;
  font-size: 0.75rem;
}
.topline-inner {
  align-items: center;
  display: flex;
  height: 30px;
  justify-content: space-between;
}
.topline a {
  color: #fff;
}
.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(10, 27, 51, 0.08);
  position: relative;
  z-index: 20;
}
.nav-row {
  align-items: center;
  display: flex;
  gap: 28px;
  min-height: 86px;
}
.brand {
  display: block;
  min-width: 252px;
}
.brand-logo {
  display: block;
  height: 54px;
  object-fit: contain;
  object-position: left center;
  width: 252px;
}
.site-nav {
  align-items: center;
  display: flex;
  flex: 1;
  gap: 23px;
  justify-content: center;
}
.site-nav a {
  color: #4b5c71;
  font-size: 0.82rem;
  font-weight: 760;
  position: relative;
  white-space: nowrap;
}
.site-nav a:after {
  background: var(--gold);
  border-radius: 999px;
  bottom: -11px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s;
  width: 100%;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--ink);
}
.site-nav a:hover:after,
.site-nav a.active:after {
  transform: scaleX(1);
}
.nav-toggle {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  display: none;
  font-size: 0.8rem;
  font-weight: 750;
  padding: 9px 12px;
}
.join-trigger,
.button {
  border: 0;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 13px 18px;
  transition:
    transform 0.18s,
    box-shadow 0.18s;
}
.join-trigger {
  background: var(--ink);
  color: #fff;
  white-space: nowrap;
}
.join-trigger:hover,
.button:hover {
  box-shadow: 0 9px 18px rgba(9, 28, 55, 0.16);
  transform: translateY(-2px);
}
.join-trigger span {
  color: var(--gold);
  font-size: 1rem;
  margin-left: 5px;
}
.hero {
  background:
    radial-gradient(
      circle at 80% 30%,
      rgba(35, 117, 172, 0.55),
      transparent 25%
    ),
    radial-gradient(
      circle at 10% 100%,
      rgba(20, 124, 120, 0.48),
      transparent 32%
    ),
    linear-gradient(135deg, #081a34 0%, #102f5d 48%, #0b274e 100%);
  color: #fff;
  isolation: isolate;
  min-height: 610px;
  overflow: hidden;
  position: relative;
}
.hero:before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}
.hero-inner {
  align-items: center;
  display: grid;
  gap: 46px;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 610px;
  padding: 76px 0;
}
.hero-copy {
  max-width: 655px;
}
.eyebrow {
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  margin: 0;
  text-transform: uppercase;
}
.eyebrow-light {
  color: #f3c768;
}
.hero h1,
.page-hero h1,
.article-hero h1 {
  font-size: clamp(3rem, 5.5vw, 5.55rem);
  font-weight: 820;
  letter-spacing: -0.07em;
  line-height: 0.94;
  margin: 17px 0 22px;
}
.hero h1 span,
.section-heading h2 em {
  color: var(--gold);
  font-style: normal;
}
.hero-copy > p:not(.eyebrow) {
  color: #d8e5f5;
  font-size: 1.07rem;
  max-width: 570px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.button {
  display: inline-block;
  text-align: center;
}
.button-light {
  background: #fff;
  color: var(--ink);
}
.button-primary {
  background: var(--blue-2);
  color: #fff;
}
.button-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
}
.button-quiet {
  background: #eef3f8;
  color: var(--blue);
}
.hero-actions span,
.callout .button span {
  color: var(--gold);
  font-size: 1rem;
  margin-left: 5px;
}
.hero-trust {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  gap: 30px;
  margin-top: 46px;
  padding-top: 18px;
}
.hero-trust span {
  color: #b6c9dd;
  font-size: 0.75rem;
}
.hero-trust b {
  color: #fff;
  font-size: 1rem;
  margin-right: 5px;
}
.hero-art {
  height: 430px;
  position: relative;
}
.hero-orbit {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  position: absolute;
}
.orbit-one {
  height: 405px;
  right: 6%;
  top: 5px;
  width: 405px;
}
.orbit-two {
  border-color: rgba(241, 184, 76, 0.48);
  height: 273px;
  right: 23%;
  top: 71px;
  width: 273px;
}
.hero-emblem {
  align-items: center;
  background: linear-gradient(145deg, #fff, #e3edf8);
  border-radius: 24px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
  display: flex;
  height: 132px;
  justify-content: center;
  left: 17%;
  padding: 13px;
  position: absolute;
  top: 132px;
  transform: rotate(-8deg);
  width: 278px;
}
.hero-emblem img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}
.hero-emblem span {
  background: var(--gold);
  border-radius: 999px;
  bottom: -18px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  padding: 7px 10px;
  position: absolute;
  right: -20px;
}
.hero-note {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 17px;
  bottom: 51px;
  display: flex;
  gap: 12px;
  padding: 13px 17px;
  position: absolute;
  right: 2%;
  transform: rotate(4deg);
}
.hero-note i {
  color: var(--gold);
  font-size: 1.1rem;
}
.hero-note p {
  font-size: 0.75rem;
  line-height: 1.4;
  margin: 0;
}
.hero-note strong {
  font-size: 0.93rem;
}
.hero-stamp {
  border: 1px solid rgba(241, 184, 76, 0.55);
  border-radius: 50%;
  color: #f4ca73;
  font-size: 0.62rem;
  font-weight: 800;
  height: 96px;
  letter-spacing: 0.13em;
  line-height: 1.5;
  padding-top: 29px;
  position: absolute;
  right: 10%;
  text-align: center;
  top: 12px;
  transform: rotate(13deg);
  width: 96px;
}
.impact-strip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 17px 35px rgba(13, 34, 66, 0.06);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: -1px;
  position: relative;
  z-index: 2;
}
.impact-strip > div {
  align-items: center;
  border-right: 1px solid var(--line);
  display: flex;
  gap: 14px;
  padding: 23px 28px;
}
.impact-strip > div:last-child {
  border: 0;
}
.impact-icon {
  align-items: center;
  background: #f7e8c6;
  border-radius: 14px;
  color: #755214;
  display: flex;
  font-size: 1.1rem;
  height: 38px;
  justify-content: center;
  width: 38px;
}
.impact-strip p {
  line-height: 1.25;
  margin: 0;
}
.impact-strip b,
.impact-strip small {
  display: block;
}
.impact-strip b {
  font-size: 0.83rem;
}
.impact-strip small {
  color: var(--muted);
  font-size: 0.72rem;
  margin-top: 4px;
}
.section {
  padding: 88px 0;
}
.news-section {
  padding-top: 100px;
}
.section-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 31px;
}
.section-heading h2,
.callout h2 {
  font-size: clamp(2.05rem, 3.6vw, 3.35rem);
  font-weight: 820;
  letter-spacing: -0.06em;
  line-height: 1;
  margin: 8px 0 0;
}
.text-link {
  color: var(--blue-2);
  font-size: 0.82rem;
  font-weight: 850;
}
.text-link span {
  font-size: 1rem;
  margin-left: 5px;
}
.news-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}
.news-card {
  background: #fff;
  border: 1px solid #e1e8ef;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.news-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}
.news-image {
  background: #dbe6ef;
  height: 204px;
  overflow: hidden;
}
.news-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  width: 100%;
}
.news-card:hover .news-image img {
  transform: scale(1.05);
}
.news-card > div {
  padding: 21px 20px 23px;
}
.news-label {
  color: #b47a13;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}
.news-card h3,
.news-card h2 {
  font-size: 1.22rem;
  font-weight: 790;
  letter-spacing: -0.04em;
  line-height: 1.22;
  margin: 9px 0;
}
.news-card h2 {
  font-size: 1.46rem;
}
.news-card h3 a:hover,
.news-card h2 a:hover {
  color: var(--teal);
}
.news-card p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.58;
}
.callout {
  background: linear-gradient(116deg, #0d315e, #126f70);
  color: #fff;
  overflow: hidden;
  padding: 70px 0;
  position: relative;
}
.callout:after {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
  height: 470px;
  position: absolute;
  right: -160px;
  top: -195px;
  width: 470px;
}
.callout-inner {
  align-items: center;
  display: grid;
  gap: 45px;
  grid-template-columns: 1.2fr 0.9fr auto;
  position: relative;
  z-index: 1;
}
.callout p:not(.eyebrow) {
  color: #d1e5e4;
  font-size: 0.92rem;
  margin: 0;
}
.gallery-section {
  padding-bottom: 105px;
}
.gallery-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}
.gallery-grid figure {
  border-radius: 15px;
  margin: 0;
  overflow: hidden;
  position: relative;
}
.gallery-item {
  background: #dbe4eb;
  border: 0;
  display: block;
  height: 100%;
  padding: 0;
  position: relative;
  width: 100%;
}
.gallery-item img {
  aspect-ratio: 1.22;
  object-fit: cover;
  transition: transform 0.38s;
  width: 100%;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-item:after {
  background: linear-gradient(transparent 48%, rgba(5, 19, 37, 0.55));
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 0.2s;
}
.gallery-item:hover:after {
  opacity: 1;
}
.gallery-zoom {
  align-items: center;
  background: #fff;
  border-radius: 50%;
  bottom: 14px;
  color: var(--ink);
  display: flex;
  font-size: 1.4rem;
  height: 37px;
  justify-content: center;
  opacity: 0;
  position: absolute;
  right: 14px;
  transform: translateY(8px);
  transition: 0.2s;
  z-index: 1;
  width: 37px;
}
.gallery-item:hover .gallery-zoom {
  opacity: 1;
  transform: translateY(0);
}
.gallery-grid figcaption {
  color: #526177;
  font-size: 0.74rem;
  font-weight: 700;
  margin-top: 8px;
}
.site-footer {
  background: #07172b;
  color: #d9e5f2;
  padding-top: 58px;
}
.footer-grid {
  display: grid;
  gap: 50px;
  grid-template-columns: 1.8fr 1fr 1fr;
}
.brand-footer {
  background: #fff;
  border-radius: 13px;
  padding: 7px 10px;
  width: max-content;
}
.brand-footer .brand-logo {
  height: 45px;
  width: 225px;
}
.footer-grid p {
  color: #9bb0c7;
  font-size: 0.84rem;
  max-width: 390px;
}
.footer-grid h3 {
  color: #f4c76c;
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.footer-grid a:not(.brand) {
  color: #b7c8dc;
  display: block;
  font-size: 0.84rem;
  margin: 9px 0;
}
.footer-grid a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #8ca3bd;
  font-size: 0.73rem;
  margin-top: 30px;
  padding: 20px 0;
}
.page-hero,
.article-hero {
  background:
    radial-gradient(circle at 78% 25%, #dceff1, transparent 22%), #f3f6f8;
  border-bottom: 1px solid #e1e8ee;
  padding: 82px 0;
}
.page-hero h1,
.article-hero h1 {
  font-size: clamp(2.7rem, 4.8vw, 4.7rem);
  margin-bottom: 6px;
}
.page-hero p:not(.eyebrow) {
  color: var(--muted);
  margin: 12px 0 0;
  max-width: 540px;
}
.reading-content {
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(0, 2fr) minmax(240px, 0.7fr);
  padding: 75px 0;
}
.reading-content article,
.article-copy {
  font-size: 1rem;
  line-height: 1.86;
}
.reading-content article p,
.article-copy p {
  margin: 0 0 1.45em;
}
.reading-content article h2,
.reading-content article h3,
.article-copy h2,
.article-copy h3 {
  font-size: 1.55rem;
  letter-spacing: -0.04em;
  line-height: 1.2;
}
.reading-content article img,
.article-copy img {
  border-radius: 15px;
  height: auto;
  margin: 22px auto;
  max-width: 100%;
}
.reading-content aside {
  border-left: 3px solid var(--gold);
  height: max-content;
  padding: 4px 0 4px 21px;
}
.reading-content aside h2 {
  font-size: 1.22rem;
}
.reading-content aside a {
  color: var(--blue-2);
  display: block;
  font-size: 0.87rem;
  margin: 8px 0;
}
.board-hero {
  background:
    radial-gradient(circle at 70% 30%, #dceef0, transparent 27%), #f6f5f0;
}
.board-section {
  min-height: 360px;
}
.board-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, 1fr);
}
.board-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.board-photo {
  align-items: center;
  background: linear-gradient(145deg, #dce8ef, #b9d2d9);
  display: flex;
  height: 270px;
  justify-content: center;
  overflow: hidden;
}
.board-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.board-photo span {
  align-items: center;
  background: #0c315c;
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: 2.5rem;
  font-weight: 800;
  height: 100px;
  justify-content: center;
  width: 100px;
}
.board-card > div:last-child {
  padding: 18px;
}
.board-card p {
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  margin: 0;
  text-transform: uppercase;
}
.board-card h2 {
  font-size: 1.15rem;
  letter-spacing: -0.035em;
  line-height: 1.2;
  margin: 7px 0 0;
}
.empty-state {
  color: var(--muted);
  padding: 20px 0;
}
.public-empty {
  background: #fafbf9;
  border: 1px dashed #c9d8dd;
  border-radius: 22px;
  padding: 65px 25px;
  text-align: center;
}
.public-empty span {
  color: var(--gold);
  font-size: 1.8rem;
}
.public-empty h2 {
  color: var(--ink);
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  margin: 8px 0;
}
.news-list {
  grid-template-columns: repeat(3, 1fr);
}
.article-hero {
  background: linear-gradient(118deg, #edf5f5, #fff);
}
.article-hero h1 {
  max-width: 900px;
}
.back-link {
  color: var(--blue-2);
  font-size: 0.82rem;
  font-weight: 800;
}
.article-body {
  padding: 55px 0 95px;
}
.article-cover {
  aspect-ratio: 2.15;
  border-radius: 20px;
  box-shadow: var(--shadow);
  margin: 0 auto 46px;
  max-width: 940px;
  object-fit: cover;
  width: 100%;
}
.article-copy {
  margin: auto;
  max-width: 760px;
}
.article-copy a {
  color: var(--blue-2);
  text-decoration: underline;
}
.gallery-all {
  grid-template-columns: repeat(4, 1fr);
}
.modal,
.lightbox {
  display: none;
  inset: 0;
  position: fixed;
  z-index: 50;
}
.modal.open,
.lightbox.open {
  display: block;
}
.modal-backdrop,
.lightbox-backdrop {
  background: rgba(4, 15, 30, 0.72);
  border: 0;
  inset: 0;
  position: absolute;
  width: 100%;
}
.modal-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  left: 50%;
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 35px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(520px, calc(100% - 32px));
}
.modal-card h2 {
  font-size: 2.05rem;
  letter-spacing: -0.05em;
  line-height: 1.05;
  margin: 8px 0;
}
.modal-card > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.9rem;
}
.modal-close,
.lightbox-close {
  background: transparent;
  border: 0;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
  position: absolute;
  right: 14px;
  top: 11px;
}
.lightbox-content {
  left: 50%;
  max-height: calc(100vh - 50px);
  max-width: min(1060px, calc(100vw - 38px));
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  width: max-content;
}
.lightbox-content img {
  border-radius: 14px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  max-height: calc(100vh - 100px);
  max-width: 100%;
  object-fit: contain;
}
.lightbox-content p {
  color: #fff;
  font-size: 0.8rem;
  margin: 11px 0;
}
.lightbox-close {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  height: 38px;
  right: -13px;
  top: -13px;
  width: 38px;
  z-index: 1;
}
.form-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
}
.form-grid label {
  color: #33465c;
  font-size: 0.78rem;
  font-weight: 800;
}
.form-grid input,
.form-grid textarea,
.form-grid select {
  background: #fff;
  border: 1px solid #cad7e4;
  border-radius: 10px;
  color: var(--ink);
  font-size: 0.92rem;
  margin-top: 6px;
  padding: 11px 12px;
  width: 100%;
}
.form-grid textarea {
  resize: vertical;
}
.form-grid .wide {
  grid-column: 1/-1;
}
.checkbox {
  align-items: center;
  display: flex;
  gap: 8px;
  margin-top: 21px;
}
.checkbox input {
  margin: 0;
  width: auto;
}
.flash {
  background: #eaf8ee;
  border-left: 4px solid #2f9955;
  border-radius: 8px;
  color: #1d6b3a;
  margin: 17px auto;
  padding: 11px 15px;
  width: min(1180px, calc(100% - 48px));
}
.flash-error {
  background: #fff0f0;
  border-color: #bb3f47;
  color: #922c33;
}
.login-body {
  align-items: center;
  background:
    radial-gradient(circle at 20% 10%, #2c837d, transparent 30%),
    linear-gradient(135deg, #07172b, #123b6c);
  display: flex;
  justify-content: center;
  min-height: 100vh;
}
.login-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
  padding: 38px;
  width: min(435px, calc(100% - 32px));
}
.login-card h1 {
  font-size: 2rem;
  letter-spacing: -0.05em;
  margin: 35px 0 0;
}
.admin-body {
  background: #f4f7fa;
  color: #182a43;
}
.admin-top {
  align-items: center;
  background: #0a1f3a;
  color: #fff;
  display: flex;
  justify-content: space-between;
  min-height: 62px;
  padding: 0 max(24px, calc((100% - 1320px) / 2));
}
.admin-top > a {
  font-size: 1.08rem;
  font-weight: 850;
}
.admin-top > a span {
  color: var(--gold);
}
.admin-top nav {
  align-items: center;
  display: flex;
  gap: 20px;
}
.admin-top nav a,
.admin-top nav button {
  background: transparent;
  border: 0;
  color: #d5e1ee;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0;
}
.admin-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  margin: auto;
  max-width: 1320px;
  min-height: calc(100vh - 62px);
}
.admin-layout aside {
  background: #fff;
  border-right: 1px solid #e1e8ef;
  padding: 22px 14px;
}
.admin-layout aside a {
  border-radius: 10px;
  color: #607188;
  display: block;
  font-size: 0.85rem;
  font-weight: 750;
  margin: 3px 0;
  padding: 10px 12px;
}
.admin-layout aside a:hover,
.admin-layout aside a.active {
  background: #e9f1f8;
  color: #123e72;
}
.admin-main {
  padding: 42px;
}
.admin-main h1 {
  font-size: 2.25rem;
  letter-spacing: -0.06em;
  line-height: 1.05;
  margin: 6px 0 26px;
}
.admin-intro {
  color: var(--muted);
  margin-top: -15px;
  max-width: 650px;
}
.admin-section {
  background: #fff;
  border: 1px solid #dfe7ef;
  border-radius: 16px;
  margin: 24px 0;
  padding: 25px;
}
.admin-section h2 {
  font-size: 1.3rem;
  letter-spacing: -0.04em;
  margin-top: 0;
}
.form-panel {
  max-width: 830px;
}
.stat-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  max-width: 880px;
}
.stat-grid > div {
  background: #fff;
  border: 1px solid #dfe7ef;
  border-radius: 16px;
  padding: 24px;
}
.stat-grid strong {
  color: var(--blue-2);
  display: block;
  font-size: 2.3rem;
  font-weight: 850;
  letter-spacing: -0.07em;
}
.stat-grid span {
  color: var(--muted);
  font-size: 0.78rem;
}
.admin-list {
  display: grid;
  gap: 1px;
}
.admin-list article,
.board-admin-list article {
  align-items: center;
  border-bottom: 1px solid #e8edf3;
  display: grid;
  gap: 15px;
  grid-template-columns: 70px 1fr 95px;
  padding: 11px 0;
}
.admin-list img,
.placeholder {
  background: #dce8f5;
  border-radius: 9px;
  height: 54px;
  object-fit: cover;
  width: 70px;
}
.placeholder {
  align-items: center;
  color: var(--blue);
  display: flex;
  font-size: 1.5rem;
  font-weight: 800;
  justify-content: center;
}
.admin-list strong,
.board-admin-list strong {
  font-size: 0.9rem;
}
.admin-list p,
.board-admin-list p {
  color: #697789;
  font-size: 0.78rem;
  margin: 3px 0;
}
.admin-list > article > div:last-child,
.board-admin-list > article > div:last-child {
  align-items: end;
  display: flex;
  flex-direction: column;
  font-size: 0.77rem;
  gap: 6px;
}
.status {
  background: #f0f2f5;
  border-radius: 999px;
  color: #5b6573;
  padding: 3px 7px;
}
.status-ok {
  background: #e5f7e9;
  color: #21793b;
}
.board-avatar {
  align-items: center;
  background: #dce8ef;
  border-radius: 50%;
  display: flex;
  height: 58px;
  justify-content: center;
  overflow: hidden;
  width: 58px;
}
.board-avatar img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.board-avatar span {
  color: var(--blue);
  font-size: 1.3rem;
  font-weight: 850;
}
.board-admin-list article {
  grid-template-columns: 58px 1fr 110px;
}
.board-admin-list form {
  margin: 0;
}
.board-admin-list button {
  background: none;
  border: 0;
  color: #a7353d;
  font-size: 0.77rem;
  padding: 0;
}
.admin-gallery {
  grid-template-columns: repeat(5, 1fr);
}
.admin-gallery figcaption {
  opacity: 1;
}
.table-wrap {
  overflow: auto;
}
.table-wrap table {
  border-collapse: collapse;
  font-size: 0.84rem;
  width: 100%;
}
.table-wrap th {
  text-align: left;
}
.table-wrap th,
.table-wrap td {
  border-bottom: 1px solid #e4ebf3;
  padding: 12px 9px;
  vertical-align: top;
}
.table-wrap td a {
  color: var(--blue-2);
}
.table-wrap select {
  border: 1px solid #cad6e4;
  border-radius: 7px;
  padding: 6px;
}
.tab-links {
  border-bottom: 1px solid #dce5ee;
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}
.tab-links a {
  color: #607089;
  font-size: 0.84rem;
  font-weight: 750;
  padding: 9px 2px;
}
.tab-links a.active {
  border-bottom: 2px solid var(--teal);
  color: var(--teal);
}
@media (max-width: 920px) {
  .nav-row {
    gap: 16px;
  }
  .site-nav {
    gap: 13px;
  }
  .site-nav a {
    font-size: 0.75rem;
  }
  .hero-inner {
    gap: 25px;
  }
  .hero-art {
    transform: scale(0.87);
    transform-origin: center right;
  }
  .board-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .admin-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 720px) {
  .shell {
    width: min(100% - 30px, 1180px);
  }
  .topline {
    display: none;
  }
  .nav-row {
    flex-wrap: wrap;
    min-height: 76px;
    padding: 14px 0;
  }
  .brand {
    min-width: 0;
  }
  .brand-logo {
    height: 45px;
    width: 215px;
  }
  .nav-toggle {
    display: block;
    margin-left: auto;
  }
  .join-trigger {
    order: 3;
    width: 100%;
  }
  .site-nav {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    gap: 0;
    order: 4;
  }
  .site-nav.open {
    display: flex;
  }
  .site-nav a {
    border-top: 1px solid var(--line);
    padding: 11px 0;
    width: 100%;
  }
  .site-nav a:after {
    display: none;
  }
  .hero {
    min-height: auto;
  }
  .hero-inner {
    display: block;
    min-height: 0;
    padding: 66px 0 35px;
  }
  .hero h1 {
    font-size: 3.15rem;
  }
  .hero-copy > p:not(.eyebrow) {
    font-size: 0.95rem;
  }
  .hero-trust {
    gap: 17px;
    margin-top: 34px;
  }
  .hero-art {
    height: 285px;
    margin-top: 12px;
    transform: scale(0.68);
    transform-origin: top center;
    width: 150%;
  }
  .impact-strip {
    border-radius: 0;
    display: block;
  }
  .impact-strip > div {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    padding: 16px;
  }
  .impact-strip > div:last-child {
    border: 0;
  }
  .section {
    padding: 58px 0;
  }
  .news-section {
    padding-top: 62px;
  }
  .section-heading {
    align-items: start;
    gap: 16px;
  }
  .section-heading h2 {
    font-size: 2.3rem;
  }
  .news-grid,
  .news-list {
    grid-template-columns: 1fr;
  }
  .news-image {
    height: 210px;
  }
  .callout {
    padding: 52px 0;
  }
  .callout-inner {
    gap: 24px;
    grid-template-columns: 1fr;
  }
  .callout .button {
    width: max-content;
  }
  .gallery-grid,
  .gallery-all {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    gap: 10px;
  }
  .gallery-grid figcaption {
    display: none;
  }
  .footer-grid {
    gap: 25px;
    grid-template-columns: 1fr;
  }
  .page-hero,
  .article-hero {
    padding: 56px 0;
  }
  .page-hero h1,
  .article-hero h1 {
    font-size: 3.1rem;
  }
  .reading-content {
    gap: 35px;
    grid-template-columns: 1fr;
    padding: 48px 0;
  }
  .board-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .board-photo {
    height: 210px;
  }
  .article-body {
    padding: 35px 0 64px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-grid .wide {
    grid-column: auto;
  }
  .modal-card {
    padding: 29px 22px;
  }
  .lightbox-content {
    max-width: calc(100vw - 26px);
  }
  .lightbox-close {
    right: 3px;
    top: -44px;
  }
  .admin-layout {
    grid-template-columns: 1fr;
  }
  .admin-layout aside {
    border-bottom: 1px solid #e0e7ef;
    border-right: 0;
    display: flex;
    gap: 4px;
    overflow: auto;
    padding: 10px;
  }
  .admin-layout aside a {
    white-space: nowrap;
  }
  .admin-main {
    padding: 26px 15px;
  }
  .stat-grid {
    grid-template-columns: 1fr;
  }
  .admin-list article {
    grid-template-columns: 55px 1fr;
  }
  .admin-list img,
  .placeholder {
    height: 45px;
    width: 55px;
  }
  .admin-list > article > div:last-child {
    align-items: start;
    flex-direction: row;
    grid-column: 2;
  }
  .board-admin-list article {
    grid-template-columns: 52px 1fr;
  }
  .board-admin-list > article > div:last-child {
    align-items: start;
    flex-direction: row;
    grid-column: 2;
  }
  .board-avatar {
    height: 52px;
    width: 52px;
  }
  .admin-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .admin-section {
    padding: 17px;
  }
  .admin-top {
    padding: 0 15px;
  }
  .table-wrap {
    margin: 0 -17px;
  }
  .table-wrap table {
    min-width: 720px;
  }
}
