:root {
  --blue-950: #031d3b;
  --blue-900: #06284f;
  --blue-800: #07386e;
  --blue-700: #0d559d;
  --blue-100: #dcecff;
  --red: #c91f2c;
  --red-dark: #a91420;
  --ink: #102238;
  --muted: #657388;
  --line: #dbe4ef;
  --paper: #ffffff;
  --soft: #f3f7fb;
  --shell: 1180px;
  --shadow: 0 24px 70px rgba(5, 31, 61, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--red);
  border-radius: 6px;
  font-weight: 800;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.utility {
  color: #cbd9e8;
  background: var(--blue-950);
}

.utility-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.utility p {
  margin: 0;
}

.utility-inner div {
  display: flex;
  gap: 22px;
}

.utility a {
  color: #dce8f4;
  text-decoration: none;
}

.utility a:hover {
  text-decoration: underline;
}

.site-header {
  position: relative;
  z-index: 10;
  background: #fff;
}

.brand-row {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
}

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

.brand span {
  display: grid;
  line-height: 1.06;
}

.brand strong {
  color: var(--blue-900);
  font-size: clamp(1.05rem, 2.2vw, 1.5rem);
  letter-spacing: -0.025em;
}

.brand b {
  margin-top: 7px;
  color: var(--blue-700);
  font-size: 0.8rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.main-nav {
  color: #fff;
  background: var(--blue-800);
}

.nav-shell {
  position: relative;
}

.nav-toggle {
  display: none;
}

.nav-scroll {
  min-height: 54px;
  display: flex;
  align-items: stretch;
  overflow-x: auto;
}

.nav-scroll a {
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-bottom: 3px solid transparent;
  font-size: 0.84rem;
  font-weight: 750;
  white-space: nowrap;
  text-decoration: none;
}

.nav-scroll a:hover,
.nav-scroll a:focus-visible,
.nav-scroll .active {
  background: rgba(255, 255, 255, 0.08);
  border-bottom-color: var(--red);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 22%, rgba(46, 127, 201, 0.34), transparent 30%),
    linear-gradient(135deg, var(--blue-950), var(--blue-800));
}

.hero-slider {
  position: absolute;
  z-index: -3;
  inset: 0;
}

.hero-slider__slide {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  opacity: 0;
  object-fit: cover;
  object-position: center;
  transform: scale(1.035);
  transition: opacity 1.15s ease, transform 8s ease;
}

.hero-slider__slide--active {
  opacity: 1;
  transform: scale(1);
}

.hero-slider__veil {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 29, 59, .94) 0%, rgba(3, 29, 59, .79) 49%, rgba(3, 29, 59, .58) 100%);
}

@media (prefers-reduced-motion: reduce) {
  .hero-slider__slide { transform: none; transition: opacity .2s linear; }
}

.hero-grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, transparent, #000 54%);
}

.hero-inner {
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.75fr);
  grid-template-rows: auto auto;
  align-items: stretch;
  column-gap: 84px;
  row-gap: 22px;
  padding-block: 90px;
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
}

.eyebrow {
  margin: 0 0 14px;
  color: #9fc9f4;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow.blue {
  color: var(--blue-700);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.3rem, 7vw, 6.3rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.hero-lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: #c5d6e7;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.hero-actions {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
}

.hero-partner {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 74px;
  padding: 0;
  background: transparent;
}

.hero-partner a {
  display: inline-flex;
}

.hero-partner img {
  display: block;
  width: auto;
  max-width: min(190px, 42vw);
  max-height: 58px;
  object-fit: contain;
}

.hero-panel {
  grid-column: 2;
  grid-row: 1;
}

.home-podcasts {
  color: var(--blue-900);
  background: #fff;
  border-block: 1px solid var(--line);
}

.home-podcasts .section-head {
  align-items: end;
}

.home-podcast-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.home-podcast-card {
  overflow: hidden;
  color: var(--blue-900);
  background: #fff;
  border: 1px solid rgba(7, 56, 110, 0.1);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(5, 31, 61, 0.09);
}

