:root {
  --bg: #eef3f8;
  --surface: rgba(255, 255, 255, 0.94);
  --surface-strong: #ffffff;
  --surface-soft: #e2ebf6;
  --line: rgba(16, 53, 95, 0.14);
  --line-strong: rgba(16, 53, 95, 0.22);
  --text: #13263b;
  --muted: #5c6e82;
  --primary: #10355f;
  --primary-deep: #0f2f57;
  --primary-soft: #1e4f89;
  --accent: #c59b41;
  --accent-soft: #f4e4b8;
  --shadow: 0 24px 60px rgba(8, 30, 55, 0.1);
  --shadow-soft: 0 18px 40px rgba(8, 30, 55, 0.08);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: 1220px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-y: scroll;
  scrollbar-gutter: stable;
}
body {
  margin: 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(197, 155, 65, 0.16), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, var(--bg) 42%, #edf2f7 100%);
  line-height: 1.65;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 53, 95, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 53, 95, 0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 90%);
  pointer-events: none;
  z-index: -1;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(calc(100% - 36px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 251, 255, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(16, 53, 95, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 auto;
  min-width: 0;
}
.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-text {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.brand-text strong {
  display: -webkit-box;
  font-size: 15px;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.brand-text span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 16px;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(197, 155, 65, 0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after { transform: scaleX(1); }
.main-nav a.is-active {
  color: var(--primary);
  font-weight: 600;
}
.main-nav a.is-active::after { transform: scaleX(1); }
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--primary);
}

.site-main {
  flex: 1 0 auto;
  overflow: clip;
}

.hero {
  position: relative;
  padding: 78px 0 34px;
}
.hero-home {
  padding-top: 64px;
  padding-bottom: 20px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(16, 53, 95, 0.13), transparent 24%),
    radial-gradient(circle at 12% 8%, rgba(197, 155, 65, 0.18), transparent 22%);
  pointer-events: none;
}
.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.78fr);
  gap: 28px;
  align-items: stretch;
}
.hero-shell-wide {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
}
.hero-copy,
.hero-panel,
.stat-card,
.card,
.resource-card {
  animation: fadeUp 0.55s ease both;
}

