@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&family=Roboto+Condensed:wght@400;700&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  font-size: 62.5%;
  --un-blue: #009EDB;
  --un-blue-hover: #0086BE;
  --un-blue-dark: #006BA6;
  --header-bg: #FFFFFF;
  --nav-bg: #4D4D4D;
  --body-bg: #FFFFFF;
  --section-bg: #f2f2f2;
  --footer-bg: #4D4D4D;
  --text-primary: #333333;
  --text-heading: #4d4d4d;
  --text-body: #454545;
  --text-light: #999999;
  --link-color: #337ab7;
  --border-gray: #d0d1d5;
  --border-light: #eeeeee;
  --font-main: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-condensed: 'Roboto Condensed', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --max-width: 1170px;
}

body {
  font-family: var(--font-main);
  font-size: 1.6rem;
  line-height: 2rem;
  color: var(--text-primary);
  background: var(--body-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: normal;
}

p {
  font-family: var(--font-main);
  font-weight: 400;
  color: var(--text-body);
  letter-spacing: -0.35px;
}

a { color: #000; text-decoration: none; }
a:hover { text-decoration: none; }
a:focus { outline: dotted 1px #000; outline-offset: 2px; }
p a, .field-item a { border-bottom: dotted 0.1rem #333; }
p a:hover { color: black; }
img { max-width: 100%; display: block; }

/* ═══════════════════════════════════════════
   UN BLUE TOP BAR
   ═══════════════════════════════════════════ */
.un-top-bar {
  background: var(--un-blue);
  height: 40px;
  color: #fff;
  font-size: 1.3rem;
  position: relative;
  z-index: 200;
}
.un-top-bar .wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.un-top-bar .un-label {
  font-weight: 500;
  font-size: 1.3rem;
}
.un-top-bar .un-label a { color: #fff; font-weight: 500; }
.un-top-bar .un-label a:hover { text-decoration: underline; }
.lang-links { display: flex; gap: 0; }
.lang-links a {
  color: rgba(255,255,255,0.85);
  font-size: 1.2rem;
  padding: 0 1.2rem;
  line-height: 3.5rem;
  letter-spacing: 0.03rem;
  transition: color 0.15s;
}
.lang-links a:hover { color: #fff; text-decoration: none; background: transparent; }

/* ═══════════════════════════════════════════
   WHITE HEADER — UN emblem + site name
   ═══════════════════════════════════════════ */
.site-header {
  background: var(--header-bg);
  border-bottom: none;
  padding: 12px 0;
}
.site-header .wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 6rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-header a { color: inherit; text-decoration: none; border-bottom: none; }
.site-header a:hover { text-decoration: none; }
.site-header .un-emblem { height: 60px; width: auto; flex-shrink: 0; }
.header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-brand .brand-name {
  font-family: var(--font-main);
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--text-heading);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 51px;
}
.header-divider {
  width: 1px;
  align-self: stretch;
  background: #c0c0c0;
  flex-shrink: 0;
  margin: 0 6px;
  min-height: 48px;
}
.header-subtitle {
  font-size: 1.4rem;
  color: var(--text-heading);
  line-height: 1.4;
  font-weight: 400;
  max-width: 480px;
}

/* ═══════════════════════════════════════════
   NAVIGATION BAR — Dark gray, un.org style
   ═══════════════════════════════════════════ */
.main-nav {
  background: var(--nav-bg);
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 100;
}
.main-nav .wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.nav-links { display: flex; list-style: none; width: 100%; }
.nav-links a {
  display: flex;
  align-items: center;
  padding: 0 12px;
  height: 42px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
  border-right: 1px solid #ffffff;
  border-bottom: none;
  white-space: nowrap;
  transition: background 0.15s;
}
.nav-links a:last-child { border-right: none; }
.nav-links a:hover {
  background: #e7e7e7;
  color: #000;
  text-decoration: none;
}
.nav-links a.active {
  background: #f2f2f2;
  color: #333;
  font-weight: 700;
}
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 10px; }

/* ═══════════════════════════════════════════
   BREADCRUMBS
   ═══════════════════════════════════════════ */
.breadcrumbs {
  background: var(--body-bg);
  font-size: 1.3rem;
  color: var(--text-light);
  padding: 8px 0;
  margin: 0;
}
.breadcrumbs .wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 6rem;
}
.breadcrumbs a { color: var(--link-color); font-size: 1.3rem; border-bottom: none; }
.breadcrumbs .sep { margin: 0 6px; color: var(--text-light); }

/* ═══════════════════════════════════════════
   HERO SECTION — Full-width image banner
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.05) 100%);
}
.hero .wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 6rem 48px;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero h1 {
  font-family: var(--font-main);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  max-width: 620px;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.hero .lead {
  font-size: 1.7rem;
  line-height: 1.6;
  max-width: 520px;
  opacity: 0.92;
  font-weight: 300;
  color: #fff;
}

/* ═══════════════════════════════════════════
   PAGE BANNER — Inner pages with photo
   ═══════════════════════════════════════════ */
.page-banner {
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}
.page-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
}
.page-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0.05) 100%);
}
.page-banner .wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 6rem 32px;
  position: relative;
  z-index: 2;
  width: 100%;
}
.page-banner h1 {
  font-family: var(--font-main);
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.page-banner p { margin-top: 6px; font-size: 1.5rem; opacity: 0.9; color: #fff; }

/* ═══════════════════════════════════════════
   CONTENT LAYOUT — Sidebar + Main
   ═══════════════════════════════════════════ */
.content-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 20px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
}

/* ═══════════════════════════════════════════
   SIDEBAR — un.org style left nav
   ═══════════════════════════════════════════ */
.sidebar { position: sticky; top: 56px; align-self: start; }
.sidebar-nav {
  background: #fff;
  border: 1px solid var(--border-gray);
}
.sidebar-nav-title {
  background: var(--nav-bg);
  color: #fff;
  font-family: var(--font-condensed);
  font-size: 1.4rem;
  font-weight: 700;
  padding: 10px 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.sidebar-nav ul { list-style: none; }
.sidebar-nav li { border-bottom: 1px solid var(--border-gray); }
.sidebar-nav li:last-child { border-bottom: none; }
.sidebar-nav a {
  display: block;
  padding: 9px 14px;
  font-size: 1.4rem;
  color: var(--text-body);
  border-left: 3px solid transparent;
  transition: all 0.12s;
  border-bottom: none;
}
.sidebar-nav a:hover {
  background: #f9f9f9;
  color: var(--un-blue);
  text-decoration: none;
}
.sidebar-nav a.active {
  border-left-color: var(--un-blue);
  color: var(--un-blue);
  background: #f9f9f9;
  font-weight: 700;
}

/* ═══════════════════════════════════════════
   MAIN CONTENT — Typography (matching un.org)
   ═══════════════════════════════════════════ */
.main-content h2 {
  font-family: var(--font-condensed);
  font-size: 3.2rem;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.77px;
  line-height: 1;
  margin-top: 1.4rem;
  margin-bottom: 0.7rem;
  padding-bottom: 0;
  border-bottom: none;
}
.main-content h2::after {
  content: '';
  display: block;
  margin-left: 1px;
  margin-top: 1.1rem;
  border-top: var(--un-blue) solid 3px;
  width: 33%;
  max-width: 100px;
}
.main-content h2:first-child { margin-top: 0; }
.main-content h3 {
  font-family: var(--font-condensed);
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.5px;
  line-height: 1.05;
  margin-top: 1.4rem;
  margin-bottom: 0.7rem;
}
.main-content h3 a { color: #454545; text-decoration: none; border-bottom: none; }
.main-content h3 a:hover { text-decoration: none; }
.main-content h3::after {
  content: '';
  display: block;
  margin-left: 1px;
  margin-top: 1.1rem;
  border-top: var(--un-blue) solid 3px;
  width: 33%;
  max-width: 100px;
}
.main-content h4 {
  font-family: var(--font-condensed);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: 0.03em;
  margin-top: 0.7rem;
  margin-bottom: 0.7rem;
}
.main-content p { margin-bottom: 14px; color: var(--text-body); line-height: 2rem; font-size: 1.6rem; }
.main-content ul, .main-content ol { margin: 0 0 14px 24px; }
.main-content li { margin-bottom: 6px; color: var(--text-body); line-height: 1.6; font-size: 1.6rem; }
.main-content a { color: var(--link-color); border-bottom: dotted 0.1rem #333; }
.main-content a:hover { color: #000; }
.main-content img { margin: 24px 0; }

/* ═══════════════════════════════════════════
   CALLOUT — Blue left-border block (un.org)
   ═══════════════════════════════════════════ */
.callout {
  border-left: 15px solid #00adef;
  padding: 12px 0 10px 21px;
  margin: 12px 0 20px 10px;
  background: none;
}
.callout p { margin: 0; font-size: 1.6rem; }

/* ═══════════════════════════════════════════
   SECTION WRAPPER
   ═══════════════════════════════════════════ */
.section { padding: 48px 0; }
.section .wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.section-gray { background: var(--section-bg); }
.section-title {
  font-family: var(--font-main);
  font-size: 4rem;
  font-weight: 700;
  color: #454545;
  letter-spacing: -0.1px;
  text-align: center;
  line-height: 1;
  margin-bottom: 8px;
}
.section-title::after {
  content: '';
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-top: 1.05rem;
  border-top: var(--un-blue) solid 3px;
  width: 20%;
}
.section-subtitle {
  font-size: 1.5rem;
  color: var(--text-body);
  margin-bottom: 32px;
  text-align: center;
}

/* ═══════════════════════════════════════════
   PHOTO CARDS — Three focus areas (un.org flat style)
   ═══════════════════════════════════════════ */
.photo-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.photo-card {
  background: #fff;
  border: 1px solid var(--border-gray);
  overflow: hidden;
  border-radius: 0;
  transition: box-shadow 0.2s;
}
.photo-card:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.photo-card-img {
  height: 190px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.photo-card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(transparent, rgba(0,0,0,0.5));
}
.photo-card-label {
  position: absolute;
  bottom: 10px;
  left: 14px;
  z-index: 1;
  background: var(--un-blue);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 3px 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 0;
}
.photo-card-body { padding: 16px 18px 20px; }
.photo-card-body h3 {
  font-family: var(--font-condensed);
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
  line-height: 1.05;
}
.photo-card-body h3::after {
  content: '';
  display: block;
  margin-top: 0.8rem;
  border-top: var(--un-blue) solid 3px;
  width: 33%;
  max-width: 60px;
}
.photo-card-body p {
  font-size: 1.4rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.8rem;
  margin-top: 8px;
}
.photo-card-body .card-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--link-color);
  border-bottom: dotted 0.1rem #333;
}
.photo-card-body .card-link:hover { color: #000; }

/* ═══════════════════════════════════════════
   STAT BANNER
   ═══════════════════════════════════════════ */
.stat-banner {
  background: var(--un-blue);
  padding: 40px 0;
  color: #fff;
}
.stat-banner .wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-condensed);
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1;
}
.stat-label {
  font-size: 1.2rem;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.85;
}

/* ═══════════════════════════════════════════
   SPLIT — Image + Text side by side
   ═══════════════════════════════════════════ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }
.split-img { background-size: cover; background-position: center; min-height: 340px; }
.split-content { padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; }
.split-content h2 {
  font-family: var(--font-condensed);
  font-size: 3.2rem;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.77px;
  line-height: 1;
  margin-bottom: 12px;
}
.split-content h2::after {
  content: '';
  display: block;
  margin-top: 1.1rem;
  border-top: var(--un-blue) solid 3px;
  width: 33%;
  max-width: 100px;
}
.split-content p { font-size: 1.6rem; color: var(--text-body); line-height: 2rem; margin-bottom: 10px; }
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--link-color);
  margin-top: 8px;
  border-bottom: dotted 0.1rem #333;
  width: fit-content;
}
.read-more:hover { gap: 9px; text-decoration: none; color: #000; }

/* ═══════════════════════════════════════════
   INFO BLOCKS — Blue border accent (un.org style)
   ═══════════════════════════════════════════ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.info-block {
  padding: 15px;
  border-left: 15px solid #00adef;
  background: var(--section-bg);
  border-radius: 0;
}
.info-block h4 {
  font-family: var(--font-condensed);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}
.info-block p { font-size: 1.4rem; color: var(--text-body); margin: 0; line-height: 1.8rem; }

/* ═══════════════════════════════════════════
   PROGRAM BLOCKS
   ═══════════════════════════════════════════ */
.program-block { border: 1px solid var(--border-gray); margin-bottom: 20px; overflow: hidden; border-radius: 0; }
.program-block-img { height: 170px; background-size: cover; background-position: center; }
.program-block-header {
  background: var(--section-bg);
  padding: 12px 18px;
  border-bottom: 1px solid var(--border-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.program-block-header h3 {
  font-family: var(--font-condensed);
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.5px;
  margin: 0;
}
.program-block-header h3::after { display: none; }
.program-tag {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--un-blue);
  padding: 3px 10px;
  border-radius: 0;
}
.program-block-body { padding: 18px; }
.program-block-body p { font-size: 1.6rem; margin-bottom: 12px; }
.program-block-body ul { margin: 0 0 0 20px; }
.program-block-body li { font-size: 1.4rem; margin-bottom: 5px; }

/* ═══════════════════════════════════════════
   REGION/COUNTRY CARDS
   ═══════════════════════════════════════════ */
.country-section { margin-bottom: 32px; }
.region-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 14px; }
.region-card {
  background: var(--section-bg);
  padding: 15px;
  border-left: 15px solid var(--un-blue);
  border-radius: 0;
}
.region-card h4 {
  font-family: var(--font-condensed);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}
.region-card p { font-size: 1.4rem; line-height: 1.8rem; color: var(--text-body); margin: 0; }

/* ═══════════════════════════════════════════
   CHALLENGE ITEMS
   ═══════════════════════════════════════════ */
.challenge-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 24px 0; }
.challenge-item {
  display: flex;
  gap: 12px;
  padding: 15px;
  border: 1px solid var(--border-gray);
  background: #fff;
  border-radius: 0;
}
.challenge-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--un-blue);
  display: flex; align-items: center; justify-content: center;
  border-radius: 0;
}
.challenge-item h4 {
  font-family: var(--font-condensed);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}