.home-podcast-card__content {
  padding: 24px;
}

.home-podcast-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  line-height: 1.3;
}

.home-podcast-card h3 a,
.home-podcast-card__content > a {
  color: var(--blue-800);
  text-decoration: none;
}

.home-podcast-card__content > p:not(.meta) {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 18px;
  color: var(--muted);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.podcast-archive .section-head > p {
  max-width: 630px;
  color: var(--muted);
}

.podcast-list {
  display: grid;
  gap: 24px;
}

.podcast-row {
  display: grid;
  grid-template-columns: minmax(280px, 42%) 1fr;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 14px 38px rgba(5, 31, 61, 0.06);
}

.podcast-row__content {
  align-self: center;
  padding: clamp(24px, 4vw, 46px);
}

.podcast-row__content h2 {
  margin: 8px 0 16px;
  font-size: clamp(1.4rem, 2.3vw, 2rem);
}

.podcast-row__content h2 a {
  color: var(--blue-900);
  text-decoration: none;
}

.podcast-row__content > p:not(.eyebrow) {
  color: var(--muted);
}

.podcast-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.podcast-player iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.podcast-detail h1 {
  max-width: 1000px;
}

.podcast-detail__lead {
  max-width: 900px;
  margin: 22px 0 38px;
  color: var(--muted);
  font-size: 1.12rem;
}

.podcast-player--detail {
  margin-bottom: 48px;
  border-radius: 10px;
  box-shadow: 0 18px 48px rgba(5, 31, 61, 0.16);
  overflow: hidden;
}

@media (max-width: 820px) {
  .home-podcast-grid {
    grid-template-columns: 1fr;
  }

  .podcast-row {
    grid-template-columns: 1fr;
  }
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: none;
}

.button-red {
  color: #fff;
  background: var(--red);
}

.button-red:hover {
  background: var(--red-dark);
}

.button-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.04);
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.11);
}

.button-blue {
  color: #fff;
  background: var(--blue-800);
}

.button-white {
  color: var(--blue-900);
  background: #fff;
}