.eyebrow, .section-kicker, .card-tag, .panel-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(16, 53, 95, 0.08);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-copy h1,
.section-head h2,
.card h3,
.resource-card strong,
.footer-copy strong {
  font-family: Georgia, "Times New Roman", serif;
}
.hero-copy h1 {
  margin: 18px 0 18px;
  max-width: 880px;
  font-size: clamp(34px, 4.2vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}
.hero-home .hero-copy h1 {
  max-width: 760px;
  font-size: clamp(28px, 3.1vw, 44px);
  line-height: 1.08;
}
.hero-lead {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}
.hero-home .hero-lead {
  max-width: 700px;
  font-size: 16px;
}
.hero-actions, .hero-facts, .button-row, .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-actions { margin-top: 28px; }
.hero-facts { margin-top: 28px; }
.hero-home .hero-actions { margin-top: 22px; }
.hero-home .hero-facts { margin-top: 18px; }

.fact-pill {
  min-width: 170px;
  padding: 16px 18px;
  border: 1px solid rgba(16, 53, 95, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  column-gap: 10px;
}
.fact-pill-text {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
}
.fact-pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-bottom: 0;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(197, 155, 65, 0.16) 0%, rgba(197, 155, 65, 0.08) 100%);
  color: #b18427;
  box-shadow: inset 0 0 0 1px rgba(197, 155, 65, 0.14);
}
.fact-pill-icon svg {
  width: 15px;
  height: 15px;
}
.hero-home .fact-pill {
  min-width: 150px;
  padding: 14px 16px;
}
.fact-pill strong {
  display: block;
  margin-bottom: 0;
  color: var(--primary);
  font-size: 18px;
  line-height: 1;
}
.hero-home .fact-pill strong {
  font-size: 17px;
}
.fact-pill-text strong {
  display: none;
}
.fact-pill > span:last-child {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}
.hero-home .fact-pill > span:last-child {
  font-size: 13px;
}
.fact-pill-text > span:last-child {
  min-width: 0;
  max-width: 100%;
  display: block;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.35;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 22px;
  align-content: start;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(240, 246, 252, 0.92)),
    var(--surface);
}
.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 155, 65, 0.24), transparent 68%);
  pointer-events: none;
}
.hero-panel-brand {
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  gap: 16px;
}
.hero-panel-brand img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}
.hero-panel-brand strong {
  display: block;
  margin-top: 8px;
  font-size: 20px;
  line-height: 1.2;
}
.hero-visual-card {
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.hero-visual-card img {
  width: 100%;
  height: auto;
}
.hero-panel-body p { color: var(--muted); }
.hero-panel-dense {
  padding: 20px 20px 18px;
}
.hero-panel-dense .hero-panel-body {
  display: grid;
  gap: 10px;
}
.hero-panel-summary {
  padding: 20px;
}
.hero-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.summary-block {
  padding: 14px 14px 12px;
  border: 1px solid rgba(16, 53, 95, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}
.summary-block h2 {
  margin: 0 0 10px;
  color: var(--primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.15;
}
.hero-panel-subhead {
  margin-top: 2px;
}
.feature-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.feature-list-compact {
  margin-top: 0;
  gap: 8px;
}
.feature-list li {
  padding-left: 24px;
  position: relative;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.hero-panel-dense .feature-list li {
  font-size: 13px;
  line-height: 1.4;
  padding-left: 20px;
}
.hero-panel-summary .feature-list li {
  font-size: 12.5px;
  line-height: 1.38;
  padding-left: 18px;
}
.hero-panel-dense .feature-list li::before {
  top: 8px;
  width: 8px;
  height: 8px;
}
.hero-panel-summary .feature-list li::before {
  top: 7px;
  width: 7px;
  height: 7px;
  box-shadow: 0 0 0 3px rgba(197, 155, 65, 0.12);
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ddb866);
  box-shadow: 0 0 0 4px rgba(197, 155, 65, 0.16);
}

.section { padding: 88px 0; }
.section-intro { padding: 0 0 20px; }
.section-cta {
  padding-top: 0;
}
.section-alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(222, 233, 245, 0.58)),
    linear-gradient(135deg, #f7fbff 0%, #edf3fa 100%);
}
.section-dark {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 25%),
    linear-gradient(135deg, var(--primary-deep) 0%, #123e72 100%);
  color: #f5f8fb;
}
.section-head {
  max-width: 920px;
  margin-bottom: 32px;
}
.section-head h2 {
  margin: 16px 0 14px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
}
.section-head h1 {
  margin: 16px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.08;
}
.section-head p { margin: 0; color: var(--muted); font-size: 17px; }
.section-head.light p { color: rgba(255,255,255,0.76); }
.section-head-compact {
  margin-bottom: 24px;
}
.news-archive-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 22px;
}
.section-head.light .section-kicker { background: rgba(255,255,255,0.12); color: #fff; }

.page-about .section,
.page-cooperation .section,
.page-documents .section,
.page-news .section,
.page-news-item .section,
.page-news-archive .section,
.page-contacts .section,
.page-members .section,
.page-managed-page .section {
  padding-top: 28px;
  padding-bottom: 84px;
}

.page-about .section-head-compact,
.page-cooperation .section-head-compact,
.page-documents .section-head-compact,
.page-news .section-head-compact,
.page-news-item .section-head-compact,
.page-news-archive .section-head-compact,
.page-contacts .section-head-compact,
.page-members .section-head-compact,
.page-managed-page .section-head-compact {
  max-width: 1040px;
  margin-bottom: 28px;
}

.page-about .section-kicker,
.page-cooperation .section-kicker,
.page-documents .section-kicker,
.page-news .section-kicker,
.page-news-item .section-kicker,
.page-news-archive .section-kicker,
.page-contacts .section-kicker,
.page-members .section-kicker,
.page-managed-page .section-kicker {
  min-height: 34px;
  padding: 8px 15px;
  border: 1px solid rgba(16, 53, 95, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(16, 53, 95, 0.05);
  font-size: 12px;
  letter-spacing: 0.07em;
}

.page-about .prose-card,
.page-cooperation .prose-card-compact,
.page-managed-page .content-rich-page,
.page-news-item .news-detail-card,
.page-contacts .contact-card-commission,
.page-members .country-card-commission,
.page-documents .doc-card,
.page-news .news-card,
.page-news-archive .news-archive-item {
  border-color: rgba(16, 53, 95, 0.1);
  box-shadow: 0 18px 38px rgba(15, 47, 87, 0.08);
}

.page-about .prose-card,
.page-cooperation .prose-card-compact,
.page-managed-page .content-rich-page,
.page-news-item .news-detail-card,
.page-contacts .contact-card-commission,
.page-members .country-card-commission {
  border-radius: 28px;
}

.page-documents .doc-card,
.page-news .news-card,
.page-news-archive .news-archive-item {
  border-radius: 24px;
}

.page-about .prose-card,
.page-cooperation .prose-card-compact,
.page-managed-page .content-rich-page,
.page-news-item .news-detail-card {
  max-width: 1040px;
}

.page-managed-page .section-head-compact,
.page-managed-page .content-rich-page {
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}
.about-intro-card {
  margin-bottom: 24px;
}
.page-about .about-intro-card,
.page-about .about-layout {
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.page-cooperation .prose-card-compact,
.page-managed-page .content-rich-page {
  padding: 36px 40px;
}

.page-managed-page .content-rich-page,
.page-managed-page .content-rich-page p,
.page-managed-page .content-rich-page li {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: #24384d;
}

.page-managed-page .content-rich-page p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.8;
}

.page-managed-page .content-rich-page p:last-child {
  margin-bottom: 0;
}

.page-managed-page .content-rich-page h2,
.page-managed-page .content-rich-page h3 {
  margin: 30px 0 14px;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--primary);
}

.page-managed-page .content-rich-page h2 {
  font-size: 28px;
}

.page-managed-page .content-rich-page h3 {
  font-size: 22px;
}

.page-managed-page .content-rich-page ul,
.page-managed-page .content-rich-page ol {
  margin: 0 0 10px;
  padding-left: 24px;
  display: grid;
  gap: 10px;
}

.page-managed-page .content-rich-page li {
  font-size: 16px;
  line-height: 1.75;
}

.stats-grid,
.info-grid,
.concept-grid,
.meeting-grid,
.news-grid,
.contacts-grid,
.resource-grid {
  display: grid;
  gap: 20px;
}
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 20px;
}
.content-grid-wide {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
}

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

.stat-card {
  padding: 24px 26px;
  border: 1px solid rgba(16, 53, 95, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.stat-value {
  display: block;
  margin-bottom: 6px;
  color: var(--primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1;
}

.stat-label {
  color: var(--muted);
}

.highlight-card {
  margin-bottom: 22px;
  border-left: 4px solid var(--accent);
}
.prose-card p:last-child {
  margin-bottom: 0;
}
.key-points-card {
  align-content: start;
}

.card {
  background: var(--surface);
  border: 1px solid rgba(16, 53, 95, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.card h3 {
  margin: 0 0 14px;
  font-size: 25px;
  line-height: 1.15;
}
.dark-card {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
  box-shadow: none;
}
.cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }

.concept-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  margin-bottom: 22px;
}

.clean-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}
.clean-list li::marker { color: var(--accent); }
.page-about .page-hero {
  padding-top: 44px;
  padding-bottom: 18px;
}
.page-about .page-hero-copy {
  max-width: 920px;
}
.page-about .section-kicker,
.page-about .prose-card,
.page-about .prose-card p,
.page-about .prose-card ul li,
.page-about .clean-list li {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}
.page-about .page-hero-copy h1 {
  max-width: 980px;
  font-size: clamp(30px, 3.3vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.page-about .page-hero-copy p {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.65;
}
.page-about .section {
  padding-top: 28px;
}
.page-members .section,
.page-documents .section,
.page-news .section,
.page-news-item .section,
.page-news-archive .section,
.page-contacts .section,
.page-cooperation .section,
.page-managed-page .section {
  padding-top: 28px;
}
.page-about .prose-card {
  max-width: none;
  padding: 40px 44px;
  border-color: rgba(16, 53, 95, 0.1);
  box-shadow: 0 18px 38px rgba(15, 47, 87, 0.08);
}
.page-about .prose-card.about-intro-card {
  width: 100%;
}
.about-layout {
  display: grid;
  gap: 16px;
}
.about-layout .prose-card {
  max-width: none;
}
.page-anchor-nav {
  position: sticky;
  top: 96px;
  z-index: 20;
}
.page-anchor-nav button {
  appearance: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  min-height: 38px;
  width: 100%;
  padding: 0 14px;
  border: 1px solid rgba(16, 53, 95, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(16, 53, 95, 0.05);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, background-color 0.18s ease;
}
.page-anchor-nav-horizontal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  justify-content: center;
}
.page-anchor-nav-horizontal button {
  width: auto;
}
.page-anchor-nav button:hover,
.page-anchor-nav button:focus-visible,
.page-anchor-nav button.is-active {
  transform: translateY(-1px);
  border-color: rgba(16, 53, 95, 0.16);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 20px rgba(15, 47, 87, 0.08);
  color: var(--primary);
}
.page-anchor-nav button.is-active {
  border-color: rgba(197, 155, 65, 0.34);
  background: rgba(197, 155, 65, 0.12);
  box-shadow: 0 12px 22px rgba(197, 155, 65, 0.12);
  color: #7a5914;
}
.about-widget-panel {
  display: none;
}
.about-widget-panel.is-active {
  display: block;
}
.about-widget-panel > h2:first-child {
  margin-top: -4px;
  padding-top: 0;
  border-top: 0;
}
.page-about .prose-card p {
  margin: 0 0 18px;
  color: #24384d;
  font-size: 17px;
  line-height: 1.8;
}
.page-about .about-intro-card p {
  color: #24384d;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
}
.page-about .prose-card h2 {
  margin: 0 0 16px;
  padding-top: 0;
  border-top: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: var(--primary);
}
.page-about .prose-card h2:first-of-type {
  margin-top: 0;
}
.page-about .prose-card ul {
  margin: 0 0 8px;
  padding-left: 24px;
  display: grid;
  gap: 12px;
}
.page-about .prose-card ul li {
  color: #24384d;
  font-size: 16px;
  line-height: 1.75;
}
.page-about .prose-card ul li::marker {
  color: var(--accent);
}
.page-about .clean-list {
  margin-bottom: 8px;
  padding-left: 24px;
  gap: 12px;
}
.page-about .clean-list li {
  color: #24384d;
  font-size: 16px;
  line-height: 1.75;
}
.prose-card-compact {
  max-width: 900px;
}
.page-cooperation .section-kicker,
.page-cooperation .prose-card-compact,
.page-cooperation .prose-card-compact p,
.page-cooperation .prose-card-compact .clean-list li {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: #24384d;
}
.page-cooperation .prose-card-compact p {
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.8;
}
.page-cooperation .prose-card-compact .clean-list {
  padding-left: 24px;
  gap: 12px;
}
.page-cooperation .prose-card-compact .clean-list li {
  font-size: 16px;
  line-height: 1.75;
}
.timeline {
  display: grid;
  gap: 18px;
}
.timeline-card .timeline { margin-top: 6px; }
.timeline-item {
  padding-left: 20px;
  border-left: 3px solid var(--accent);
}
.timeline-item strong {
  display: block;
  font-size: 17px;
}
.timeline-item p { margin: 6px 0 0; color: var(--muted); }

.doc-grid {
  display: grid;
  gap: 20px;
}
.doc-grid-featured {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.doc-grid-catalog {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.doc-card,
.news-card,
.icon-card {
  display: grid;
  align-content: start;
  gap: 10px;
}
.portal-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.portal-link-card {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.portal-link-card:hover,
.portal-link-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--line-strong);
}
.portal-link-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1.1;
}
.portal-link-card span:last-child {
  color: var(--muted);
}
.feature-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 20px;
}
.feature-showcase-main {
  min-height: 100%;
}
.feature-showcase-side {
  display: grid;
  gap: 20px;
}
.mini-feature-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}
.mini-feature-card span {
  color: var(--muted);
}
.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.overview-card {
  grid-template-columns: 1fr;
  gap: 18px;
}
.overview-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
  background: linear-gradient(180deg, #f7fbff 0%, #ecf2f8 100%);
}
.overview-card div {
  display: grid;
  gap: 10px;
}
.overview-card h3 {
  margin-bottom: 0;
}
.page-hero {
  position: relative;
  padding: 48px 0 28px;
}
.page-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 26px;
  align-items: center;
}
.page-hero-copy h1 {
  margin: 16px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3.8vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.page-hero-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}
.page-hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.page-hero-visual {
  padding: 16px;
}
.page-hero-visual img {
  width: 100%;
  height: auto;
}
.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}
.cta-panel h2 {
  margin: 16px 0 12px;
}
.cta-panel p {
  margin: 0;
  color: var(--muted);
}

.members-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 20px;
}
.country-card {
  position: relative;
}
.country-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 24px 0 0 24px;
  background: linear-gradient(180deg, var(--accent), rgba(197, 155, 65, 0.12));
}
.country-card h3 {
  margin-top: 0;
  padding-left: 10px;
}
.member-item {
  padding: 16px 0 16px 10px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 6px;
}
.member-item:first-of-type { border-top: 0; padding-top: 6px; }
.member-item span { color: var(--muted); font-size: 14px; }
.member-item a { color: var(--primary); font-size: 14px; }