.challenge-item h4::after { display: none; }
.challenge-item p { font-size: 1.4rem; color: var(--text-body); margin: 0; line-height: 1.8rem; }

/* ═══════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin: 24px 0; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 4px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 9px 12px;
  border: 1px solid #ddd;
  border-radius: 0;
  font-family: var(--font-main); font-size: 1.6rem;
  color: var(--text-body); background: #fff;
  box-shadow: 0 0 0 0;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: #5d9dd5 solid 1px;
  box-shadow: 0 0 8px #5e9ed6;
  border-color: var(--un-blue);
}
.btn-submit {
  display: inline-block; padding: 10px 28px;
  background: var(--un-blue); color: #fff;
  font-family: var(--font-main); font-size: 1.4rem; font-weight: 700;
  border: none; cursor: pointer;
  border-radius: 0;
}
.btn-submit:hover { background: var(--un-blue-hover); }
.contact-block {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-gray);
}
.contact-block:last-child { border-bottom: none; }
.contact-block h4 {
  font-family: var(--font-condensed);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}
.contact-block h4::after { display: none; }
.contact-block p, .contact-block a { font-size: 1.6rem; color: var(--text-body); line-height: 2rem; }
.faq-list { margin-top: 24px; }
.faq-item { border-bottom: 1px solid var(--border-gray); padding: 18px 0; }
.faq-item:first-child { border-top: 1px solid var(--border-gray); }
.faq-item h4 {
  font-family: var(--font-condensed);
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}
.faq-item h4::after { display: none; }
.faq-item p { font-size: 1.6rem; color: var(--text-body); margin: 0; line-height: 2rem; }

/* ═══════════════════════════════════════════
   NEWS / TIMELINE
   ═══════════════════════════════════════════ */