.hero-panel {
  padding: 24px;
  background: rgba(3, 29, 59, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.panel-label {
  margin: 0 0 14px;
  color: #91a9c1;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-panel > a {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
}

.quick-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-size: 0.67rem;
  font-weight: 900;
}

.hero-panel > a > span:nth-child(2) {
  display: grid;
}

.hero-panel strong {
  font-size: 0.94rem;
}

.hero-panel small {
  color: #91a9c1;
  font-size: 0.75rem;
}

.hero-panel b {
  color: #8fbce7;
}

.ticker {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.ticker-inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.ticker-inner > span {
  padding: 5px 9px;
  color: #fff;
  background: var(--red);
  border-radius: 4px;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ticker p {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 700;
}

.ticker a {
  color: var(--blue-700);
  font-size: 0.8rem;
  font-weight: 850;
  text-decoration: none;
}

.section {
  padding-block: 106px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 44px;
}

.section-head h2,
.documents-layout h2,
.ask-card h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3.2vw, 2.35rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.all-link {
  color: var(--blue-700);
  font-size: 0.84rem;
  font-weight: 850;
  text-decoration: none;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.news-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 14px 38px rgba(5, 31, 61, 0.06);
}

.news-visual {
  position: relative;
  min-height: 230px;
  display: flex;
  align-items: end;
  padding: 20px;
  background: var(--blue-800);
}

.news-visual::before,
.news-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.news-visual::before {
  width: 220px;
  height: 220px;
  top: -90px;
  right: -45px;
}

.news-visual::after {
  width: 110px;
  height: 110px;
  top: 36px;
  right: 42px;
}

.news-visual-two {
  background: linear-gradient(145deg, #0d559d, #46a5d3);
}

.news-visual-three {
  background: linear-gradient(145deg, #082e5b, #1d6aab);
}

.news-visual span {
  position: relative;
  z-index: 1;
  padding: 5px 8px;
  color: #fff;
  background: var(--red);
  border-radius: 4px;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.news-content {
  padding: 26px;
}

.meta {
  margin: 0 0 12px;
  color: #8491a3;
  font-size: 0.72rem;
}

.meta span {
  color: var(--blue-700);
  font-weight: 800;
}

.news-content h2,
.news-content h3 {
  margin: 0 0 14px;
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  line-height: 1.34;
  letter-spacing: -0.015em;
  overflow-wrap: anywhere;
}

.featured .news-content h3 {
  font-size: clamp(1.12rem, 1.6vw, 1.35rem);
}

.news-content > p:not(.meta) {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.news-content > a {
  color: var(--blue-700);
  font-size: 0.8rem;
  font-weight: 850;
  text-decoration: none;
}

.support-section {
  color: #fff;
  background: var(--blue-900);
}

.section-head.light > p {
  max-width: 470px;
  margin: 0;
  color: #b6c8da;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.support-grid article {
  min-height: 260px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.035);
}

.support-grid span {
  color: #87b9e7;
  font-size: 0.72rem;
  font-weight: 900;
}

.support-grid h3 {
  margin: 76px 0 12px;
  font-size: 1.25rem;
}

.support-grid p {
  margin: 0;
  color: #aebfd1;
}

.documents-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.1fr;
  align-items: center;
  gap: 90px;
}

.section-copy {
  max-width: 500px;
  margin: 22px 0 30px;
  color: var(--muted);
}

.document-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.document-list a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 22px 8px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.file-type {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--red);
  background: #fff0f1;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 900;
}

.document-list a > span:nth-child(2) {
  display: grid;
}

.document-list small {
  color: #8a97a8;
}

.unions-section {
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.union-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.union-grid a {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  color: var(--blue-900);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.union-grid a:hover {
  border-color: #97bde1;
  box-shadow: 0 12px 30px rgba(5, 31, 61, 0.08);
}

.union-grid span {
  min-width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue-700);
  border-radius: 50%;
  font-size: 0.68rem;
}

.ask-section {
  padding-block: 78px;
}

.ask-card {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
  gap: 80px;
  padding: 60px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.12), transparent 24%),
    var(--red);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.ask-card .eyebrow {
  color: #ffd8db;
}

.ask-card > div:last-child p {
  margin: 0 0 26px;
  color: #ffe1e3;
}

.site-footer {
  color: #c8d6e5;
  background: var(--blue-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 70px;
  padding-block: 70px;
}

.footer-brand img {
  width: 92px;
  height: 66px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 270px;
  color: #fff;
  font-weight: 800;
}

.footer-grid h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid p {
  margin: 0;
  color: #9bb0c5;
  font-size: 0.86rem;
}

.footer-grid a {
  color: #dbe8f4;
  text-decoration: none;
}

.footer-bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #849db5;
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

*:focus-visible {
  outline: 3px solid #f4ad35;
  outline-offset: 3px;
}

.article-shell {
  max-width: 880px;
}

.article-shell--wide {
  max-width: none;
}

.cms-page .section-copy,
.landing-page .section-copy {
  max-width: none;
}

.article-shell h1,
.section .shell > h1 {
  margin: 8px 0 20px;
  color: var(--blue-950);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
}

.article-image {
  display: block;
  width: 100%;
  height: clamp(280px, 52vw, 560px);
  margin: 28px 0;
  padding: 10px;
  object-fit: contain;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.union-logo-detail {
  display: block;
  width: auto;
  max-width: 150px;
  max-height: 130px;
  margin: 0 0 24px;
  object-fit: contain;
}

.article-body {
  color: #30465d;
  font-size: 1.06rem;
  line-height: 1.85;
}

.landing-copy {
  max-width: none;
}

.landing-section-head,
.link-group-heading {
  margin-top: 52px;
}

.news-card-image {
  display: block;
  width: 100%;
  height: 230px;
  padding: 8px;
  object-fit: contain;
  background: var(--soft);
}

.news-card-image-link {
  display: block;
  color: inherit;
  background: var(--soft);
  text-decoration: none;
}

.news-card-image-link:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: -3px;
}

.news-card-image-link:hover .news-card-image {
  filter: brightness(0.96);
}

.contact-box {
  margin-top: 36px;
  padding: 24px;
  border-left: 5px solid var(--red);
  background: var(--soft);
}

.document-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.document-filter select {
  min-width: 220px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

@media (max-width: 960px) {
  .hero-inner,
  .documents-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-inner {
    grid-template-rows: none;
    row-gap: 28px;
    padding-block: 80px;
  }

  .hero-copy,
  .hero-actions,
  .hero-panel,
  .hero-partner {
    grid-column: 1;
    grid-row: auto;
  }

  .hero-panel,
  .hero-partner {
    width: 100%;
    max-width: 600px;
  }

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

  .news-card.featured {
    grid-column: 1 / -1;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .support-grid article {
    min-height: 210px;
  }

  .support-grid h3 {
    margin-top: 44px;
  }

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

@media (max-width: 680px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .utility {
    display: none;
  }

  .brand-row {
    min-height: auto;
    padding-block: 18px;
  }

  .brand img {
    width: 72px;
    height: 52px;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .brand b {
    font-size: 0.63rem;
  }

  .hero-inner {
    padding-block: 68px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.5rem);
  }

  .ticker-inner {
    grid-template-columns: auto 1fr;
    padding-block: 15px;
  }

  .ticker a {
    grid-column: 2;
  }

  .section {
    padding-block: 76px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

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

  .news-card.featured {
    grid-column: auto;
  }

  .section-head.light > p {
    max-width: none;
  }

  .union-grid {
    grid-template-columns: 1fr;
  }

  .ask-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 36px 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

.article-body h2,
.article-body h3,
.article-body h4 { margin: 1.5em 0 0.55em; color: var(--blue-950); overflow-wrap: anywhere; }
.article-body h2 { font-size: clamp(1.55rem, 2.4vw, 2.05rem); line-height: 1.18; }
.article-body h3 { font-size: clamp(1.3rem, 2vw, 1.65rem); line-height: 1.22; }
.article-body h4 { font-size: clamp(1.1rem, 1.5vw, 1.3rem); line-height: 1.28; }
.article-body ul,
.article-body ol { padding-left: 1.5rem; }
.article-body blockquote { margin: 1.5rem 0; padding: 18px 22px; background: var(--soft); border-left: 5px solid var(--red); }
.article-body table { display: block; width: 100%; margin: 1.7rem 0; overflow-x: auto; border-collapse: collapse; }
.article-body th,
.article-body td { min-width: 120px; padding: 11px 13px; border: 1px solid var(--line); text-align: left; }
.article-body th { background: var(--soft); }
.article-body figure { margin: 2rem 0; }
.article-body figure img,
.article-body > img { display: block; max-width: 100%; height: auto; margin-inline: auto; border-radius: 8px; }
.article-body figcaption { margin-top: 8px; color: var(--muted); font-size: 0.82rem; text-align: center; }
.section-soft { background: var(--soft); border-block: 1px solid var(--line); }

.news-filters,
.search-page-form { display: flex; flex-wrap: wrap; align-items: end; gap: 12px; margin: 24px 0; }
.news-filters label { display: grid; gap: 6px; color: var(--muted); font-size: 0.72rem; font-weight: 800; text-transform: uppercase; }
.news-filters select,
.search-page-form input { min-width: 230px; padding: 12px 14px; color: var(--blue-900); background: #fff; border: 1px solid var(--line); border-radius: 6px; font-size: 0.92rem; }
.filter-reset { padding: 12px 4px; color: var(--red); font-weight: 800; }

.site-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.site-pagination__summary { margin: 0; color: var(--muted); font-size: .8rem; }
.site-pagination__pages { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 6px; margin: 0; padding: 0; list-style: none; }
.site-pagination__pages a,
.site-pagination__pages span { min-width: 38px; min-height: 38px; display: inline-grid; padding: 7px 11px; place-items: center; color: var(--blue-800); background: #fff; border: 1px solid var(--line); border-radius: 6px; font-size: .8rem; font-weight: 800; line-height: 1; text-decoration: none; }
.site-pagination__pages a:hover,
.site-pagination__pages a:focus-visible { color: #fff; background: var(--blue-800); border-color: var(--blue-800); }
.site-pagination__pages .active span { color: #fff; background: var(--red); border-color: var(--red); }
.site-pagination__pages .disabled span { color: #98a5b4; background: var(--soft); }
.site-pagination__pages .page-direction a,
.site-pagination__pages .page-direction span { min-width: 104px; }

.question-answer-section,
.question-archive { margin-top: 56px; }
.question-archive--standalone { margin-top: 0; }
.answer-list,
.search-result-list { display: grid; border-top: 1px solid var(--line); }
.answer-list a,
.search-result-list a { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 20px; padding: 18px 8px; border-bottom: 1px solid var(--line); text-decoration: none; }
.answer-list a > span,
.search-result-list a > span { display: grid; gap: 4px; }
.answer-list small,
.search-result-list small { color: var(--muted); }
.archive-year { margin-top: 42px; }
.archive-year > h3 { margin: 0 0 10px; color: var(--red); font-size: clamp(1.45rem, 2.4vw, 1.9rem); line-height: 1.15; }
.search-page-form input { width: min(620px, 100%); }
.search-summary,
.search-notice { margin: 18px 0 34px; color: var(--muted); }
.search-group { margin-top: 46px; }
.search-group h2 { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.search-group h2 span { display: inline-grid; min-width: 30px; height: 30px; place-items: center; color: #fff; background: var(--blue-700); border-radius: 50%; font-family: sans-serif; font-size: 0.72rem; }
.empty-note { padding: 22px; color: var(--muted); background: var(--soft); border-left: 4px solid var(--blue-700); }

@media (max-width: 680px) {
  .news-filters,
  .search-page-form { align-items: stretch; flex-direction: column; }
  .news-filters label,
  .news-filters select,
  .search-page-form input,
  .search-page-form button { width: 100%; }
  .site-pagination { align-items: stretch; flex-direction: column; gap: 14px; }
  .site-pagination__summary { text-align: center; }
  .site-pagination__pages { justify-content: center; }
  .site-pagination__pages .page-number:not(.active),
  .site-pagination__pages .page-gap { display: none; }
}

.header-search { display: flex; width: min(320px, 34vw); }
.header-search input { min-width: 0; width: 100%; padding: 11px 13px; color: var(--blue-900); background: var(--soft); border: 1px solid var(--line); border-right: 0; border-radius: 6px 0 0 6px; }
.header-search button { flex: 0 0 44px; color: #fff; background: var(--red); border: 0; border-radius: 0 6px 6px 0; font-size: 1.25rem; }

.article-shell h1,
.section .shell > h1 { max-width: 980px; font-size: clamp(1.85rem, 3.7vw, 3.15rem); line-height: 1.12; overflow-wrap: anywhere; }
.article-shell > h1 { font-size: clamp(1.8rem, 3.1vw, 2.65rem); line-height: 1.14; }
.section-soft .news-content h3 { font-size: clamp(1.02rem, 1.7vw, 1.28rem); line-height: 1.32; overflow-wrap: anywhere; }

.archive-year .document-list { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; border-top: 0; }
.archive-year .document-list a { min-width: 0; grid-template-columns: auto minmax(0, 1fr); align-content: start; padding: 16px; background: #fff; border: 1px solid var(--line); border-radius: 8px; }
.archive-year .document-list a > b { display: none; }
.archive-year .document-list strong { font-size: .82rem; line-height: 1.35; overflow-wrap: anywhere; }
.archive-year .document-list small { margin-top: 5px; font-size: .7rem; }

.home-modules-section { background: var(--soft); border-block: 1px solid var(--line); }
.home-module-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.home-module { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 10px; box-shadow: 0 14px 36px rgba(5, 31, 61, .06); }
.home-module-video { position: relative; aspect-ratio: 16 / 9; background: var(--blue-950); }
.home-module-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.home-module-content { padding: 26px; }
.home-module-content h3 { margin: 4px 0 15px; color: var(--blue-950); font-size: clamp(1.25rem, 2.3vw, 1.75rem); line-height: 1.15; }
.home-module-content > div { color: var(--muted); font-size: .93rem; line-height: 1.7; }
.home-module-content > a { display: inline-flex; margin-top: 18px; color: var(--blue-700); font-weight: 850; text-decoration: none; }

.article-body::after { display: block; clear: both; content: ""; }
.article-body figure.media-image { max-width: 100%; }
.article-body figure.media-image--small { width: 32%; }
.article-body figure.media-image--medium { width: 50%; }
.article-body figure.media-image--large { width: 72%; }
.article-body figure.media-image--full { width: 100%; }
.article-body figure.media-image--left { float: left; margin: 8px 24px 18px 0; }
.article-body figure.media-image--right { float: right; margin: 8px 0 18px 24px; }
.article-body figure.media-image--center { margin: 24px auto; }

.back-to-top { position: fixed; right: 22px; bottom: 22px; z-index: 30; display: grid; width: 46px; height: 46px; place-items: center; color: #fff; background: var(--red); border: 2px solid #fff; border-radius: 50%; box-shadow: 0 8px 25px rgba(4, 24, 45, .28); font-size: 1.35rem; font-weight: 900; text-decoration: none; }
.back-to-top:hover { color: #fff; background: var(--red-dark); transform: translateY(-2px); }
.back-to-top[hidden] { display: none; }

@media (min-width: 1100px) {
  .nav-scroll { justify-content: space-between; overflow-x: visible; }
  .nav-scroll a { padding-inline: 11px; font-size: .79rem; }
}

@media (max-width: 900px) {
  .nav-toggle {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-left: auto;
    padding: 0 4px 0 18px;
    color: #fff;
    background: transparent;
    border: 0;
    border-radius: 0;
    font-size: .82rem;
    font-weight: 800;
  }
  .nav-toggle:hover,
  .nav-toggle:focus-visible {
    background: rgba(255, 255, 255, .08);
  }
  .nav-toggle:focus-visible {
    outline: 3px solid rgba(255, 255, 255, .75);
    outline-offset: -3px;
  }
  .nav-toggle__label--close {
    display: none;
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle__label--open {
    display: none;
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle__label--close {
    display: inline;
  }
  .nav-toggle__icon {
    position: relative;
    width: 26px;
    height: 20px;
    display: block;
  }
  .nav-toggle__icon i {
    position: absolute;
    right: 0;
    width: 26px;
    height: 2px;
    display: block;
    background: currentColor;
    border-radius: 2px;
    transition: top .2s ease, transform .2s ease, opacity .2s ease;
  }
  .nav-toggle__icon i:nth-child(1) { top: 1px; }
  .nav-toggle__icon i:nth-child(2) { top: 9px; }
  .nav-toggle__icon i:nth-child(3) { top: 17px; }
  .nav-toggle[aria-expanded="true"] .nav-toggle__icon i:nth-child(1) {
    top: 9px;
    transform: rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle__icon i:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle__icon i:nth-child(3) {
    top: 9px;
    transform: rotate(-45deg);
  }
  .nav-scroll {
    min-height: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    overflow: visible;
    padding: 0 0 12px;
    border-top: 1px solid rgba(255, 255, 255, .14);
  }
  .nav-scroll.nav-scroll--open {
    display: flex;
  }
  .nav-scroll a {
    min-height: 46px;
    width: 100%;
    padding: 9px 18px;
    border-bottom: 0;
    border-left: 3px solid transparent;
    white-space: normal;
  }
  .nav-scroll a:hover,
  .nav-scroll a:focus-visible,
  .nav-scroll .active {
    border-bottom-color: transparent;
    border-left-color: var(--red);
  }
  .archive-year .document-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-module-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .brand-row { align-items: stretch; flex-direction: column; gap: 14px; }
  .header-search { width: 100%; }
  .hero-slider,
  .hero-slider__veil { display: none; }
  .archive-year .document-list { grid-template-columns: 1fr; }
  .article-body figure.media-image { float: none; width: 100%; margin: 20px auto; }
  .back-to-top { right: 14px; bottom: 14px; }
}

.post-gallery-section { clear: both; margin-top: 64px; padding-top: 38px; border-top: 1px solid var(--line); }
.post-gallery-section .section-head { margin-bottom: 28px; }
.post-gallery-section .section-head h2 { font-size: clamp(1.65rem, 2.6vw, 2.2rem); line-height: 1.12; letter-spacing: -.03em; }
.post-photo-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.post-photo-grid > a { position: relative; display: block; overflow: hidden; aspect-ratio: 4 / 3; background: var(--soft); border: 1px solid var(--line); }
.post-photo-grid img { display: block; width: 100%; height: 100%; padding: 5px; object-fit: contain; transition: transform .25s ease; }
.post-photo-grid a:hover img,
.post-photo-grid a:focus-visible img { transform: scale(1.025); }
.post-photo-grid a span { position: absolute; right: 0; bottom: 0; left: 0; padding: 9px; color: #fff; background: rgba(4, 31, 61, .86); font-size: .72rem; }

.post-gallery-lightbox { overflow: visible; width: min(96vw, 1500px); max-width: none; height: min(94vh, 1000px); max-height: none; padding: 0; color: #fff; background: rgba(3, 15, 29, .98); border: 1px solid rgba(255, 255, 255, .18); }
.post-gallery-lightbox::backdrop { background: rgba(1, 8, 16, .88); backdrop-filter: blur(5px); }
.post-gallery-lightbox__toolbar { position: absolute; z-index: 3; top: 12px; right: 12px; left: 12px; display: flex; align-items: center; justify-content: flex-end; gap: 14px; }
.post-gallery-lightbox__toolbar span { padding: 7px 10px; background: rgba(0, 0, 0, .55); font-size: .74rem; }
.post-gallery-lightbox__toolbar button,
.post-gallery-lightbox__nav { display: grid; color: #fff; background: rgba(0, 0, 0, .6); border: 1px solid rgba(255, 255, 255, .28); place-items: center; }
.post-gallery-lightbox__toolbar button { width: 42px; height: 42px; font-size: 1.7rem; }
.post-gallery-lightbox figure { display: grid; width: 100%; height: 100%; margin: 0; padding: 58px 80px 40px; grid-template-rows: minmax(0, 1fr) auto; }
.post-gallery-lightbox figure img { width: 100%; height: 100%; min-height: 0; object-fit: contain; }
.post-gallery-lightbox figcaption { padding: 12px; text-align: center; }
.post-gallery-lightbox__nav { position: absolute; z-index: 3; top: 50%; width: 48px; height: 70px; font-size: 2.5rem; transform: translateY(-50%); }
.post-gallery-lightbox__nav--previous { left: 14px; }
.post-gallery-lightbox__nav--next { right: 14px; }

.main-nav {
  position: sticky;
  z-index: 1000;
  top: 0;
  box-shadow: 0 8px 24px rgba(4, 31, 61, .12);
}

.home-important {
  padding: 26px 0;
  color: var(--blue-950);
  background: #fff4d6;
  border-block: 1px solid #e9cf8d;
}

.home-important__content {
  padding-left: 22px;
  border-left: 5px solid var(--red);
}

.home-important__content > :first-child { margin-top: 0; }
.home-important__content > :last-child { margin-bottom: 0; }

.document-ticker {
  overflow: hidden;
  color: #fff;
  background: var(--blue-950);
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.home-document-ticker--separated {
  margin-top: clamp(56px, 7vw, 94px);
}

.union-news-ticker {
  margin-bottom: clamp(72px, 8vw, 106px);
}

.document-ticker__inner {
  min-height: 58px;
  display: grid;
  align-items: center;
  grid-template-columns: auto minmax(0, 1fr);
}

.document-ticker__inner > strong {
  z-index: 2;
  align-self: stretch;
  display: grid;
  padding: 0 20px;
  place-items: center;
  color: #fff;
  background: var(--red);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.union-news-ticker__label {
  align-content: center;
  gap: 2px;
  line-height: 1.05;
}

.union-news-ticker__label span:first-child {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: none;
}

.union-news-ticker__label span:last-child {
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.document-ticker__viewport { overflow: hidden; }
.document-ticker__track {
  width: max-content;
  display: flex;
  animation: document-ticker-scroll 42s linear infinite;
}
.document-ticker__set { display: flex; align-items: center; }
.document-ticker__set a {
  position: relative;
  padding: 18px 34px;
  color: #fff;
  font-size: .86rem;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}
.document-ticker__set a::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 5px;
  height: 5px;
  content: "";
  background: #70b8e4;
  border-radius: 50%;
  transform: translateY(-50%);
}
.document-ticker__track:hover,
.document-ticker__track:focus-within { animation-play-state: paused; }
.document-ticker__set a:hover,
.document-ticker__set a:focus-visible { color: #a9d8f3; text-decoration: underline; }

@keyframes document-ticker-scroll {
  to { transform: translateX(-50%); }
}

.unions-section .union-grid a {
  font-size: clamp(.96rem, 1.25vw, 1.08rem);
  font-weight: 760;
  line-height: 1.3;
}

.union-detail .article-shell h1 {
  max-width: 900px;
  font-size: clamp(1.55rem, 2.65vw, 2.25rem);
  line-height: 1.18;
}

.article-image-link { display: block; color: inherit; }
.news-article .article-image,
.news-article .article-body img { cursor: zoom-in; }
.news-article .article-body img:focus-visible,
.article-image-link:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }

.leadership-section {
  clear: both;
  margin-top: 58px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}
.leadership-section--top {
  margin: 34px 0 54px;
  padding: 0;
  border: 0;
}
.leadership-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.leadership-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 14px 38px rgba(5, 31, 61, .06);
}
.leadership-card img { width: 150px; height: 180px; object-fit: cover; background: var(--soft); }
.leadership-card div { padding: 22px; }
.leadership-card h3 { margin: 0 0 7px; color: var(--blue-950); font-size: 1.15rem; }
.leadership-card p { margin: 0; color: var(--muted); }
.footer-social { display: flex; flex-wrap: wrap; gap: 8px 14px; }
.footer-social a { font-size: .8rem; font-weight: 750; }

@media (max-width: 900px) {
  .post-photo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .leadership-card { grid-template-columns: 110px minmax(0, 1fr); }
  .leadership-card img { width: 110px; height: 150px; }
}

@media (max-width: 680px) {
  .post-photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .post-gallery-lightbox figure { padding: 58px 14px 76px; }
  .post-gallery-lightbox__nav { top: auto; bottom: 12px; width: 44%; height: 48px; transform: none; }
  .document-ticker__inner { grid-template-columns: 1fr; }
  .document-ticker__inner > strong { min-height: 38px; padding: 0 14px; justify-items: start; }
  .document-ticker__set a { padding-block: 14px; }
  .leadership-grid { grid-template-columns: 1fr; }
  .union-detail .article-shell h1 { font-size: clamp(1.4rem, 7vw, 1.85rem); }
}

@media (prefers-reduced-motion: reduce) {
  .document-ticker__viewport { overflow-x: auto; }
  .document-ticker__track { animation: none; }
  .document-ticker__set[aria-hidden="true"] { display: none; }
}