.doc-card p, .news-card p, .icon-card p { color: var(--muted); }
.page-documents .doc-grid-catalog {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.page-documents .doc-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 28px 26px 24px;
  gap: 14px;
  border-color: rgba(16, 53, 95, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 250, 253, 0.98) 100%);
  box-shadow: 0 18px 42px rgba(15, 47, 87, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}
.page-documents .doc-card::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 0;
  bottom: 24px;
  width: 3px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, rgba(197, 155, 65, 0.95) 0%, rgba(197, 155, 65, 0.22) 100%);
}
.page-documents .section-kicker,
.page-documents .doc-card,
.page-documents .doc-card p {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}
.page-documents .doc-card .card-tag {
  padding: 7px 12px;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.page-documents .doc-card h3 {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: -0.015em;
}
.page-documents .doc-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}
.page-documents .document-files,
.page-news-item .document-files {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}
.page-documents .document-file-link,
.page-news-item .document-file-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 16px;
  border: 1px solid rgba(16, 53, 95, 0.09);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(243, 247, 251, 0.98) 100%);
  box-shadow: 0 14px 32px rgba(16, 53, 95, 0.055);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.page-documents .document-file-link:hover,
.page-documents .document-file-link:focus-visible,
.page-news-item .document-file-link:hover,
.page-news-item .document-file-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(16, 53, 95, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(239, 245, 250, 0.98) 100%);
  box-shadow: 0 18px 34px rgba(16, 53, 95, 0.085);
}
.page-documents .document-file-main,
.page-news-item .document-file-main {
  display: flex;
  align-items: flex-start;
  min-width: 0;
  flex: 1 1 auto;
}
.page-documents .document-file-side,
.page-news-item .document-file-side {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.page-documents .document-file-side-text,
.page-news-item .document-file-side-text {
  display: grid;
  justify-items: end;
  gap: 5px;
}
.page-documents .document-file-icon,
.page-news-item .document-file-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(16, 53, 95, 0.06);
  color: var(--primary);
}
.page-documents .document-file-icon svg,
.page-news-item .document-file-icon svg {
  width: 16px;
  height: 16px;
}
.page-documents .document-file-text,
.page-news-item .document-file-text {
  display: grid;
  gap: 5px;
  min-width: 0;
}
.page-documents .document-file-name,
.page-news-item .document-file-name {
  display: block;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}