.news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 24px 0; }
.news-card { border: 1px solid var(--border-gray); background: #fff; overflow: hidden; border-radius: 0; }
.news-card-img { height: 160px; background-size: cover; background-position: center; }
.news-card-body { padding: 16px 18px; }
.news-card-date {
  font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--un-blue); margin-bottom: 6px;
}
.news-card-body h3 {
  font-family: var(--font-condensed); font-size: 2rem; font-weight: 700;
  color: #000; margin-bottom: 6px; line-height: 1.05; letter-spacing: -0.5px;
}
.news-card-body h3::after {
  content: '';
  display: block;
  margin-top: 0.8rem;
  border-top: var(--un-blue) solid 3px;
  width: 33%;
  max-width: 60px;
}
.news-card-body p { font-size: 1.4rem; color: var(--text-body); margin: 0; line-height: 1.8rem; margin-top: 6px; }

.timeline { position: relative; margin: 32px 0; padding-left: 28px; }
.timeline::before {
  content: ''; position: absolute; left: 8px; top: 0; bottom: 0;
  width: 2px; background: var(--un-blue); opacity: 0.25;
}
.timeline-item { position: relative; padding-bottom: 28px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ''; position: absolute; left: -24px; top: 4px;
  width: 12px; height: 12px; border-radius: 0;
  background: var(--un-blue); border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--un-blue);
}
.timeline-year {
  font-family: var(--font-condensed); font-size: 1.3rem; font-weight: 700;
  color: var(--un-blue); text-transform: uppercase; letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.timeline-item h4 {
  font-family: var(--font-condensed); font-size: 2rem; font-weight: 700;
  color: var(--text-heading); margin-bottom: 4px;
}
.timeline-item h4::after { display: none; }
.timeline-item p { font-size: 1.4rem; color: var(--text-body); margin: 0; line-height: 1.8rem; }
.timeline-item.highlight::before { background: #E5243B; box-shadow: 0 0 0 2px #E5243B; }

/* ═══════════════════════════════════════════
   FOOTER — Dark gray, un.org style
   ═══════════════════════════════════════════ */
.site-footer { background: var(--footer-bg); color: #fff; padding: 48px 0 20px; }
.site-footer .wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.footer-section h4 {
  font-family: var(--font-condensed);
  font-size: 1.5rem; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 14px;
}
.footer-section p { font-size: 1.5rem; line-height: 2.2rem; color: rgba(255,255,255,0.85); }
.footer-section ul { list-style: none; }
.footer-section li { margin-bottom: 8px; }
.footer-section a { color: rgba(255,255,255,0.85); font-size: 1.5rem; border-bottom: none; }
.footer-section a:hover { color: #fff; text-decoration: underline; }
.footer-bottom {
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  font-size: 1.3rem;
  color: rgba(255,255,255,0.6);
}
.footer-un-logo { display: flex; align-items: center; gap: 12px; }
.footer-un-logo img { height: 56px; opacity: 0.9; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .un-top-bar .wrap,
  .site-header .wrap,
  .breadcrumbs .wrap,
  .hero .wrap,
  .page-banner .wrap { padding-left: 20px; padding-right: 20px; }
  .content-wrap { grid-template-columns: 200px 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split-img { min-height: 260px; }
}
@media (max-width: 768px) {
  :root { font-size: 62.5%; }
  .un-top-bar { height: 34px; }
  .un-top-bar .wrap { padding: 0 15px; }
  .un-top-bar .un-label { font-size: 1.2rem; }
  .lang-links a { font-size: 1.1rem; padding: 0 0.8rem; }
  .site-header .wrap { padding: 0 15px; }
  .site-header .un-emblem { height: 40px; }
  .header-brand .brand-name { font-size: 2rem; line-height: 1.2; }
  .header-divider { min-height: 32px; }
  .header-subtitle { font-size: 1.3rem; max-width: 320px; }
  .nav-toggle {
    display: block;
    float: right;
    background: transparent;
    border: none;
    margin: 4px 15px;
  }
  .nav-toggle .icon-bar {
    display: block;
    width: 31px;
    height: 2px;
    border-radius: 1px;
    background-color: #fff;
    margin: 5px 0;
  }
  .nav-links {
    display: none;
    position: absolute; top: 42px; left: 0; right: 0;
    background: var(--nav-bg);
    flex-direction: column; height: auto;
    border-bottom: 3px solid #333;
    z-index: 200;
    width: 100%;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 0.5em 1em;
    height: auto;
    border-right: none;
    border-bottom: none;
    text-align: left;
    width: 90%;
  }
  .nav-links a.active { background: var(--nav-bg); color: #fff; font-weight: 700; }
  .content-wrap { grid-template-columns: 1fr; padding: 20px 15px; }
  .sidebar { position: static; }
  .hero { min-height: 360px; }
  .hero .wrap { padding: 40px 15px 32px; }
  .hero h1 { font-size: 2.8rem; }
  .page-banner { min-height: 180px; }
  .page-banner .wrap { padding: 30px 15px 24px; }
  .page-banner h1 { font-size: 2.6rem; }
  .section-title { font-size: 3rem; padding: 0; }
  .photo-cards { grid-template-columns: 1fr; }
  .stat-banner .wrap { grid-template-columns: repeat(2, 1fr); }
  .info-grid, .challenge-list, .region-cards, .news-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .split-content { padding: 28px 15px; }
  .breadcrumbs .wrap { padding: 0 15px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  .stat-number { font-size: 3.6rem; }
  .section { padding: 32px 0; }
  .lang-links { display: none; }
}
@media print {
  .un-top-bar, .site-header, .main-nav, .sidebar, .site-footer, .stat-banner { display: none; }
  .content-wrap { grid-template-columns: 1fr; }
}
