/* ========== top banner ========== */
.top-banner {
  position: relative;
  background: #003366;
  color: #fff;
  padding: 10px 48px 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  text-align: center;
}
.top-banner-icon { font-weight: bold; }
.top-banner a { color: #fff; text-decoration: underline; display: inline-block; }
.top-banner a:hover { text-decoration: none; }
.top-banner-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0 8px;
  line-height: 1;
}
.top-banner-close:hover { opacity: .85; }

/* ========== hero ========== */
.hero {
  position: relative;
  background: #003366;
  min-height: 320px;
  z-index: 2;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #003366;
  background-size: 400px 400px;
  opacity: .95;
}
.hero-watermark {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: bold;
  color: rgba(255,255,255,0.12);
  letter-spacing: 0.05em;
  max-width: 90%;
  overflow: hidden;
  text-align: right;
  white-space: nowrap;
  pointer-events: none;
}
.hero-content {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 24px 56px;
  text-align: center;
}
.hero h1 {
  margin: 0 0 28px;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.hero-line1 { color: #fff; display: block; }
.hero-line2 { color: #6b5b95; display: block; }
.hero-actions { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px; }
.hero-label { color: #fff; font-size: 1rem; }
.hero-actions select {
  padding: 10px 14px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 0;
  min-width: 200px;
  max-width: 100%;
  width: 280px;
  background: #fff;
}
.btn-go {
  padding: 10px 28px;
  background: #003366;
  color: #fff;
  border: 2px solid #fff;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
}
.btn-go:hover { background: #004080; }

/* ========== hero 首屏入场（仅 .hero-anim） ========== */
@media (prefers-reduced-motion: no-preference) {
  .hero-anim .hero-bg {
    transform-origin: center center;
    animation: hero-bg-drift 22s ease-in-out infinite alternate;
  }
  .hero-anim .hero-watermark {
    opacity: 0;
    animation: hero-watermark-in 1s ease 0.15s forwards;
  }
  .hero-anim .hero-line1 {
    opacity: 0;
    animation: hero-line-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
  .hero-anim .hero-line2 {
    opacity: 0;
    animation: hero-line-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
  }
  .hero-anim .hero-actions {
    opacity: 0;
    animation: hero-line-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.24s forwards;
  }
}
@keyframes hero-line-in {
  from {
    opacity: 0;
    transform: translateY(0.85rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes hero-watermark-in {
  from {
    opacity: 0;
    transform: translateY(-50%) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}
@keyframes hero-bg-drift {
  from { transform: scale(1); }
  to { transform: scale(1.03); }
}

/* ========== focus ========== */
.focus {
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
    url('../image/hero-pattern.svg') center / 420px repeat,
    #f3f7fb;
  padding: 40px 24px;
  border-top: 1px solid #eee;
}
.focus-inner { max-width: 1100px; margin: 0 auto; padding: 0; }
.focus h2 { font-size: 1rem; color: #2d6a2d; margin: 0 0 8px; text-transform: uppercase; letter-spacing: .05em; font-weight: bold; }
.focus h3 { font-size: 1.5rem; margin: 0 0 12px; }
.focus h3 a { color: #003366; text-decoration: none; }
.focus h3 a:hover { text-decoration: underline; }
.focus p { margin: 0; color: #444; line-height: 1.6; }

/* ========== news + events slider ========== */
.news-events {
  background: #ededed;
  border-top: 1px solid #e1e1e1;
  padding: 36px 24px 44px;
}
.news-events-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.news-events-tabs {
  display: flex;
  gap: 28px;
  border-bottom: 2px solid #ddd;
  margin-bottom: 30px;
}
.news-events-tab {
  border: none;
  background: none;
  color: #151515;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .02em;
  padding: 0 0 12px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
}
.news-events-tab.is-active {
  color: #007cae;
  border-bottom-color: #00a8d5;
}
.news-events-panel {
  display: none;
  grid-template-columns: 260px 1fr;
  gap: 26px;
  align-items: stretch;
}
.news-events-panel.is-active {
  display: grid;
}
.news-events-panel[hidden] {
  display: none !important;
}
.news-events-info {
  padding-top: 20px;
}
.news-events-info h2 {
  margin: 0 0 18px;
  font-size: 36px;
  line-height: 1.05;
  color: #131313;
}
.news-events-info p {
  margin: 0 0 24px;
  color: #4b4b4b;
  font-size: 18px;
  line-height: 1.45;
}
.news-events-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: .02em;
}
.news-events-more::after {
  content: ">";
  font-size: 15px;
}
.news-events-slider {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}
.news-events-viewport {
  overflow: hidden;
  width: 100%;
}
.news-events-track {
  display: flex;
  gap: 14px;
  transition: transform .35s ease;
  will-change: transform;
}
.news-card {
  min-width: calc((100% - 28px) / 3);
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 2px 7px rgba(0,0,0,.08);
}
.news-card-link {
  color: inherit;
  text-decoration: none;
  display: block;
}
.news-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.news-card-date {
  display: inline-block;
  margin: 0 0 8px 10px;
  margin-top: -14px;
  background: #00b6d8;
  color: #00262e;
  font-weight: 700;
  font-size: 12px;
  padding: 3px 8px;
  position: relative;
}
.news-card-title {
  margin: 0;
  padding: 6px 12px 20px;
  color: #222;
  font-size: 28px;
  line-height: 1.22;
  font-weight: 500;
}
.news-events-arrow {
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  background: #4f4f4f;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  flex-shrink: 0;
  box-sizing: border-box;
    margin-bottom: 8px;
    padding-bottom: 5px;
}
.news-events-arrow:hover { background: #2f2f2f; }
.news-events-arrow:disabled { opacity: .35; cursor: not-allowed; }

/* ========== numbers ========== */
.numbers {
  position: relative;
  padding: 64px 28px 56px;
  background: #0a1f4d;
  color: #fff;
  overflow: hidden;
}
.numbers-decor {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 31, 77, 0.92) 0%, rgba(10, 31, 77, 0.55) 45%, rgba(10, 31, 77, 0.55) 55%, rgba(10, 31, 77, 0.92) 100%),
    url('../image/numbers-network.svg') center / cover no-repeat;
  pointer-events: none;
}
.numbers-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}
.numbers-heading {
  margin: 0 0 48px;
  display: flex;
  justify-content: center;
}
.numbers-heading-badge {
  display: inline-block;
  padding: 14px 36px;
  background: #00c4b4;
  color: #0a1f4d;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.numbers-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.numbers-viewport::-webkit-scrollbar { display: none; }
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: 28px 40px;
  min-width: min(100%, 960px);
  margin: 0 auto;
  max-width: 1040px;
}
.numbers-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px 8px 8px;
  scroll-snap-align: start;
}
.numbers-item .num {
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  font-weight: 700;
  line-height: 1.05;
  color: #00c4b4;
  display: block;
}
.numbers-rule {
  display: block;
  width: 52px;
  height: 2px;
  margin: 14px 0 16px;
  background: #00c4b4;
  border-radius: 1px;
}
.numbers-item .label {
  font-size: 14px;
  line-height: 1.45;
  color: #fff;
  max-width: 220px;
  font-weight: 400;
}
.numbers-nav {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 44px;
}
.numbers-nav-btn {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  transition: background .2s ease, color .2s ease, opacity .2s ease;
}
.numbers-nav-btn:hover:not(:disabled) {
  background: #fff;
  color: #0a1f4d;
}
.numbers-nav-btn:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

/* ========== new members ========== */
/* ========== new members (hero + card) ========== */
.new-members {
  padding: 0;
  margin: 0;
  border-top: none;
  background: #d4ecf8;
}
.new-members-hero {
  position: relative;
  min-height: 380px;
  overflow: hidden;
}
.new-members-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.new-members-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}
.new-members-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 28px 64px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  min-height: 380px;
  box-sizing: border-box;
}
.new-members-card {
  max-width: 520px;
  background: #fff;
  padding: 44px 48px 42px;
  text-align: left;
  box-shadow: 0 16px 48px rgba(10, 40, 80, 0.14);
}
.new-members-title {
  margin: 0 0 16px;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.new-members-accent {
  display: block;
  width: 56px;
  height: 3px;
  background: #1e88c9;
  margin-bottom: 22px;
}
.new-members-lead {
  margin: 0 0 32px;
  color: #444;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}
.new-members-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111;
  text-decoration: none;
}
.new-members-cta::after {
  content: ">";
  font-size: 14px;
  font-weight: 700;
}
.new-members-cta:hover {
  color: #003366;
}

/* ========== responsive (首页区块) ========== */
@media (max-width: 992px) {
  .news-events-panel { grid-template-columns: 220px 1fr; gap: 18px; }
  .news-card { min-width: calc((100% - 14px) / 2); }
}
@media (max-width: 880px) {
  .numbers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
    min-width: 0;
    max-width: 100%;
  }
}
@media (max-width: 900px) {
  .news-events-panel { grid-template-columns: 1fr; gap: 20px; }
  .news-events-info { padding-top: 0; }
  .news-card { min-width: calc((100% - 14px) / 2); }
}
@media (max-width: 768px) {
  .hero { min-height: 280px; }
  .hero-content {
    padding: 36px max(20px, env(safe-area-inset-left)) 44px max(20px, env(safe-area-inset-right));
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
  .hero-actions select { width: 100%; min-width: 0; max-width: none; }
  .btn-go { width: 100%; max-width: none; min-height: 44px; }
  .focus { padding: 28px max(20px, env(safe-area-inset-left)) 32px max(20px, env(safe-area-inset-right)); }
  .focus h3 { font-size: 1.25rem; }
  .new-members-hero { min-height: 320px; }
  .new-members-inner {
    padding: 40px max(20px, env(safe-area-inset-left)) 36px max(20px, env(safe-area-inset-right));
    min-height: 280px;
    align-items: stretch;
  }
  .new-members-card { padding: 32px 24px 28px; max-width: 100%; width: 100%; }
  .news-events { padding: 28px max(20px, env(safe-area-inset-left)) 34px max(20px, env(safe-area-inset-right)); }
  .news-events-tabs { gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }
  .news-events-tab { font-size: 18px; min-height: 44px; padding: 4px 0 12px; }
  .news-events-panel { grid-template-columns: 1fr; }
  .news-events-info h2 { font-size: clamp(1.5rem, 7vw, 1.85rem); line-height: 1.1; }
  .news-events-info p { font-size: 16px; margin-bottom: 18px; }
  .news-card { min-width: 100%; }
  .news-card-title { font-size: 1.05rem; line-height: 1.35; padding: 4px 10px 16px; }
  .news-events-slider {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 14px 10px;
  }
  .news-events-viewport { grid-column: 1 / -1; grid-row: 1; width: 100%; min-width: 0; }
  .news-events-arrow.prev { grid-column: 1; grid-row: 2; justify-self: end; margin-bottom: 0; width: 44px; height: 44px; }
  .news-events-arrow.next { grid-column: 2; grid-row: 2; justify-self: start; margin-bottom: 0; width: 44px; height: 44px; }
  .numbers { padding: 48px max(20px, env(safe-area-inset-left)) 44px max(20px, env(safe-area-inset-right)); }
  .numbers-heading { margin-bottom: 28px; }
  .numbers-heading-badge {
    padding: 12px 20px;
    font-size: 0.75rem;
    line-height: 1.35;
    max-width: 100%;
    box-sizing: border-box;
    word-break: break-word;
  }
  /* 手机：横向滑动卡片，避免窄屏 2×2 挤压 */
  .numbers-inner {
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
  }
  .numbers-viewport {
    margin: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0 max(16px, env(safe-area-inset-left)) 0 max(16px, env(safe-area-inset-right));
    scroll-padding-inline: max(16px, env(safe-area-inset-left)) max(16px, env(safe-area-inset-right));
    outline: none;
    /* 卡片宽度用 cqw 相对本容器，避免 82vw 相对整页视口撑出右侧空白 */
    container-type: inline-size;
    container-name: numbers-strip;
  }
  .numbers-viewport:focus-visible {
    box-shadow: inset 0 0 0 2px rgba(0, 196, 180, 0.85);
    border-radius: 4px;
  }
  .numbers-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 16px;
    min-width: max-content;
    max-width: none;
    margin: 0;
    padding: 0;
    justify-content: flex-start;
  }
  .numbers-item {
    flex: 0 0 min(82vw, 300px);
    max-width: min(82vw, 300px);
    box-sizing: border-box;
    padding: 10px 12px 12px;
    scroll-snap-align: center;
    scroll-snap-stop: normal;
  }
  @supports (width: 1cqw) {
    .numbers-item {
      flex: 0 0 min(86cqw, 300px);
      max-width: min(86cqw, 300px);
    }
  }
  .numbers-item .label {
    max-width: none;
    font-size: 14px;
    line-height: 1.4;
    hyphens: auto;
    -webkit-hyphens: auto;
    overflow-wrap: break-word;
  }
  .numbers-nav {
    display: flex;
    margin-top: 28px;
    gap: 20px;
  }
  .numbers-nav-btn { width: 48px; height: 48px; min-width: 48px; min-height: 48px; }
}
@media (max-width: 600px) {
  .numbers-item .num { font-size: clamp(1.75rem, 8vw, 2.5rem); }
  .numbers-item .label { font-size: 13px; }
  .news-events-info h2 { font-size: 1.45rem; }
}
@media (max-width: 480px) {
  .top-banner {
    padding: 12px max(44px, calc(12px + env(safe-area-inset-right))) 12px max(16px, env(safe-area-inset-left));
    font-size: 13px;
    line-height: 1.4;
  }
  .top-banner a { text-align: center; }
  .top-banner-close { right: max(8px, env(safe-area-inset-right)); padding: 8px; min-width: 44px; min-height: 44px; }
  .hero { min-height: 240px; }
  .hero-content { padding: 24px max(16px, env(safe-area-inset-left)) 32px max(16px, env(safe-area-inset-right)); }
  .hero h1 { font-size: 1.25rem; margin-bottom: 18px; }
  .hero-watermark { font-size: clamp(2.5rem, 18vw, 3.5rem); right: 2%; }
  .focus { padding: 24px max(16px, env(safe-area-inset-left)) 28px max(16px, env(safe-area-inset-right)); }
  .new-members-hero { min-height: 260px; }
  .new-members-inner {
    padding: 28px max(16px, env(safe-area-inset-left)) 32px max(16px, env(safe-area-inset-right));
    min-height: 0;
  }
  .new-members-card { padding: 28px 20px 24px; }
  .new-members-art img { object-position: 70% center; }
  .new-members-title { font-size: 1.15rem; }
  .new-members-lead { font-size: 15px; margin-bottom: 24px; }
  .numbers { padding: 40px max(16px, env(safe-area-inset-left)) 40px max(16px, env(safe-area-inset-right)); }
  .numbers-viewport {
    padding: 0 max(12px, env(safe-area-inset-left)) 0 max(12px, env(safe-area-inset-right));
    scroll-padding-inline: max(12px, env(safe-area-inset-left)) max(12px, env(safe-area-inset-right));
  }
  .numbers-item {
    flex-basis: min(86vw, 280px);
    max-width: min(86vw, 280px);
  }
  @supports (width: 1cqw) {
    .numbers-item {
      flex-basis: min(88cqw, 280px);
      max-width: min(88cqw, 280px);
    }
  }
  .news-events { padding: 24px max(16px, env(safe-area-inset-left)) 28px max(16px, env(safe-area-inset-right)); }
  .news-events-tab { font-size: 16px; }
  .news-card-title { font-size: 0.98rem; }
}
@media (max-width: 360px) {
  .hero h1 { font-size: 1.1rem; }
  .focus h3 { font-size: 1.05rem; }
  .news-events-info h2 { font-size: 1.35rem; }
}

/* ========== 首页滚动入场（.reveal + IntersectionObserver 添加 .is-visible） ========== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(1.15rem);
    transition:
      opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* 数字区：容器不参与透明，避免子项被父级 opacity 压住 */
  .numbers-inner.reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .numbers-inner.reveal .numbers-heading,
  .numbers-inner.reveal .numbers-viewport {
    opacity: 0;
    transform: translateY(1rem);
    transition:
      opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .numbers-inner.reveal.is-visible .numbers-heading,
  .numbers-inner.reveal.is-visible .numbers-viewport {
    opacity: 1;
    transform: translateY(0);
  }
  .numbers-inner.reveal.is-visible .numbers-viewport {
    transition-delay: 0.12s;
  }

  /* 新闻卡片：区块显现后依次浮入 */
  .news-events-inner.reveal.is-visible .news-card {
    animation: home-card-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  }
  .news-events-inner.reveal.is-visible .news-card:nth-child(1) { animation-delay: 0.06s; }
  .news-events-inner.reveal.is-visible .news-card:nth-child(2) { animation-delay: 0.12s; }
  .news-events-inner.reveal.is-visible .news-card:nth-child(3) { animation-delay: 0.18s; }
  .news-events-inner.reveal.is-visible .news-card:nth-child(4) { animation-delay: 0.24s; }
  .news-events-inner.reveal.is-visible .news-card:nth-child(5) { animation-delay: 0.3s; }
  .news-events-inner.reveal.is-visible .news-card:nth-child(6) { animation-delay: 0.36s; }
}
@keyframes home-card-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible,
  .numbers-inner.reveal .numbers-heading,
  .numbers-inner.reveal .numbers-viewport {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
  .news-events-inner.reveal .news-card {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-anim .hero-bg {
    animation: none !important;
    transform: none !important;
  }
  .hero-anim .hero-line1,
  .hero-anim .hero-line2,
  .hero-anim .hero-actions,
  .hero-anim .hero-watermark {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }
  .hero-anim .hero-watermark {
    transform: translateY(-50%) !important;
  }
}

/* ========== inner page content ========== */
.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px max(24px, env(safe-area-inset-left)) 60px max(24px, env(safe-area-inset-right));
  overflow-wrap: break-word;
}
.page-content h1 { font-size: 1.75rem; color: #003366; margin: 0 0 24px; }
.page-content h2 { font-size: 1.25rem; color: #003366; margin: 32px 0 12px; padding-top: 8px; border-top: 1px solid #eee; }
.page-content h2:first-of-type { border-top: none; padding-top: 0; margin-top: 24px; }
.page-content h3 { font-size: 1.1rem; color: #333; margin: 20px 0 8px; }
.page-content h4 { font-size: 1rem; color: #555; margin: 16px 0 6px; }
.page-content p { margin: 0 0 16px; line-height: 1.6; color: #444; }
.page-content ul { margin: 0 0 16px; padding-left: 24px; line-height: 1.7; }
.page-content a { color: #003366; }
.page-content .breadcrumb { font-size: 14px; color: #666; margin-bottom: 20px; }
.page-content .breadcrumb a { color: #003366; text-decoration: none; }
.page-content .breadcrumb a:hover { text-decoration: underline; }
.page-jump { margin-bottom: 28px; padding: 16px 20px; background: #f5f5f5; border-left: 4px solid #003366; }
.page-jump p { margin: 0 0 8px; font-size: 14px; color: #666; }
.page-jump a { margin-right: 16px; font-weight: 500; }
.page-overview { background: #f8f9fa; border: 1px solid #e0e0e0; padding: 24px; margin: 24px 0; }
.page-overview h3 { margin-top: 0; border-top: none; }
.page-overview dl { margin: 0; }
.page-overview dt { font-weight: 600; color: #333; margin-top: 14px; font-size: 14px; }
.page-overview dt:first-child { margin-top: 0; }
.page-overview dd { margin: 4px 0 0; color: #555; font-size: 14px; line-height: 1.5; }
.page-overview dd a { font-weight: 500; }
.page-mission { background: #003366; color: #fff; padding: 24px; margin: 24px 0; }
.page-mission p { color: #fff; margin: 0; font-size: 1.1rem; line-height: 1.6; }
.page-mission a { color: #fff; text-decoration: underline; }
.page-roles-list { list-style: none; padding-left: 0; }
.page-roles-list li { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #eee; }
.page-roles-list li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.page-roles-list .role-more { font-size: 14px; margin-top: 8px; }
.page-office { border: 1px solid #ddd; padding: 24px; margin: 24px 0; background: #fafafa; }
.page-office h3 { margin-top: 0; color: #003366; }
.page-office .office-address { font-style: normal; margin: 8px 0; }
.page-office ul { margin: 12px 0 0; font-size: 14px; }
.page-timeline-decade { margin: 28px 0; padding-bottom: 28px; border-bottom: 1px solid #eee; }
.page-timeline-decade:last-child { border-bottom: none; }
.page-timeline-decade h3 { color: #003366; margin-bottom: 12px; }
.page-timeline-decade p { margin: 0 0 10px; }
.page-content .link-block { display: inline-block; margin-top: 12px; font-weight: 600; }

/* ========== about banner ========== */
.about-banner {
  width: 100%;
  height: clamp(220px, 34vw, 360px);
  background:
    linear-gradient(rgba(10, 31, 77, 0.35), rgba(10, 31, 77, 0.35)),
    url('../images/new-members-hero.svg') center / cover no-repeat;
  border-bottom: 1px solid #e6ebf0;
}
.partner-banner {
  background:
    linear-gradient(rgba(10, 31, 77, 0.42), rgba(10, 31, 77, 0.38)),
    url('../images/news-card-1.svg') center / cover no-repeat;
}
.area-banner {
  background:
    linear-gradient(rgba(10, 31, 77, 0.46), rgba(10, 31, 77, 0.4)),
    url('../images/news-card-3.svg') center / cover no-repeat;
}
.news-banner-v2 {
  background:
    linear-gradient(rgba(10, 31, 77, 0.5), rgba(10, 31, 77, 0.42)),
    url('../images/news-card-2.svg') center / cover no-repeat;
}
.join-banner {
  background:
    linear-gradient(rgba(10, 31, 77, 0.5), rgba(10, 31, 77, 0.42)),
    url('../images/news-card-1.svg') center / cover no-repeat;
}
.about-banner-inner {
  max-width: 1240px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 max(28px, env(safe-area-inset-left)) 0 max(28px, env(safe-area-inset-right));
  color: #fff;
}
.about-banner-kicker {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.92;
}
.about-banner-inner h1 {
  margin: 0 0 10px;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.2;
}
.about-banner-inner p {
  margin: 0;
  max-width: 58ch;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}
.about-quick-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.about-quick-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 14px;
  border: 1px solid #d5deea;
  border-radius: 999px;
  background: #f7faff;
  color: #0b4f8a;
  text-decoration: none;
  font-size: 14px;
}
.about-quick-nav a:hover {
  background: #eaf3ff;
}
.about-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}
.about-panel {
  border: 1px solid #e5eaf1;
  border-radius: 8px;
  background: #fff;
  padding: 18px 18px 16px;
}
.about-panel h3 {
  margin: 0 0 8px;
  color: #0b4f8a;
  font-size: 1rem;
}
.about-panel p {
  margin: 0;
  color: #44566c;
  font-size: 15px;
  line-height: 1.7;
}
.about-panel-responsibilities ul {
  margin: 0;
  padding-left: 18px;
}
.about-panel-responsibilities li {
  margin-bottom: 8px;
}
.org-chart {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.org-item {
  background: #fff;
  border: 1px solid #dfe7f2;
  border-radius: 8px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.org-item strong {
  color: #0d4d85;
}
.org-item span {
  color: #4a5b70;
  font-size: 14px;
  line-height: 1.6;
}
.about-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.about-contact-card {
  border: 1px solid #dfe7f2;
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}
.about-contact-card h3 {
  margin: 0 0 10px;
  color: #0b4f8a;
}
.about-contact-card p {
  margin: 0 0 10px;
}
.about-contact-card ul {
  margin: 0;
  padding-left: 18px;
}

/* ========== members & partners page ========== */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.partner-list {
  margin: 10px 0 0;
  padding-left: 18px;
}
.partner-list li {
  margin-bottom: 8px;
}
.partner-steps {
  margin: 14px 0 0;
  padding-left: 20px;
}
.partner-steps li {
  margin-bottom: 10px;
  line-height: 1.72;
}
.partner-cta {
  margin-top: 22px;
  padding: 22px 24px;
  border: 1px solid #d7e2f0;
  border-radius: 10px;
  background: linear-gradient(180deg, #f8fbff 0%, #f2f7fd 100%);
}
.partner-cta strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: #0b4f8a;
}
.partner-cta p {
  margin: 0 0 14px;
  color: #455b73;
}
.partner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 6px;
  background: #0b5ea8;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.partner-btn:hover {
  background: #094c88;
}

/* ========== key standardization areas page ========== */
.area-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.area-card {
  border: 1px solid #e1e8f2;
  border-radius: 10px;
  background: #fff;
  padding: 18px;
}
.area-card h3 {
  margin: 0 0 8px;
  color: #0c4f88;
  font-size: 1rem;
}
.area-card p {
  margin: 0;
  color: #465b73;
  font-size: 15px;
  line-height: 1.72;
}
.search-demo {
  border: 1px solid #dbe5f1;
  border-radius: 10px;
  background: linear-gradient(180deg, #f9fbff 0%, #f3f8fe 100%);
  padding: 18px;
}
.search-demo label {
  display: block;
  margin-bottom: 6px;
  color: #244a70;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.search-demo input,
.search-demo select {
  width: 100%;
  min-height: 40px;
  margin-bottom: 12px;
  border: 1px solid #cfdceb;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 14px;
  color: #21394f;
  background: #fff;
}
.search-demo button {
  min-height: 40px;
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  background: #0b5ea8;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.search-demo button:hover {
  background: #094c88;
}
.releases {
  margin-top: 20px;
  border: 1px solid #dce5f1;
  border-radius: 10px;
  background: #fff;
  padding: 18px;
}
.releases h2 {
  margin-top: 0 !important;
}
.releases ul {
  margin: 10px 0 0;
  padding-left: 20px;
}
.releases li {
  margin-bottom: 8px;
  line-height: 1.7;
}

/* ========== news & events page v2 ========== */
.news-page-v2 .page-wrap > h2,
.news-page-v2 .news-section > h2 {
  scroll-margin-top: 96px;
}
.news-page-v2 .news-section + .news-section {
  margin-top: 30px;
}
.news-quick-nav {
  margin-bottom: 24px;
}
.news-page-v2 .page-lead {
  margin: 0 0 24px;
  max-width: 78ch;
  color: #44566c;
  line-height: 1.76;
}
.news-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}
.news-page-v2 .about-panel {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.news-page-v2 .about-panel:hover {
  transform: translateY(-1px);
  border-color: #d3dfee;
  box-shadow: 0 10px 22px rgba(9, 49, 95, 0.07);
}
.news-note-panel {
  margin-top: 2px;
}
.news-page-v2 .news-list-v2 {
  list-style: none;
  margin: 0;
  padding: 0;
}
.news-page-v2 .news-list-v2 .news-item {
  margin-bottom: 14px;
  padding: 14px 16px;
  border: 1px solid #dfe8f2;
  border-radius: 10px;
  background: #fff;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}
.news-page-v2 .news-list-v2 .news-item:last-child {
  margin-bottom: 0;
}
.news-page-v2 .news-list-v2 .news-item:hover {
  transform: translateY(-1px);
  border-color: #d0ddee;
  box-shadow: 0 8px 20px rgba(12, 57, 107, 0.08);
}
.news-page-v2 .news-list-v2 .news-title {
  margin: 0 0 6px;
  border: 0;
  padding: 0;
  font-size: 1.06rem;
  line-height: 1.45;
}
.news-page-v2 .news-list-v2 .news-title a {
  color: #0b4f8a;
  text-decoration: none;
}
.news-page-v2 .news-list-v2 .news-title a:hover {
  text-decoration: underline;
}
.news-page-v2 .news-list-v2 .news-excerpt {
  margin: 0;
  color: #475a70;
  line-height: 1.72;
}
.events-card {
  border: 1px solid #dce5f1;
  border-radius: 10px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(10, 54, 103, 0.06);
}
.event-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  font-size: 14px;
}
.event-table th,
.event-table td {
  border: 1px solid #dfe7f2;
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.event-table th {
  background: #f4f8fd;
  color: #214c73;
  font-weight: 700;
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.media-card {
  border: 1px solid #dce5f1;
  border-radius: 10px;
  background: #fff;
  padding: 16px;
  color: #465b73;
  line-height: 1.65;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.media-card:hover {
  transform: translateY(-1px);
  border-color: #d0dcec;
  box-shadow: 0 8px 18px rgba(11, 60, 111, 0.08);
}
.media-card strong {
  display: inline-block;
  margin-bottom: 4px;
  color: #0b4f8a;
}
.news-sub-form {
  border: 1px solid #dbe5f1;
  border-radius: 10px;
  background: linear-gradient(180deg, #f9fbff 0%, #f3f8fe 100%);
  padding: 18px;
  max-width: 560px;
  box-shadow: 0 8px 20px rgba(10, 54, 103, 0.06);
}
.news-sub-form label {
  display: block;
  margin-bottom: 6px;
  color: #244a70;
  font-size: 13px;
  font-weight: 600;
}
.news-sub-form input[type="email"] {
  width: 100%;
  min-height: 40px;
  border: 1px solid #cfdceb;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 14px;
  color: #21394f;
  background: #fff;
}
.news-sub-form input[type="email"]:focus {
  border-color: #2c74b3;
  box-shadow: 0 0 0 3px rgba(44, 116, 179, 0.14);
  outline: none;
}
.news-sub-form button {
  margin-top: 12px;
  min-height: 40px;
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  background: #0b5ea8;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.news-sub-form button:hover {
  background: #094c88;
}
.news-sub-form button:active {
  transform: translateY(1px);
}
.news-form-note {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.75rem;
}

/* ========== join & collaborate page ========== */
.join-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.join-section + .join-section {
  margin-top: 28px;
}
.join-page .page-wrap > h2,
.join-section > h2 {
  scroll-margin-top: 96px;
}
.join-page .about-panel {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.join-page .about-panel:hover {
  transform: translateY(-1px);
  border-color: #d1ddec;
  box-shadow: 0 10px 22px rgba(9, 49, 95, 0.07);
}
.join-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.join-quick-nav {
  margin-bottom: 24px;
}
.join-list {
  margin: 0;
  padding-left: 18px;
}
.join-list li {
  margin-bottom: 8px;
  line-height: 1.72;
}
.join-apply-card {
  border: 1px solid #dbe5f1;
  border-radius: 10px;
  background: linear-gradient(180deg, #f9fbff 0%, #f3f8fe 100%);
  padding: 18px;
  box-shadow: 0 8px 20px rgba(10, 54, 103, 0.06);
}
.join-apply-card p {
  margin: 0 0 12px;
  color: #455b73;
}
.join-form {
  max-width: 620px;
}
.join-required {
  color: #b13b00;
  font-weight: 700;
}
.join-form label {
  display: block;
  margin-bottom: 6px;
  color: #244a70;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.join-form input,
.join-form select,
.join-form textarea {
  width: 100%;
  min-height: 40px;
  margin-bottom: 12px;
  border: 1px solid #cfdceb;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 14px;
  color: #21394f;
  background: #fff;
}
.join-form textarea {
  min-height: 120px;
  resize: vertical;
}
.join-form input:focus,
.join-form select:focus,
.join-form textarea:focus {
  border-color: #2c74b3;
  box-shadow: 0 0 0 3px rgba(44, 116, 179, 0.14);
  outline: none;
}
.join-form button {
  min-height: 40px;
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  background: #0b5ea8;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.join-form button:hover {
  background: #094c88;
}
.join-form button:active {
  transform: translateY(1px);
}
@media (max-width: 992px) {
  .about-overview-grid {
    grid-template-columns: 1fr;
  }
  .org-chart,
  .partner-grid,
  .area-grid,
  .news-topic-grid,
  .join-grid,
  .join-grid-3,
  .about-contact-grid {
    grid-template-columns: 1fr;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }
  .news-page-v2 .news-section + .news-section {
    margin-top: 24px;
  }
}
@media (max-width: 640px) {
  .about-banner {
    height: clamp(200px, 48vw, 280px);
  }
  .about-banner-inner {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
  }
  .about-banner-kicker {
    letter-spacing: 0.1em;
  }
  .join-section + .join-section {
    margin-top: 24px;
  }
}

/* ========== news list & detail ========== */
.news-page .news-lead { margin: 0 0 24px; color: #555; line-height: 1.6; }
.news-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  margin-bottom: 28px;
  padding: 16px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.news-refine { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; }
.news-refine-label { font-weight: 600; color: #333; font-size: 14px; }
.news-refine-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; }
.news-refine-list li { list-style: none; margin: 0; padding: 0; }
.news-refine-list a { color: #003366; text-decoration: none; font-size: 14px; }
.news-refine-list a:hover { text-decoration: underline; }
.news-refine-list a.active { font-weight: 600; }
.news-sort { display: flex; align-items: center; gap: 6px; font-size: 14px; color: #666; margin-left: auto; }
.news-sort-label { font-weight: 500; }
.news-sort-option { color: #003366; text-decoration: none; }
.news-sort-option:hover { text-decoration: underline; }
.news-sort-option.active { font-weight: 600; }
.news-sort-sep { color: #ccc; }

.news-page .news-list { list-style: none; margin: 0 0 32px; padding: 0; }
.news-page .news-item {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}
.news-page .news-item:first-child { padding-top: 0; }
.news-page .news-item .news-title {
  font-size: 1.15rem;
  margin: 0 0 8px;
  padding: 0;
  border: none;
  font-weight: 600;
}
.news-page .news-item .news-title a { color: #003366; text-decoration: none; }
.news-page .news-item .news-title a:hover { text-decoration: underline; }
.news-page .news-item .news-excerpt { margin: 0; font-size: 14px; color: #555; line-height: 1.5; }
.news-meta { font-size: 13px; color: #666; display: block; margin-bottom: 6px; }
.news-pagination { margin: 24px 0 32px; font-size: 14px; }
.news-pagination a { color: #003366; text-decoration: none; margin-right: 12px; }
.news-pagination a:hover { text-decoration: underline; }
.news-pagination-current { font-weight: 600; margin-right: 12px; }
.news-subscribe {
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  padding: 24px;
  margin-top: 32px;
}
.news-subscribe h2 { font-size: 1.1rem; margin: 0 0 8px; color: #003366; border: none; padding: 0; }
.news-subscribe p { margin: 0 0 12px; font-size: 14px; color: #555; }
.btn-news-subscribe { display: inline-block; padding: 8px 16px; background: #003366; color: #fff; text-decoration: none; font-size: 14px; border-radius: 4px; }
.btn-news-subscribe:hover { background: #002244; }

.news-detail .news-detail-header { margin-bottom: 24px; }
.news-detail .news-detail-meta { font-size: 14px; color: #666; display: block; margin-bottom: 8px; }
.news-detail .news-detail-body { margin-bottom: 32px; }
.news-detail-back { margin: 0; font-size: 14px; }
.news-detail-back a { color: #003366; text-decoration: none; }
.news-detail-back a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .news-toolbar { flex-direction: column; align-items: flex-start; }
  .news-sort { margin-left: 0; }
  .news-refine-list { flex-direction: column; align-items: flex-start; }
  .page-content { padding: 28px max(20px, env(safe-area-inset-left)) 48px max(20px, env(safe-area-inset-right)); }
  .page-content h1 { font-size: 1.5rem; }
  .page-jump a { display: inline-block; margin: 0 14px 10px 0; }
  .news-subscribe { padding: 20px; }
  .btn-news-subscribe {
    min-height: 44px;
    padding: 12px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .page-content { padding: 24px max(16px, env(safe-area-inset-left)) 40px max(16px, env(safe-area-inset-right)); }
  .page-content h1 { font-size: 1.3rem; }
  .page-overview,
  .page-office { padding: 18px 14px; }
  .page-mission { padding: 20px 16px; }
  .page-timeline-decade { margin: 22px 0; padding-bottom: 22px; }
  .news-page .news-item .news-title { font-size: 1.05rem; line-height: 1.35; }
  .news-page .news-item { padding: 16px 0; }
  .news-detail .news-detail-body { font-size: 15px; }
}

/* ========== global international spacing ========== */
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 769px) {
  .nav-secondary {
    gap: 6px 32px;
    letter-spacing: 0.05em;
  }
}

.hero {
  min-height: clamp(380px, 52vh, 520px);
}

.hero-content {
  max-width: 920px;
  padding: clamp(3.5rem, 7vw, 5.5rem) max(28px, env(safe-area-inset-left)) clamp(3.25rem, 6vw, 4.75rem) max(28px, env(safe-area-inset-right));
}

.hero h1 {
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.75rem, 3.8vw, 2.65rem);
  line-height: 1.18;
}

.hero-tagline {
  margin: 0 auto clamp(2rem, 4vw, 2.75rem);
  max-width: 38rem;
  font-size: clamp(1rem, 1.35vw, 1.125rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  gap: 14px 18px;
}

.hero-actions select {
  min-width: 220px;
  width: min(100%, 400px);
  max-width: 400px;
  padding: 12px 16px;
  font-size: 0.9375rem;
}

.btn-go {
  min-height: 44px;
  padding: 12px 32px;
}

.focus {
  padding: clamp(3rem, 6vw, 4.5rem) max(28px, env(safe-area-inset-left)) clamp(3rem, 6vw, 4.5rem) max(28px, env(safe-area-inset-right));
}

.focus-inner {
  max-width: 52rem;
}

.focus-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.9fr);
  gap: clamp(20px, 3.5vw, 44px);
  align-items: center;
  min-height: clamp(260px, 34vh, 360px);
}

.focus-content {
  max-width: 48rem;
}

.focus p {
  font-size: 1.0625rem;
  line-height: 1.75;
}

.focus-media {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(10, 31, 77, 0.14);
}

.focus-media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

.news-events {
  padding: clamp(3rem, 6vw, 4.25rem) max(28px, env(safe-area-inset-left)) clamp(3.25rem, 6vw, 4.75rem) max(28px, env(safe-area-inset-right));
}

.news-events-inner {
  max-width: 1280px;
}

.news-events-panel {
  grid-template-columns: minmax(240px, 300px) 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.news-events-info h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.news-events-info p {
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 26rem;
}

.news-events-track {
  gap: 20px;
}

.news-card {
  min-width: calc((100% - 40px) / 3);
}

.news-card-title {
  font-size: 1.0625rem;
  line-height: 1.45;
  padding: 10px 16px 22px;
}

.numbers {
  padding: clamp(4rem, 8vw, 5.5rem) max(32px, env(safe-area-inset-left)) clamp(3.5rem, 7vw, 5rem) max(32px, env(safe-area-inset-right));
}

.numbers-grid {
  max-width: 1100px;
  gap: 36px 48px;
}

.numbers-item .label {
  font-size: 0.9375rem;
  line-height: 1.5;
}

.new-members-hero {
  min-height: clamp(400px, 48vh, 480px);
}

.new-members-inner {
  max-width: 1240px;
  min-height: clamp(400px, 48vh, 480px);
  padding: clamp(4rem, 8vw, 5.5rem) max(32px, env(safe-area-inset-left)) clamp(3.5rem, 7vw, 4.5rem) max(32px, env(safe-area-inset-right));
}

.new-members-card {
  max-width: 34rem;
  padding: clamp(2.5rem, 4vw, 3.25rem) clamp(2rem, 4vw, 3rem);
}

.new-members-lead {
  font-size: 1.0625rem;
  line-height: 1.7;
}

.footer-topbar-inner,
.footer-main-inner {
  max-width: 1280px;
}

.footer-main-inner {
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}

/* static sub pages created in /view/index/** */
.page-wrap {
  max-width: 1200px !important;
  margin:0 auto;
  padding: clamp(3rem, 6vw, 4.5rem) max(28px, env(safe-area-inset-left)) clamp(3.25rem, 6vw, 4.75rem) max(28px, env(safe-area-inset-right)) !important;
  line-height: 1.75 !important;
}

.page-wrap h1 {
  font-size: clamp(1.9rem, 3.5vw, 2.5rem) !important;
  line-height: 1.25 !important;
  margin-bottom: 0.75rem !important;
}

.page-wrap p,
.page-wrap li {
  font-size: 1.05rem;
}

@media (max-width: 992px) {
  .focus-layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .focus-media {
    max-width: 520px;
  }

  .news-events-panel {
    grid-template-columns: 1fr;
  }

  .news-card {
    min-width: calc((100% - 20px) / 2);
  }
}

@media (max-width: 768px) {
  .hero h1 {
    max-width: none;
  }

  .focus-media img {
    min-height: 190px;
  }

  .news-card {
    min-width: calc((100% - 14px) / 2);
  }
}

@media (max-width: 520px) {
  .news-card {
    min-width: 100%;
  }
}