.page-documents .document-file-caption,
.page-news-item .document-file-caption {
  display: block;
  color: #64788d;
  font-size: 12px;
  line-height: 1.45;
}
.page-documents .document-file-meta,
.page-news-item .document-file-meta {
  flex-shrink: 0;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(197, 155, 65, 0.14);
  color: #8b6521;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.page-documents .document-file-size,
.page-news-item .document-file-size {
  color: var(--muted);
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
}
.page-documents .document-file-link-pdf .document-file-icon,
.page-news-item .document-file-link-pdf .document-file-icon {
  color: #9b2c2c;
  background: rgba(155, 44, 44, 0.08);
}
.page-documents .document-file-link-doc .document-file-icon,
.page-documents .document-file-link-docx .document-file-icon,
.page-news-item .document-file-link-doc .document-file-icon,
.page-news-item .document-file-link-docx .document-file-icon {
  color: #1b4d84;
  background: rgba(27, 77, 132, 0.08);
}
.page-news .section-kicker,
.page-news .news-card,
.page-news .news-card p,
.page-news .news-date {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}
.page-news .news-card h3 {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  margin: 0;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.015em;
}
.page-news .news-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  padding: 24px 24px 22px;
  border-color: rgba(16, 53, 95, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(246, 249, 252, 0.98) 100%);
  box-shadow: 0 18px 42px rgba(15, 47, 87, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.page-news .news-card::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  bottom: 22px;
  width: 3px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, rgba(197, 155, 65, 0.95) 0%, rgba(197, 155, 65, 0.18) 100%);
}
.page-news .news-card-media {
  position: relative;
  margin: 0 0 4px;
  aspect-ratio: 16 / 8.4;
  background: rgba(16, 53, 95, 0.06);
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 14px 30px rgba(15, 47, 87, 0.08);
}
.page-news .news-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-news .news-card .news-date,
.page-news .news-card h3,
.page-news .news-card p {
  position: relative;
  z-index: 1;
}
.page-news .news-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.page-news .news-card p {
  margin: 0;
  color: #4b6178;
  line-height: 1.68;
}
.page-news .news-card-footer {
  margin-top: auto;
  padding-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.news-attachment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  margin-left: auto;
  border-radius: 10px;
  background: rgba(197, 155, 65, 0.12);
  color: #8b6521;
  box-shadow: inset 0 0 0 1px rgba(197, 155, 65, 0.08);
}
.news-attachment-badge svg {
  width: 13px;
  height: 13px;
}
.page-news .btn-news-more,
.page-news-archive .btn-news-more {
  min-height: 36px;
  padding: 0 13px;
  border-radius: 11px;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 13px;
}
.page-news .btn-news-more-overlay {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(16, 53, 95, 0.1);
  box-shadow: 0 12px 24px rgba(15, 47, 87, 0.14);
  backdrop-filter: blur(8px);
}
.page-news .btn-archive-link {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 14px;
  font-size: 13px;
  box-shadow: 0 14px 28px rgba(15, 47, 87, 0.08);
}
.page-news-archive .section-kicker,
.page-news-archive .news-archive-item,
.page-news-archive .news-archive-item p,
.page-news-archive .news-date {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}
.page-news-archive .news-archive-list {
  display: grid;
  gap: 16px;
}
.page-news-archive .news-archive-item {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 24px 24px 22px;
  border-color: rgba(16, 53, 95, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(246, 249, 252, 0.98) 100%);
  box-shadow: 0 18px 40px rgba(15, 47, 87, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}
.page-news-archive .news-archive-item::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  bottom: 22px;
  width: 3px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, rgba(197, 155, 65, 0.95) 0%, rgba(197, 155, 65, 0.18) 100%);
}
.page-news-archive .news-archive-item-empty {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.page-news-archive .news-archive-media {
  overflow: hidden;
  border-radius: 18px;
  background: rgba(16, 53, 95, 0.06);
  aspect-ratio: 16 / 10;
}
.page-news-archive .news-archive-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-news-archive .news-archive-body {
  display: grid;
  gap: 12px;
  min-width: 0;
}
.page-news-archive .news-archive-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.page-news-archive .news-archive-item h3 {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: -0.015em;
}
.page-news-archive .news-archive-item p {
  margin: 0;
  color: #4b6178;
  line-height: 1.68;
}
.page-news-archive .news-archive-actions {
  margin-top: 6px;
  padding-top: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}
.page-news-archive .news-archive-actions .news-attachment-badge {
  margin-left: 0;
}
.page-news-archive .news-archive-actions .btn-news-more {
  margin-left: auto;
}
.page-news-archive .news-archive-pagination {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.page-news-archive .news-archive-pagination-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.page-news-archive .news-archive-page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(16, 53, 95, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--primary);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.page-news-archive .news-archive-page-link:hover,
.page-news-archive .news-archive-page-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(16, 53, 95, 0.2);
}
.page-news-archive .news-archive-page-link.is-active {
  border-color: rgba(16, 53, 95, 0.18);
  background: linear-gradient(135deg, #10355f 0%, #1b4d84 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(16, 53, 95, 0.16);
}
.page-news-archive .news-archive-page-link-nav {
  min-width: 88px;
}
.page-news-item .news-detail-card {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  display: grid;
  gap: 20px;
  padding: 32px;
}
.page-news-item .news-detail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.page-news-item .news-detail-media {
  aspect-ratio: 16 / 8;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(16, 53, 95, 0.06);
}
.page-news-item .news-detail-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-news-item .news-detail-card h1,
.page-news-item .news-detail-excerpt,
.page-news-item .news-detail-content,
.page-news-item .news-detail-content p,
.page-news-item .news-detail-content li {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}
.page-news-item .news-detail-card h1 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--primary);
}
.page-news-item .news-detail-excerpt {
  margin: 0;
  color: #42576d;
  font-size: 18px;
  line-height: 1.7;
}
.page-news-item .news-detail-content {
  color: #24384d;
  font-size: 17px;
  line-height: 1.75;
}
.page-news-item .news-detail-content p {
  margin: 0 0 16px;
}
.page-news-item .news-detail-content p:last-child {
  margin-bottom: 0;
}
.page-news-item .news-detail-content ul,
.page-news-item .news-detail-content ol {
  margin: 0 0 16px;
  padding-left: 22px;
}
.page-news-item .news-detail-content li {
  margin-bottom: 8px;
}
.page-news-item .news-detail-actions {
  padding-top: 6px;
}
.page-news-item .news-detail-files {
  margin-top: 4px;
  max-width: 560px;
}
.page-news-item .news-detail-files-title {
  margin: 0 0 10px;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}
.page-news-item .news-detail-card-empty {
  max-width: 760px;
}
.doc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
}
.muted-link {
  color: var(--primary-soft);
  opacity: 0.82;
}
.meeting-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.news-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.news-date {
  display: inline-flex;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(16,53,95,0.08);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.resource-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}
