:root {
  --ink: #102a43;
  --ink2: #243b53;
  --muted: #627d98;
  --line: #d9e2ec;
  --soft: #f4f7fa;
  --paper: #fff;
  --mint: #65d6ad;
  --teal: #2cb1bc;
  --brand-green: #0e9347;
  --navy: #0b2239;
  --radius: 24px;
  --shadow: 0 22px 60px rgba(16, 42, 67, 0.1);
  --max: 1200px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(var(--max), calc(100% - 40px));
  margin: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: 6px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: 0.25s;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(
    90deg,
    #e63229 0 14.2857%,
    #f5a400 14.2857% 28.5714%,
    #ffdc00 28.5714% 42.8571%,
    #7dbb42 42.8571% 57.1428%,
    #22a9dc 57.1428% 71.4285%,
    #354f9b 71.4285% 85.7142%,
    #72276f 85.7142% 100%
  );
}
.site-header.scrolled {
  border-color: rgba(217, 226, 236, 0.8);
  box-shadow: 0 8px 30px rgba(16, 42, 67, 0.05);
}
.header-inner {
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.brand img {
  width: auto;
  height: 84px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 650;
  color: var(--ink2);
}
.nav a {
  position: relative;
}
.nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--brand-green);
  transition: 0.2s;
}
.nav a:hover:after,
.nav a.active:after {
  right: 0;
}
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
}
.menu-btn {
  display: none;
  border: 0;
  background: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
}
.menu-btn span,
.menu-btn:before,
.menu-btn:after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 4px auto;
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 74px;
  background: linear-gradient(180deg, #fbfdff 0%, #fff 100%);
}
.hero-bg {
  position: absolute;
  inset: -50px -120px auto auto;
  width: 780px;
  opacity: 0.78;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 72px;
  align-items: center;
}
.kicker,
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 800;
  color: #147d82;
}
.hero h1,
.page-hero h1 {
  font-size: clamp(46px, 7vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin: 20px 0 28px;
  max-width: 920px;
}
.hero p.lead {
  font-size: clamp(19px, 2.2vw, 25px);
  line-height: 1.45;
  color: var(--ink2);
  max-width: 760px;
  margin: 0;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 750;
  font-size: 14px;
  transition: 0.2s;
}
.btn.primary {
  background: var(--ink);
  color: #fff;
}
.btn.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
}
.associates-cta {
  color: #102a43;
}
.btn:hover {
  transform: translateY(-1px);
}
.hero-panel {
  position: relative;
  background: var(--navy);
  color: #fff;
  border-radius: 34px;
  padding: 36px;
  min-height: 440px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-panel:after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--mint) 0, transparent 67%);
  right: -120px;
  top: -100px;
  opacity: 0.25;
}
.hero-panel h2 {
  font-size: 30px;
  line-height: 1.1;
  margin: 0 0 30px;
  max-width: 320px;
}
.hero-number {
  font-size: 82px;
  letter-spacing: -0.06em;
  font-weight: 800;
  line-height: 0.9;
  color: var(--mint);
  margin: 24px 0 8px;
}
.hero-panel p {
  color: #cbd5e1;
  max-width: 330px;
}
.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 42px;
}
.mini-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 17px;
}
.mini-card strong {
  display: block;
  font-size: 22px;
}
.mini-card span {
  font-size: 12px;
  color: #9fb3c8;
}
.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 34px 24px;
  border-right: 1px solid var(--line);
}
.stat:first-child {
  padding-left: 0;
}
.stat:last-child {
  border-right: 0;
}
.stat strong {
  display: block;
  font-size: 34px;
  letter-spacing: -0.04em;
}
.stat span {
  color: var(--muted);
  font-size: 13px;
}
.section {
  padding: 92px 0;
}
.section.soft {
  background: var(--soft);
}
.section.dark {
  background: var(--navy);
  color: #fff;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 44px;
}
.section-head h2 {
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 10px 0 0;
  max-width: 780px;
}
.section-head p {
  max-width: 440px;
  color: var(--muted);
  margin: 0;
}
.dark .section-head p {
  color: #bcccdc;
}
.manifesto {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.manifesto .quote {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin: 0;
}
.manifesto-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.manifesto-copy h3 {
  font-size: 19px;
  margin: 0 0 8px;
}
.manifesto-copy p {
  margin: 0;
  color: var(--muted);
}
.map-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.map-wrap {
  position: relative;
  aspect-ratio: 1/1.02;
  border-radius: 32px;
  background: linear-gradient(145deg, #e8f5f1, #f7fafc);
  overflow: hidden;
  border: 1px solid #dfe9ed;
}
.province {
  position: absolute;
  top: 6%;
  left: 12%;
  width: 77%;
  height: 86%;
  object-fit: contain;
}
.province path {
  fill: #dcebe7;
  stroke: #b8d7cf;
  stroke-width: 2;
}
.province .water {
  fill: #f7fbfc;
  stroke: none;
}
.map-point {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: rgba(44, 177, 188, 0.18);
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 3;
}
.map-point:before {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(44, 177, 188, 0.24);
  border-radius: 50%;
}
.map-point span {
  display: block;
  width: 8px;
  height: 8px;
  margin: 6px;
  border-radius: 50%;
  background: #147d82;
  box-shadow: 0 0 0 4px rgba(101, 214, 173, 0.42);
}
.map-tooltip {
  position: absolute;
  z-index: 6;
  padding: 10px 13px;
  background: var(--ink);
  color: #fff;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(5px);
  pointer-events: none;
  transition: 0.2s;
  box-shadow: 0 12px 24px rgba(16, 42, 67, 0.16);
}
.map-tooltip.visible {
  opacity: 1;
  transform: none;
}
.map-tooltip strong,
.map-tooltip small {
  display: block;
}
.map-tooltip small {
  color: #bcccdc;
}
.map-copy h3 {
  font-size: 42px;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 18px;
}
.map-copy p {
  color: var(--muted);
  font-size: 17px;
}
.city-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 30px 0;
}
.city-cloud span,
.chip {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 650;
  color: var(--ink2);
}
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.editorial-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px;
  min-height: 420px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.editorial-card.featured {
  min-height: 560px;
  background: var(--ink);
  color: #fff;
}
.editorial-media {
  height: 200px;
  margin: -28px -28px 24px;
  overflow: hidden;
  background: var(--line);
}
.editorial-card.featured .editorial-media {
  height: clamp(220px, 20vw, 260px);
}
.editorial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.editorial-card h3 {
  font-size: 27px;
  line-height: 1.14;
  letter-spacing: -0.03em;
  margin: 12px 0;
}
.editorial-card h3 a,
.news-row h3 a {
  color: inherit;
  text-decoration: none;
  line-height: 32px;
}
.editorial-card h3 a:hover,
.news-row h3 a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}
.editorial-card.featured h3 {
  font-size: 43px;
}
.editorial-card p {
  color: var(--muted);
  margin: 0;
}
.editorial-card.featured p {
  color: #bcccdc;
  font-size: 18px;
}
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 34px;
  font-size: 13px;
  color: var(--muted);
}
.editorial-card.featured .card-footer {
  color: #cbd5e1;
}
.arrow {
  font-size: 24px;
}
.news-list {
  border-top: 1px solid var(--line);
}
.news-filters {
  display: flex;
  align-items: end;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--soft);
}
.news-filters > div {
  display: grid;
  gap: 6px;
  min-width: 150px;
}
.news-filters label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.news-filters select {
  min-width: 150px;
  padding: 11px 34px 11px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.news-filters .btn {
  padding: 11px 16px;
}
.news-empty {
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
}
.news-empty h3 {
  margin: 0 0 6px;
}
.news-empty p {
  margin: 0;
  color: var(--muted);
}
.news-row {
  display: grid;
  grid-template-columns: 220px 120px minmax(0, 1fr) 40px;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.news-row:hover {
  border-radius: 12px;
  background: #f4faf8;
  box-shadow: 0 8px 20px rgba(16, 42, 67, 0.07);
  transform: translateX(4px);
}
.news-row:has(.news-row h3 a:focus-visible) {
  outline: 2px solid #147d82;
  outline-offset: 3px;
}
.news-media {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 18px;
  background: var(--line);
}
.news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-date {
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.news-row h3 {
  font-size: 27px;
  letter-spacing: -0.025em;
  margin: 6px 0;
}
.news-row p {
  margin: 0;
  color: var(--muted);
  max-width: 760px;
}
.news-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 72px;
  align-items: start;
}
.news-detail-main h1 {
  max-width: 850px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.02;
  margin: 18px 0 16px;
}
.back-link {
  display: inline-block;
  color: #147d82;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 44px;
  text-decoration: none;
}
.back-link:hover {
  text-decoration: underline;
}
.news-detail-meta {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 30px;
}
.news-gallery {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.news-gallery-item {
  position: relative;
  min-height: 150px;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--line);
}
.news-gallery-item.is-featured {
  grid-row: 1 / -1;
}
.news-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-gallery-item figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px 14px 12px;
  background: linear-gradient(transparent, rgba(7, 24, 39, 0.8));
  color: #fff;
  font-size: 11px;
  line-height: 1.3;
}
.news-gallery-item.is-featured figcaption {
  padding: 52px 20px 16px;
  font-size: 13px;
}
.news-gallery-trigger {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  text-align: left;
  cursor: zoom-in;
}
.news-gallery-trigger:after {
  content: "+";
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(7, 24, 39, 0.72);
  color: #fff;
  font-size: 20px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.news-gallery-trigger:hover:after,
.news-gallery-trigger:focus-visible:after {
  opacity: 1;
}
.news-gallery-trigger:focus-visible {
  outline: 3px solid #fff;
  outline-offset: -6px;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.lightbox.is-open {
  visibility: visible;
  opacity: 1;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 24, 39, 0.9);
}
.lightbox-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 48px minmax(0, 900px) 48px;
  gap: 18px;
  align-items: center;
  width: min(100%, 1020px);
}
.lightbox-figure {
  margin: 0;
}
.lightbox-figure img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 12px;
  transform-origin: center;
  transition: transform 0.2s ease;
  cursor: zoom-in;
}
.lightbox-figure img[style*="scale(3)"] {
  cursor: zoom-out;
}
.lightbox-figure figcaption {
  margin-top: 12px;
  color: #fff;
  font-size: 13px;
  text-align: center;
}
.lightbox-close,
.lightbox-nav {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 24px;
}
.lightbox-close {
  position: absolute;
  top: -54px;
  right: 0;
}
.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.25);
}
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible,
.lightbox-toolbar button:focus-visible,
.lightbox-toolbar a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}
.lightbox-toolbar {
  position: absolute;
  right: 66px;
  bottom: -58px;
  left: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.lightbox-toolbar button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 20px;
  text-decoration: none;
}
.lightbox-toolbar button:nth-child(2) {
  width: auto;
  min-width: 58px;
  padding: 0 10px;
  border-radius: 18px;
  font-size: 11px;
}
.lightbox-toolbar span:last-child {
  margin-left: 10px;
  color: #cbd5e1;
  font-size: 12px;
}
.lightbox-toolbar button:hover {
  background: rgba(255, 255, 255, 0.25);
}
.lightbox-open {
  overflow: hidden;
}
.news-detail-copy {
  max-width: 720px;
  padding-top: 30px;
}
.news-detail-copy p {
  font-size: 19px;
  line-height: 1.3;
  margin: 0 0 22px;
}
.news-resources {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-top: 50px;
  border-top: 2px solid var(--ink);
  padding-top: 34px;
}
.news-resource-group h2 {
  font-size: 25px;
  margin: 10px 0 22px;
}
.resource-list {
  border-top: 1px solid var(--line);
}
.resource-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  border-radius: 12px;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.resource-item:hover {
  background: #f4faf8;
  box-shadow: 0 8px 18px rgba(16, 42, 67, 0.06);
  transform: translateX(4px);
}
.resource-item > span:nth-child(2) {
  min-width: 0;
  flex: 1;
}
.resource-item strong,
.resource-item small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.resource-item small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}
.resource-icon {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  border-radius: 9px;
  background: var(--soft);
  color: #147d82;
  font-weight: 800;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.resource-item .arrow {
  font-size: 18px;
}
.resource-item:hover strong {
  color: #147d82;
}
.resource-item:hover .resource-icon {
  background: #dff6ef;
  transform: scale(1.06);
}
.news-videos {
  margin-top: 54px;

  border-top: 2px solid var(--ink);
  
  padding-top: 34px;
}
.news-videos h2 {
  font-size: 25px;
  margin: 10px 0 22px;
}
.video-list {
  display: grid;
  gap: 18px;
}
.video-item {
  margin: 0;
}
.video-frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 18px;
  background: var(--line);
}
.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.video-item h3 {
  font-size: 16px;
  margin: 10px 0 0;
}
.related-news {
  position: sticky;
  top: 120px;
  border-top: 2px solid var(--ink);
  padding-top: 20px;
}
.related-news h2 {
  font-size: 28px;
  margin: 12px 0 28px;
}
.related-news-list {
  border-top: 1px solid var(--line);
}
.related-news-item {
  position: relative;
  display: block;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  padding: 20px 28px 20px 0;
  text-decoration: none;
}
.related-news-item:hover strong {
  color: #147d82;
}
.related-news-item strong {
  display: block;
  line-height: 1.3;
  margin-top: 8px;
  transition: color 0.2s ease;
}
.related-news-item .arrow {
  position: absolute;
  right: 0;
  top: 32px;
  font-size: 18px;
}
.empty-state {
  padding: 70px 0;
}
.empty-state h1 {
  margin: 12px 0 28px;
}
.logos-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.logo-pill {
  color: inherit;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.logo-pill:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
  transform: translateY(-2px);
}
.logo-pill:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.footer {
  background: #071827;
  color: #fff;
  padding: 62px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 0.9fr;
  gap: 44px;
}
.footer img {
  width: 188px;
  height: auto;
}
.footer p,
.footer a {
  color: #9fb3c8;
  font-size: 13px;
}
.footer .btn.secondary {
  color: #102a43;
}
.footer h4 {
  font-size: 13px;
  margin: 0 0 14px;
}
.footer-links {
  display: grid;
  gap: 9px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #829ab1;
  font-size: 12px;
}
.globalix-credit {
  display: inline-flex;
  line-height: 0;
  transition: opacity 0.2s;
}
.globalix-credit:hover {
  opacity: 0.8;
}
.footer .globalix-credit-logo {
  width: 173px;
  height: 16px;
}
.page-hero {
  padding: 72px 0 58px;
  background: linear-gradient(180deg, #f7fafc, #fff);
}
.page-hero p {
  font-size: 20px;
  color: var(--muted);
  max-width: 760px;
}
.timeline {
  border-left: 1px solid var(--line);
  margin-left: 10px;
}
.timeline-item {
  position: relative;
  padding: 0 0 42px 36px;
}
.timeline-item:before {
  content: "";
  position: absolute;
  left: -6px;
  top: 6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 6px #eaf8f3;
}
.timeline-item strong {
  font-size: 13px;
  color: #147d82;
}
.timeline-item h3 {
  margin: 5px 0;
  font-size: 24px;
}
.timeline-item p {
  margin: 0;
  color: var(--muted);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.value-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
}
.value-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eaf8f3;
  color: #147d82;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(20, 125, 130, 0.12);
}
.value-card h3 {
  font-size: 24px;
  margin: 22px 0 10px;
}
.value-card p {
  color: var(--muted);
  margin: 0;
}
.search-box {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  max-width: 480px;
  background: #fff;
}
.search-box input {
  border: 0;
  outline: 0;
  width: 100%;
  padding: 14px 8px;
  background: transparent;
  font: inherit;
}
.associate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.associate-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  min-height: 350px;
  scroll-margin-top: 110px;
}
.associate-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.associate-mark {
  width: 100px;
  height: 64px;
  border-radius: 15px;
  background: var(--soft);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #147d82;
  overflow: hidden;
}
.associate-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 7px;
}
.associate-card h3 {
  font-size: 29px;
  margin: 26px 0 0;
  letter-spacing: -0.035em;
}
.associate-short {
  font-weight: 750;
  color: #147d82;
  margin: 2px 0 12px;
}
.associate-card > p:not(.associate-short) {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  flex: 1;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 22px 0;
}
.chip {
  font-size: 10px;
  padding: 5px 8px;
}
.text-link {
  font-size: 13px;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.document-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.document-access {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: start;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--soft);
}
.document-access h2,
.document-library h2 {
  margin: 10px 0 12px;
  font-size: 34px;
}
.document-access p {
  max-width: 560px;
  color: var(--muted);
}
.document-login {
  display: grid;
  gap: 8px;
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}
.document-login label,
.document-filters label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.document-login input {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  margin-bottom: 8px;
}
.document-login .btn {
  justify-content: center;
  border: 0;
  cursor: pointer;
}
.login-note {
  margin: 8px 0 0;
  font-size: 11px;
}
.document-library[hidden],
.document-access[hidden] {
  display: none;
}
.document-session {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  max-width: 100%;
  min-width: 0;
  margin-left: auto;
  text-align: right;
}
.document-session-user {
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 750;
  color: var(--ink);
  overflow-wrap: anywhere;
}
.document-session .btn {
  justify-content: center;
  flex-shrink: 0;
}
.document-filters {
  display: flex;
  align-items: end;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--soft);
}
.document-filters > div {
  display: grid;
  gap: 6px;
  min-width: 150px;
}
.document-filters select {
  min-width: 150px;
  padding: 11px 34px 11px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.document-file-list {
  border-top: 1px solid var(--line);
}
.document-file {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 20px 12px;
  border-bottom: 1px solid var(--line);
  border-radius: 12px;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.document-file:hover {
  background: #f4faf8;
  box-shadow: 0 8px 20px rgba(16, 42, 67, 0.07);
  transform: translateY(-2px);
}
.document-file:has(.text-link:focus-visible) {
  outline: 2px solid #147d82;
  outline-offset: 3px;
}
.document-file h3 {
  margin: 5px 0;
  font-size: 20px;
}
.document-file p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.document-file .text-link {
  min-width: 110px;
  border: 0;
  padding: 0;
}
.document-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
}
.authority-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 22px 18px 24px;
  text-align: center;
  background: #fff;
}
.authority-avatar {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--line);
  background: var(--soft);
  box-shadow: 0 10px 20px rgba(16, 42, 67, 0.08);
}
.authority-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.authority-card .eyebrow,
.authority-card h3,
.authority-card p {
  margin: 0;
  padding: 0;
}
.authority-card h3 {
  font-size: 24px;
}
.authority-card p {
  color: var(--muted);
  font-size: 14px;
}
.doc-icon {
  width: 46px;
  height: 54px;
  border-radius: 10px;
  background: var(--soft);
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #147d82;
}
.document-example {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.document-card h3 {
  margin: 26px 0 8px;
}
.document-card p {
  color: var(--muted);
  font-size: 14px;
}
.notice {
  padding: 18px 20px;
  border-radius: 16px;
  background: #fff9e8;
  border: 1px solid #ffe8a3;
  color: #7c5b12;
  font-size: 13px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.contact-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px;
}
.contact-map {
  padding: 0;
  overflow: hidden;
  min-width: 0;
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}
.form {
  display: grid;
  gap: 14px;
}
.form label {
  font-size: 12px;
  font-weight: 800;
}
.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  background: #fff;
}
.form textarea {
  min-height: 130px;
  resize: vertical;
}
.form button {
  border: 0;
  cursor: pointer;
}
.small {
  font-size: 12px;
  color: var(--muted);
}
@media (max-width: 980px) {
  .news-detail-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }
  .related-news {
    position: static;
  }
  .news-row {
    grid-template-columns: 180px 100px minmax(0, 1fr) 30px;
    gap: 18px;
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--line);
    padding: 18px;
    border-radius: 20px;
    box-shadow: var(--shadow);
  }
  .nav.is-open {
    display: flex;
  }
  .header-cta {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .hero-grid,
  .map-layout,
  .manifesto,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-panel {
    min-height: auto;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat:nth-child(2) {
    border-right: 0;
  }
  .stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .associate-grid,
  .document-grid {
    grid-template-columns: 1fr 1fr;
  }
  .document-access {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .manifesto-copy {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--max));
  }
  .header-inner {
    height: 88px;
  }
  .brand img {
    width: auto;
    height: 74px;
  }
  .nav {
    top: 100%;
  }
  .hero {
    padding: 58px 0 48px;
  }
  .hero-grid {
    gap: 34px;
  }
  .hero h1,
  .page-hero h1 {
    font-size: 48px;
  }
  .hero-panel {
    padding: 25px;
    border-radius: 26px;
  }
  .hero-number {
    font-size: 64px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat {
    padding: 22px 14px;
  }
  .stat strong {
    font-size: 26px;
  }
  .section {
    padding: 68px 0;
  }
  .section-head {
    align-items: start;
    flex-direction: column;
    margin-bottom: 32px;
  }
  .manifesto-copy,
  .values-grid,
  .associate-grid,
  .document-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .document-access {
    padding: 24px;
  }
  .document-filters {
    align-items: stretch;
    flex-direction: column;
  }
  .document-filters > div,
  .document-filters select,
  .document-filters .btn {
    width: 100%;
  }
  .document-file {
    grid-template-columns: 48px minmax(0, 1fr);
  }
  .document-file .text-link {
    grid-column: 2;
  }
  .editorial-grid {
    grid-template-columns: 1fr;
  }
  .news-detail-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }
  .related-news {
    position: static;
  }
  .news-detail-main h1 {
    font-size: 46px;
  }
  .back-link {
    margin-bottom: 32px;
  }
  .news-detail-copy p {
    font-size: 17px;
  }
  .news-resources {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .news-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 110px;
  }
  .news-gallery-item.is-featured {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16 / 9;
  }
  .news-gallery-item:not(.is-featured) {
    min-height: 0;
  }
  .lightbox {
    padding: 14px;
  }
  .lightbox-dialog {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    gap: 6px;
  }
  .lightbox-close {
    top: -52px;
  }
  .lightbox-close,
  .lightbox-nav {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
  .editorial-card.featured {
    min-height: 420px;
  }
  .editorial-card.featured h3 {
    font-size: 34px;
  }
  .news-row {
    grid-template-columns: 1fr 30px;
  }
  .news-filters {
    align-items: stretch;
    flex-direction: column;
  }
  .news-filters > div,
  .news-filters select,
  .news-filters .btn {
    width: 100%;
  }
  .news-media {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }
  .news-date {
    grid-column: 1/-1;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .globalix-credit {
    align-self: flex-end;
  }
  .page-hero {
    padding: 50px 0 38px;
  }
  .map-wrap {
    aspect-ratio: 0.9/1;
  }
  .mini-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    gap: 24px;
  }
}