.resource-card {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.resource-card:hover,
.resource-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--line-strong);
}
.resource-card strong {
  font-size: 21px;
  line-height: 1.15;
}
.resource-card span:not(.card-tag) { color: var(--muted); }
.contacts-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.contact-card p { margin: 0; }
.contact-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 22px;
  display: grid;
  gap: 8px;
}
.contact-list.contact-list-dark a {
  color: var(--primary);
}
.page-contacts .contacts-grid-commission {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}
.page-contacts .section-kicker,
.page-contacts .contact-card-commission,
.page-contacts .contact-org,
.page-contacts .contact-address,
.page-contacts .contact-list-commission li,
.page-contacts .contact-list-commission a {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}
.page-contacts .contact-card-commission {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 30px;
}
.page-contacts .contact-card-commission::after {
  content: "";
  position: absolute;
  top: 28px;
  left: 0;
  bottom: 28px;
  width: 3px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, rgba(197, 155, 65, 0.94) 0%, rgba(197, 155, 65, 0.28) 100%);
  box-shadow: 0 0 0 1px rgba(197, 155, 65, 0.06);
}
.page-contacts .contact-profile {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 12px;
}
.page-contacts .contact-profile-body {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
}
.page-contacts .contact-card-commission h2 {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: var(--primary);
}
.page-contacts .contact-org,
.page-contacts .contact-address {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}
.page-contacts .contact-list-commission {
  margin: 8px 0 0;
  gap: 12px;
}
.page-contacts .contact-list-commission li {
  padding-top: 12px;
  border-top: 1px solid rgba(16, 53, 95, 0.08);
  color: #24384d;
  line-height: 1.65;
}
.page-contacts .contact-list-commission li strong {
  color: var(--primary);
}
.page-contacts .contact-list-commission a {
  font-weight: 600;
  text-decoration: none;
}
.page-members .members-wrap-commission {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.page-members .members-country-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
}
.page-members .members-country-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: grid;
  justify-items: end;
  gap: 10px;
}
.page-members .members-country-float-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(16, 53, 95, 0.14);
  border-radius: 999px;
  background: rgba(16, 53, 95, 0.96);
  box-shadow: 0 18px 32px rgba(15, 47, 87, 0.18);
  color: #fff;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}
.page-members .members-country-float-panel {
  position: relative;
  width: min(360px, calc(100vw - 32px));
  padding: 14px;
  border: 1px solid rgba(16, 53, 95, 0.1);
  border-radius: 22px;
  background: rgba(247, 251, 255, 0.98);
  box-shadow: 0 22px 40px rgba(15, 47, 87, 0.16);
  backdrop-filter: blur(14px);
}
.page-members .members-country-float-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: none;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid rgba(16, 53, 95, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  box-shadow: 0 8px 18px rgba(15, 47, 87, 0.1);
  cursor: pointer;
  z-index: 2;
}
.page-members .members-country-float-close span {
  display: block;
  font-size: 20px;
  line-height: 1;
  transform: translateY(-1px);
}
.page-members .members-country-float-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.page-members .members-country-float .members-country-link {
  min-height: 32px;
  padding: 0 10px;
  font-size: 12px;
}
.page-members .members-country-link {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(16, 53, 95, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow-soft);
  color: #42576d;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.page-members .members-country-link:hover,
.page-members .members-country-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(16, 53, 95, 0.18);
  box-shadow: var(--shadow);
  color: var(--primary);
}
.page-members .members-country-link.is-current {
  background: rgba(197, 155, 65, 0.14);
  border-color: rgba(197, 155, 65, 0.34);
  box-shadow: 0 10px 22px rgba(197, 155, 65, 0.16);
  color: #7a5914;
}
.page-members .members-country-link.is-chair {
  position: relative;
  background: rgba(16, 53, 95, 0.08);
  border-color: rgba(16, 53, 95, 0.18);
  color: var(--primary);
  font-weight: 700;
}
.page-members .members-country-link.is-chair.is-current {
  background: linear-gradient(180deg, rgba(197, 155, 65, 0.18), rgba(197, 155, 65, 0.1));
  border-color: rgba(197, 155, 65, 0.38);
  color: #6a4b0d;
}
.page-members .members-country-link.is-chair em {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: #10355f;
  color: #fff;
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(15, 47, 87, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
}
.page-members .members-country-link.is-chair:hover em,
.page-members .members-country-link.is-chair:focus-visible em {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.page-members .members-country-link img {
  width: 18px;
  height: 12px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(16, 53, 95, 0.08);
  margin-right: 8px;
  flex-shrink: 0;
}
.page-members .section-kicker,
.page-members .country-card-commission,
.page-members .member-role,
.page-members .member-contacts li,
.page-members .member-contacts a {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}
.page-members .country-card-commission {
  overflow: hidden;
  padding: 26px 28px;
  scroll-margin-top: 110px;
  transition: background-color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}
.page-members .country-card-commission::before {
  inset: 26px auto 26px 0;
  border-radius: 0 999px 999px 0;
}
.page-members .country-card-commission:target {
  background: linear-gradient(180deg, rgba(229, 240, 250, 0.98), rgba(255, 255, 255, 0.96));
  border-color: rgba(16, 53, 95, 0.24);
  box-shadow: 0 20px 42px rgba(15, 47, 87, 0.16);
  transform: translateY(-2px);
}
.page-members .country-card-commission:target .country-heading {
  margin-left: -10px;
  padding-left: 18px;
  border-left: 4px solid rgba(16, 53, 95, 0.9);
}
.page-members .country-card-commission:target .member-record {
  border-top-color: rgba(16, 53, 95, 0.14);
}
.page-members .country-card-commission:target .member-contacts {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(16, 53, 95, 0.07);
  box-shadow: inset 0 0 0 1px rgba(16, 53, 95, 0.08);
}
.page-members .country-card-commission:target .member-contacts li {
  color: #203247;
}
.page-members .country-card-commission h2 {
  margin: 0 0 10px;
  padding-left: 10px;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: var(--primary);
}
.page-members .country-heading {
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-members .country-heading img {
  width: 28px;
  height: 20px;
  border-radius: 3px;
  border: 1px solid rgba(16, 53, 95, 0.12);
  box-shadow: 0 2px 8px rgba(15, 47, 87, 0.08);
  flex-shrink: 0;
}
.page-members .member-record {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0 16px 10px;
  border-top: 1px solid var(--line);
}
.page-members .member-record:first-of-type {
  border-top: 0;
  padding-top: 8px;
}
.page-members .member-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(16, 53, 95, 0.08);
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
}
.page-members .member-body {
  display: grid;
  gap: 10px;
  min-width: 0;
}
.page-members .member-body h3 {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: -0.015em;
  color: #182b44;
}
.page-members .member-role {
  margin: 0;
  color: #24384d;
  font-size: 15px;
  line-height: 1.65;
}
.page-members .member-contacts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.page-members .member-contacts li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.page-members .member-contacts li strong {
  color: var(--primary);
}
.page-members .member-contacts a {
  color: var(--primary);
  text-decoration: none;
  word-break: break-word;
}
.contact-list a,
.footer-links a { color: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover,
.btn:focus-visible { transform: translateY(-1px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-soft) 100%);
  box-shadow: 0 16px 30px rgba(16,53,95,0.2);
}
.btn-outline {
  color: var(--primary);
  border: 1px solid rgba(16,53,95,0.18);
  background: rgba(255,255,255,0.82);
}
.btn-light {
  color: var(--primary);
  background: #fff;
}

.site-footer {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0)),
    linear-gradient(135deg, #081a32 0%, #0b2444 52%, #102f57 100%);
  color: rgba(255,255,255,0.72);
  padding: 34px 0 22px;
}
.page-home .site-main {
  min-height: 0;
  flex: 1;
  display: flex;
}
.page-home {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
.page-home .hero-home {
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 24px;
}
.page-home .hero-home .container {
  width: min(calc(100% - 36px), 1220px);
}
.page-home .hero-shell-wide {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  align-items: stretch;
  gap: 32px;
}
.page-home .hero-shell-wide > * {
  height: 100%;
}
.page-home .hero-copy {
  padding-top: 8px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  max-width: 760px;
}
.page-home .hero-copy h1 {
  margin: 0;
  max-width: 760px;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.032em;
  color: #0f2f57;
  text-wrap: balance;
}
.page-home .hero-lead {
  max-width: 680px;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #506376;
}
.page-home .hero-actions {
  margin-top: 24px;
}
.page-home .hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 14px;
  align-items: stretch;
  max-width: 760px;
}
.page-home .fact-pill {
  min-width: 0;
  min-height: 100%;
}
.page-home .hero-members {
  display: grid;
  gap: 10px;
}
.page-home .hero-members strong {
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.page-home .hero-members-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page-home .hero-members-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(16, 53, 95, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #42576d;
  font-size: 13px;
  line-height: 1;
  box-shadow: var(--shadow-soft);
}
.page-home .hero-members-flag {
  display: inline-block;
  width: 18px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(16, 53, 95, 0.08);
  margin-right: 8px;
  line-height: 1;
  flex-shrink: 0;
}
.page-home .hero-actions .btn-primary {
  min-height: 56px;
  padding: 0 28px;
  border-radius: 15px;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 15px;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, #10355f 0%, #1b4d84 100%);
  box-shadow: 0 18px 34px rgba(16, 53, 95, 0.18);
}
.page-home .hero-panel-summary {
  min-height: 0;
  height: 100%;
  display: flex;
  padding: 30px;
  border: 1px solid rgba(16, 53, 95, 0.1);
  background:
    linear-gradient(180deg, rgba(197, 155, 65, 0.94) 0%, rgba(197, 155, 65, 0.28) 100%) left 0 top 30px / 3px calc(100% - 60px) no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 247, 252, 0.94)),
    var(--surface);
  box-shadow: 0 22px 46px rgba(8, 30, 55, 0.08);
}
.page-home .hero-panel-summary .hero-panel-body,
.page-home .hero-summary-slider,
.page-home .summary-slide,
.page-home .summary-block {
  min-height: 0;
}
.page-home .hero-panel-summary .hero-panel-body {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.page-home .hero-summary-slider {
  flex: 0 0 370px;
  position: relative;
  min-height: 0;
}
.page-home .summary-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.page-home .summary-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.page-home .summary-block {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 22px 22px 20px;
  border: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 251, 255, 0.82)),
    rgba(255, 255, 255, 0.72);
  box-shadow: none;
  overflow: hidden;
}
.page-home .summary-block h2 {
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(16, 53, 95, 0.08);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.page-home .hero-panel-summary .feature-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(16, 53, 95, 0.26) transparent;
}
.page-home .hero-panel-summary .feature-list li {
  color: #485b70;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 13.5px;
  line-height: 1.42;
  padding-left: 20px;
}
.page-home .hero-panel-summary .feature-list::-webkit-scrollbar {
  width: 6px;
}
.page-home .hero-panel-summary .feature-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(16, 53, 95, 0.24);
}
.page-home .hero-panel-summary .feature-list li::before {
  top: 8px;
  width: 7px;
  height: 7px;
  background: linear-gradient(180deg, var(--accent), #b18427);
  box-shadow: 0 0 0 4px rgba(197, 155, 65, 0.1);
}
.page-home .summary-slider-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}
.page-home .hero-members-panel {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 53, 95, 0.08);
}
.page-home .hero-members-panel .hero-members-list {
  gap: 8px;
}
.page-home .hero-members-panel .hero-members-list span {
  min-height: 34px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.64);
}
.page-home .hero-members-panel .hero-members-list span.is-chair {
  position: relative;
  background: rgba(16, 53, 95, 0.08);
  border-color: rgba(16, 53, 95, 0.18);
  color: var(--primary);
  font-weight: 700;
}
.page-home .hero-members-panel .hero-members-list span.is-chair em {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: #10355f;
  color: #fff;
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(15, 47, 87, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
}
.page-home .hero-members-panel .hero-members-list span.is-chair:hover em,
.page-home .hero-members-panel .hero-members-list span.is-chair:focus-within em {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.page-home .summary-slider-dot {
  width: 34px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(16, 53, 95, 0.16);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.page-home .summary-slider-dot.is-active {
  background: linear-gradient(90deg, var(--accent), #b18427);
  box-shadow: 0 0 0 4px rgba(197, 155, 65, 0.12);
}
.page-home .summary-slider-dot:hover,
.page-home .summary-slider-dot:focus-visible {
  transform: translateY(-1px);
}
.page-home .site-footer {
  margin-top: auto;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}
.footer-column {
  display: grid;
  align-content: start;
  min-width: 0;
}
.footer-column-contacts {
  justify-items: start;
}
.footer-links {
  align-items: flex-start;
}
.footer-meta {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px 22px;
  white-space: nowrap;
}
.footer-meta a,
.footer-address {
  color: #fff;
  opacity: 0.88;
}
.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-address {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  color: #f4d489;
  flex-shrink: 0;
}
.footer-icon svg {
  width: 14px;
  height: 14px;
}
.footer-meta a:hover,
.to-top:hover {
  opacity: 1;
}
.footer-address {
  line-height: 1.5;
}
.footer-bottom {
  margin-top: 24px;
}
.footer-bottom-line {
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.18), rgba(255,255,255,0.04));
}
.footer-bottom-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding-top: 14px;
  color: rgba(255,255,255,0.56);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.to-top {
  color: #fff;
  font-weight: 700;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-404 .section-404 {
  display: flex;
  align-items: center;
  min-height: clamp(420px, calc(100svh - 210px), 720px);
  padding-top: 40px;
  padding-bottom: 56px;
}
.page-404 .error-shell {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 44px 48px;
  text-align: center;
  overflow: hidden;
}
.page-404 .error-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(16, 53, 95, 0.08), transparent 30%),
    radial-gradient(circle at bottom left, rgba(197, 155, 65, 0.12), transparent 26%);
  pointer-events: none;
}
.page-404 .error-code,
.page-404 .error-head,
.page-404 .error-actions {
  position: relative;
  z-index: 1;
}
.page-404 .error-code {
  margin-bottom: 18px;
  color: rgba(16, 53, 95, 0.18);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(76px, 12vw, 138px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.05em;
}
.page-404 .error-head {
  max-width: 680px;
  margin: 0 auto;
}
.page-404 .error-head h1 {
  margin-top: 18px;
  margin-bottom: 12px;
}
.page-404 .error-head p {
  max-width: 560px;
  margin: 0 auto;
}
.page-404 .error-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

@media (max-width: 1180px) {
  .page-home .hero-panel-summary {
    min-height: 0;
  }

  .page-home .hero-shell-wide {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.96fr);
  }
  .page-home .hero-summary-slider {
    flex-basis: 350px;
  }

  .hero-shell,
  .concept-grid,
  .resource-grid,
  .page-hero-shell,
  .feature-showcase,
  .content-grid,
  .content-grid-wide {
    grid-template-columns: 1fr 1fr;
  }
  .members-wrap,
  .meeting-grid,
  .news-grid,
  .contacts-grid,
  .overview-grid,
  .portal-links,
  .hero-summary-grid {
    grid-template-columns: 1fr 1fr;
  }
  .doc-grid-featured,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .page-home {
    min-height: auto;
    display: block;
  }
  .page-404 .section-404 {
    min-height: auto;
    padding-top: 26px;
    padding-bottom: 40px;
  }
  .page-404 .error-shell {
    padding: 34px 28px;
  }
  .page-home .site-main {
    display: block;
  }
  .page-home .hero-shell-wide {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-home .hero-panel-summary {
    height: auto;
    min-height: 0;
    background:
      linear-gradient(180deg, rgba(197, 155, 65, 0.94) 0%, rgba(197, 155, 65, 0.28) 100%) left 0 top 24px / 3px calc(100% - 48px) no-repeat,
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 247, 252, 0.94)),
      var(--surface);
  }
  .page-home .hero-facts {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    max-width: none;
  }
    .page-home .fact-pill {
      min-height: 100%;
    }
    .page-home .fact-pill strong {
      font-size: 16px;
    }
    .page-home .fact-pill > span:last-child {
      font-size: 12px;
      line-height: 1.3;
    }
    .page-home .fact-pill-text > span:last-child {
      font-size: 11.5px;
      line-height: 1.35;
    }
  .page-home .hero-members-list {
    gap: 8px;
  }
  .page-home .hero-summary-slider {
    flex: 0 0 360px;
    min-height: 360px;
  }
  .page-home .hero-members-panel {
    margin-top: 14px;
    padding-top: 14px;
  }
  .page-members .members-country-nav {
    flex-wrap: wrap;
    overflow: visible;
    padding-bottom: 0;
  }
  .page-members .members-country-float {
    right: 14px;
    left: auto;
    bottom: 14px;
    justify-items: end;
  }
  .page-members .members-country-float-toggle {
    display: inline-flex;
  }
  .page-members .members-country-float-panel {
    width: min(320px, calc(100vw - 24px));
    max-height: min(42vh, 360px);
    overflow-y: auto;
    border-radius: 18px;
    padding: 46px 12px 12px;
  }
  .page-members .members-country-float-close {
    display: inline-flex;
  }
  .page-members .members-country-float-list {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 8px;
    margin-top: 0;
  }
    .page-members .members-country-float .members-country-link {
      width: 100%;
      min-height: 38px;
      justify-content: flex-start;
    }
    .page-members .country-card-commission {
      scroll-margin-top: 96px;
    }
    .page-members .members-wrap-commission {
      grid-template-columns: 1fr;
    }

@media (max-width: 640px) {
  .about-layout {
    gap: 16px;
  }
  .page-home .hero-facts {
    gap: 10px;
  }
    .page-home .fact-pill {
      min-width: 0;
      padding: 12px 14px;
      column-gap: 8px;
    }
    .page-home .fact-pill-icon {
      width: 24px;
      height: 24px;
      border-radius: 9px;
    }
    .page-home .fact-pill-icon svg {
      width: 13px;
      height: 13px;
    }
    .page-home .fact-pill strong {
      font-size: 15px;
    }
    .page-home .fact-pill > span:last-child {
      font-size: 11px;
      line-height: 1.28;
    }
    .page-home .fact-pill-text > span:last-child {
      font-size: 10.5px;
      line-height: 1.32;
    }
    .page-members .members-wrap-commission {
      grid-template-columns: 1fr;
      gap: 16px;
    }
}
  .nav-toggle { display: inline-block; }
  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .hero,
  .section { padding: 72px 0; }
  .hero-home {
    padding-top: 54px;
    padding-bottom: 18px;
  }
  .section-intro { padding-top: 0; padding-bottom: 12px; }
  .hero-shell, .stats-grid, .cols-2, .cols-3, .concept-grid, .doc-grid-featured, .members-wrap, .meeting-grid, .news-grid, .resource-grid, .contacts-grid, .page-hero-shell, .content-grid, .content-grid-wide, .portal-links, .feature-showcase, .overview-grid, .hero-summary-grid { grid-template-columns: 1fr; }
  .hero-lead, .section-head p { font-size: 16px; }
  .page-hero-copy p { font-size: 16px; }
  .cta-panel { grid-template-columns: 1fr; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-bottom-meta {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-contacts .contacts-grid-commission {
    grid-template-columns: 1fr;
  }
  .page-documents .doc-grid-catalog {
    grid-template-columns: 1fr 1fr;
  }
  .page-documents .doc-card,
  .page-news .news-card,
  .page-news-archive .news-archive-item {
    padding: 24px 22px 22px;
  }
  .page-documents .doc-card::before,
  .page-news .news-card::before,
  .page-news-archive .news-archive-item::before {
    top: 24px;
    bottom: 22px;
  }
  .page-news .news-card-meta,
  .page-news-archive .news-archive-head,
  .page-news .news-card-footer {
    align-items: flex-start;
  }
  .page-members .country-card-commission {
    padding: 26px 24px;
  }
  .page-members .country-card-commission::before {
    inset: 26px auto 26px 0;
  }
  .page-members .member-record {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    padding-left: 6px;
  }
  .page-members .country-card-commission h2 {
    font-size: 26px;
  }
  .page-members .member-body h3 {
    font-size: 22px;
  }
  .page-about .page-hero {
    padding-top: 36px;
    padding-bottom: 12px;
  }
  .page-about .prose-card {
    padding: 28px;
  }
  .page-about .prose-card h2 {
    font-size: 24px;
  }
  .page-anchor-nav {
    position: static;
  }
  .page-anchor-nav button {
    min-height: 32px;
    padding: 0 12px;
    font-size: 11px;
  }
  .page-cooperation .prose-card-compact {
    padding: 28px;
  }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 20px), var(--container)); }
  .header-inner { min-height: 76px; }
  .page-404 .error-shell {
    padding: 30px 22px;
  }
  .page-404 .error-actions {
    flex-direction: column;
  }
  .page-404 .error-actions .btn {
    width: 100%;
  }
  .page-home .hero-summary-slider {
    flex-basis: 320px;
    min-height: 320px;
  }
  .page-home .hero-panel-summary {
    background:
      linear-gradient(180deg, rgba(197, 155, 65, 0.94) 0%, rgba(197, 155, 65, 0.28) 100%) left 0 top 20px / 3px calc(100% - 40px) no-repeat,
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 247, 252, 0.94)),
      var(--surface);
  }
  .page-home .hero-lead {
    font-size: 16px;
    line-height: 1.65;
  }
  .page-home .hero-members-panel .hero-members-list span {
    min-height: 32px;
    padding: 0 10px;
    font-size: 12px;
  }
  .footer-meta {
    flex-wrap: wrap;
    white-space: normal;
  }
  .card,
  .resource-card,
  .stat-card { padding: 22px; }
  .hero-copy h1 { font-size: 34px; }
  .hero-home .hero-copy h1 { font-size: 28px; }
  .page-about .page-hero-copy h1 {
    font-size: 28px;
    line-height: 1.12;
  }
  .page-about .page-hero-copy p,
  .page-about .prose-card p,
  .page-about .prose-card ul li,
  .page-about .clean-list li {
    font-size: 15px;
    line-height: 1.7;
  }
  .page-about .prose-card {
    padding: 22px;
  }
  .page-about .prose-card h2 {
      margin-top: 0;
      font-size: 21px;
    }
  .page-anchor-nav {
    gap: 8px;
  }
  .page-anchor-nav button {
    min-height: 30px;
    padding: 0 10px;
    font-size: 10px;
    letter-spacing: 0.04em;
  }
  .page-cooperation .prose-card-compact {
    padding: 22px;
  }
  .page-cooperation .prose-card-compact p,
  .page-cooperation .prose-card-compact .clean-list li {
    font-size: 15px;
    line-height: 1.7;
  }
  .page-contacts .contact-card-commission {
    padding: 22px;
  }
  .page-contacts .contact-card-commission::after {
    top: 22px;
    bottom: 22px;
  }
  .page-contacts .contact-profile {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .page-documents .doc-grid-catalog {
    grid-template-columns: 1fr;
  }
  .page-documents .doc-card,
  .page-news .news-card,
  .page-news-archive .news-archive-item {
    padding: 22px 20px 20px;
  }
  .page-documents .doc-card::before,
  .page-news .news-card::before,
  .page-news-archive .news-archive-item::before {
    top: 22px;
    bottom: 20px;
  }
  .page-documents .doc-card h3 {
    font-size: 21px;
  }
  .page-documents .doc-card p {
    font-size: 15px;
    line-height: 1.65;
  }
  .page-documents .document-file-link {
    align-items: flex-start;
    gap: 12px;
  }
  .page-documents .document-file-side {
    gap: 8px;
  }
  .page-documents .document-file-side-text {
    justify-items: start;
  }
  .page-news .news-card-meta,
  .page-news .news-card-footer,
  .page-news-archive .news-archive-head {
    flex-direction: column;
  }
  .page-news .news-card-media {
    border-radius: 18px;
  }
  .page-news .btn-news-more-overlay {
    right: 12px;
    bottom: 12px;
  }
  .page-news-archive .news-archive-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .page-news-item .news-detail-card {
    padding: 24px;
  }
  .page-news-item .news-detail-media {
    border-radius: 18px;
  }
  .page-news-item .news-detail-excerpt,
  .page-news-item .news-detail-content,
  .page-news-item .news-detail-content p,
  .page-news-item .news-detail-content li {
    font-size: 15px;
    line-height: 1.7;
  }
  .page-contacts .contact-card-commission h2 {
    font-size: 24px;
  }
  .page-contacts .contact-profile {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .page-contacts .contact-org,
  .page-contacts .contact-address,
  .page-contacts .contact-list-commission li {
    font-size: 15px;
  }
  .page-members .country-card-commission {
    padding: 22px;
  }
  .page-members .country-card-commission::before {
    inset: 22px auto 22px 0;
  }
  .page-members .members-country-nav {
    gap: 8px;
    margin-bottom: 20px;
  }
  .page-members .members-country-float {
    right: 12px;
    bottom: 14px;
  }
  .page-members .members-country-float-panel {
    width: min(280px, calc(100vw - 20px));
    padding: 46px 12px 12px;
    border-radius: 18px;
  }
  .page-members .members-country-float-list {
    grid-template-columns: 1fr !important;
    margin-top: 0;
  }
  .page-members .members-country-float .members-country-link {
    width: 100%;
  }
  .page-members .members-country-link {
      min-height: 32px;
      padding: 0 10px;
      font-size: 12px;
    }
    .page-members .country-card-commission h2 {
      font-size: 23px;
    }
    .page-members .country-heading {
      gap: 10px;
    }
  .page-members .country-heading img {
    width: 24px;
    height: 17px;
  }
  .page-members .member-record {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-left: 0;
  }
    .page-members .member-number {
      width: 34px;
      height: 34px;
      font-size: 14px;
    }
    .page-members .member-body h3 {
      font-size: 18px;
      line-height: 1.2;
    }
    .page-members .member-role,
    .page-members .member-contacts li {
      font-size: 13px;
      line-height: 1.5;
    }
    .brand-text strong {
      font-size: 13px;
      -webkit-line-clamp: 3;
    }
  .brand img { width: 48px; height: 48px; }
}

@media (hover: none) and (pointer: coarse) {
    .page-members .members-country-link.is-chair em {
      display: none;
    }
  }

@media (max-width: 520px) {
    .page-members .members-wrap-commission {
      grid-template-columns: 1fr;
      gap: 14px;
    }
    .page-members .members-country-nav {
      gap: 6px;
    }
    .page-members .members-country-link,
    .page-members .members-country-float .members-country-link {
      min-height: 30px;
      padding: 0 9px;
      font-size: 11px;
      line-height: 1.2;
    }
    .page-members .members-country-link img {
      width: 16px;
      height: 11px;
      margin-right: 6px;
    }
    .page-members .country-card-commission {
      padding: 20px 18px;
    }
    .page-members .country-card-commission h2 {
      font-size: 20px;
      line-height: 1.15;
    }
    .page-members .country-heading {
      gap: 8px;
    }
    .page-members .country-heading img {
      width: 22px;
      height: 15px;
    }
    .page-members .member-record {
      gap: 8px;
      padding: 14px 0;
    }
    .page-members .member-number {
      width: 30px;
      height: 30px;
      font-size: 13px;
    }
    .page-members .member-body h3 {
      font-size: 17px;
      line-height: 1.18;
    }
    .page-members .member-role,
    .page-members .member-contacts li,
    .page-members .member-contacts a {
      font-size: 12px;
      line-height: 1.45;
    }
}

