:root {
  --odm-dark: #000343;
  --odm-blue: #566bef;
  --odm-sky: #dee2ff;
  --odm-coral: #ef5035;
  --odm-paper: #f9f9fd;
  --odm-white: #fff;
  --odm-ink: #080b4b;
  --odm-border: rgba(0, 3, 67, 0.16);
  --odm-shell: min(1280px, calc(100vw - 64px));
  --odm-serif: "Noto Serif", Georgia, serif;
  --odm-sans: "DM Sans", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body.odm-theme {
  margin: 0;
  color: var(--odm-ink);
  background: var(--odm-paper);
  font-family: var(--odm-sans);
  font-size: 18px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}

.odm-theme *,
.odm-theme *::before,
.odm-theme *::after {
  box-sizing: border-box;
}

.odm-theme img {
  max-width: 100%;
  height: auto;
}

.odm-theme a {
  color: inherit;
}

.odm-shell {
  width: var(--odm-shell);
  margin-inline: auto;
}

.odm-skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: 12px 18px;
  border-radius: 2px;
  background: #fff;
  color: var(--odm-dark);
  font-weight: 700;
}

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

/* Header */
.odm-site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: 120px;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 3, 67, 0.7), rgba(0, 3, 67, 0));
  transition: height 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.odm-site-header.is-scrolled,
.admin-bar .odm-site-header.is-scrolled {
  height: 86px;
  background: rgba(0, 3, 67, 0.97);
  box-shadow: 0 8px 32px rgba(0, 3, 67, 0.18);
}

.admin-bar .odm-site-header {
  top: 32px;
}

.odm-header-inner {
  width: var(--odm-shell);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.odm-brand-lockup {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 20px;
}

.odm-brand {
  display: block;
  line-height: 0;
}

.odm-brand img {
  display: block;
  width: auto;
  object-fit: contain;
}

.odm-brand-unesco img {
  max-width: 142px;
  height: 56px;
}

.odm-brand-decade img {
  max-width: 94px;
  height: 67px;
}

.odm-brand-divider {
  width: 1px;
  height: 52px;
  background: rgba(255, 255, 255, 0.5);
}

.odm-primary-navigation {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
}

.odm-primary-menu,
.odm-primary-navigation .navbar-nav {
  display: flex;
  align-items: center;
  gap: clamp(15px, 1.7vw, 32px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.odm-primary-menu > li,
.odm-primary-navigation .navbar-nav > li {
  position: relative;
  margin: 0;
  padding: 0;
}

.odm-primary-menu a,
.odm-primary-navigation .navbar-nav a {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.odm-primary-menu > li > a,
.odm-primary-navigation .navbar-nav > li > a {
  padding: 20px 0;
}

.odm-primary-menu > li:last-child > a,
.odm-primary-navigation .navbar-nav > li:last-child > a {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--odm-coral);
}

.odm-primary-menu .sub-menu {
  position: absolute;
  top: calc(100% - 4px);
  left: -22px;
  min-width: 250px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  margin: 0;
  padding: 12px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 3, 67, 0.22);
  list-style: none;
  transition: 180ms ease;
}

.odm-primary-menu .sub-menu::before {
  position: absolute;
  top: -8px;
  left: 26px;
  width: 16px;
  height: 16px;
  transform: rotate(45deg);
  background: #fff;
  content: "";
}

.odm-primary-menu .sub-menu a {
  position: relative;
  padding: 9px 12px;
  border-radius: 7px;
  color: var(--odm-dark);
  font-size: 14px;
}

.odm-primary-menu .sub-menu a:hover,
.odm-primary-menu .sub-menu a:focus-visible {
  color: var(--odm-blue);
  background: var(--odm-paper);
}

.odm-primary-menu li:hover > .sub-menu,
.odm-primary-menu li:focus-within > .sub-menu,
.odm-primary-menu li.is-open > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.odm-search-link {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
}

.odm-search-link svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.odm-menu-toggle {
  display: none;
  align-items: center;
  gap: 12px;
  border: 0;
  background: transparent;
  color: #fff;
  font: 600 14px var(--odm-sans);
}

.odm-menu-icon {
  display: grid;
  gap: 5px;
}

.odm-menu-icon i {
  display: block;
  width: 25px;
  height: 2px;
  background: currentColor;
  transition: 180ms ease;
}

/* Shared hero and buttons */
.odm-eyebrow {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.odm-wave-button,
.odm-theme .c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 28px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: var(--odm-blue);
  color: #fff;
  font: 600 16px/1.2 var(--odm-sans);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.odm-wave-button:hover,
.odm-wave-button:focus-visible,
.odm-theme .c-btn:hover,
.odm-theme .c-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 3, 67, 0.2);
}

.odm-wave-button-light {
  border: 1px solid rgba(255, 255, 255, 0.52);
}

.odm-wave-button-dark {
  background: var(--odm-dark);
}

.odm-entry-hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  background-image: var(--odm-hero-image);
  background-position: center;
  background-size: cover;
  color: #fff;
}

.odm-entry-hero-shade,
.odm-home-hero-shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 3, 67, 0.2) 10%, rgba(0, 3, 67, 0.85) 100%);
}

.odm-entry-hero-inner {
  width: min(980px, calc(100vw - 64px));
  margin: 0 auto;
  padding: 190px 0 90px;
}

.odm-entry-hero h1,
.odm-archive-header h1,
.odm-not-found h1 {
  margin: 0;
  font-family: var(--odm-serif);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.odm-entry-deck {
  max-width: 790px;
  margin-top: 28px;
  font-family: var(--odm-serif);
  font-size: clamp(20px, 2.1vw, 29px);
  line-height: 1.4;
}

.odm-entry-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 48px;
  margin: 38px 0 0;
}

.odm-entry-facts div {
  min-width: 120px;
}

.odm-entry-facts dt {
  margin: 0 0 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  opacity: 0.75;
}

.odm-entry-facts dd {
  margin: 0;
  font-size: 15px;
}

.odm-entry-date {
  margin: 32px 0 0;
  font-size: 15px;
}

.odm-hero-caption {
  position: absolute;
  right: 24px;
  bottom: 18px;
  margin: 0;
  font-size: 12px;
  opacity: 0.75;
}

/* Home */
.odm-home-hero {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
  isolation: isolate;
  background-image: var(--odm-home-image);
  background-position: center;
  background-size: cover;
  color: #fff;
  text-align: center;
}

.odm-home-hero-inner {
  width: min(960px, calc(100vw - 48px));
  padding: 180px 0 100px;
}

.odm-home-hero h1 {
  margin: 0;
  font-family: var(--odm-serif);
  font-size: clamp(48px, 6.6vw, 88px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.odm-home-hero h1 span {
  font-style: italic;
}

.odm-home-hero-inner > p {
  margin: 28px 0 38px;
  font-size: clamp(20px, 2vw, 28px);
}

.odm-home-intro,
.odm-home-take-part {
  padding: 120px 0;
  background: var(--odm-dark);
  color: #fff;
}

.odm-home-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(60px, 9vw, 150px);
}

.odm-home-split h2 {
  margin: 0 0 30px;
  font-family: var(--odm-serif);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.odm-home-split p:not(.odm-eyebrow) {
  margin: 0 0 34px;
  font-size: clamp(18px, 1.8vw, 23px);
}

.odm-orbit-mark {
  position: relative;
  width: min(430px, 75vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-inline: auto;
}

.odm-orbit-mark::before,
.odm-orbit-mark span {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(222, 226, 255, 0.55);
  border-radius: 50%;
  content: "";
}

.odm-orbit-mark span:nth-child(1) { transform: rotate(60deg) scaleX(0.46); }
.odm-orbit-mark span:nth-child(2) { transform: rotate(-60deg) scaleX(0.46); }
.odm-orbit-mark span:nth-child(3) { transform: rotate(90deg) scaleX(0.46); }
.odm-orbit-mark strong {
  font: 400 clamp(70px, 9vw, 138px) var(--odm-serif);
}

.odm-home-toolkit {
  padding: 110px 0;
  background: var(--odm-blue);
  color: #fff;
}

.odm-home-lists {
  padding: 120px 0 80px;
}

.odm-home-list-section {
  padding-bottom: 94px;
}

.odm-section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 36px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--odm-border);
}

.odm-section-heading h2 {
  margin: 0;
  font: 400 clamp(40px, 4.3vw, 64px)/1 var(--odm-serif);
}

.odm-section-heading a {
  color: var(--odm-blue);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

/* Archives and cards */
.odm-archive-header {
  padding: 220px 0 110px;
  background: var(--odm-dark);
  color: #fff;
}

.odm-archive-header p:last-child {
  max-width: 760px;
  margin: 32px 0 0;
  font: 400 clamp(20px, 2vw, 28px)/1.45 var(--odm-serif);
}

.odm-archive-content {
  padding-top: 100px;
  padding-bottom: 120px;
}

.odm-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 65px 30px;
}

.odm-no-results {
  grid-column: 1 / -1;
  margin: 0;
  padding: 42px;
  border: 1px solid var(--odm-border);
  border-radius: 14px;
  background: #fff;
  font: 400 24px/1.4 var(--odm-serif);
}

.odm-card {
  min-width: 0;
}

.odm-card-link {
  display: block;
  color: var(--odm-dark);
  text-decoration: none;
}

.odm-card-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 15px;
  background: var(--odm-sky);
}

.odm-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.odm-card-arrow {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--odm-blue);
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: 220ms ease;
}

.odm-card-link:hover .odm-card-image img,
.odm-card-link:focus-visible .odm-card-image img {
  transform: scale(1.045);
}

.odm-card-link:hover .odm-card-arrow,
.odm-card-link:focus-visible .odm-card-arrow {
  opacity: 1;
  transform: translateY(0);
}

.odm-card-body {
  padding: 24px 3px 0;
}

.odm-card-kicker,
.odm-card-date {
  margin: 0 0 12px;
  color: var(--odm-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.odm-card h2 {
  margin: 0 0 14px;
  font: 400 clamp(25px, 2.2vw, 34px)/1.16 var(--odm-serif);
  letter-spacing: -0.022em;
}

.odm-card-date {
  color: rgba(0, 3, 67, 0.56);
}

.odm-card-excerpt {
  color: rgba(0, 3, 67, 0.78);
  font-size: 16px;
}

.navigation.pagination {
  margin-top: 80px;
}

.navigation.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.navigation.pagination a,
.navigation.pagination span {
  display: grid;
  min-width: 44px;
  min-height: 44px;
  place-items: center;
  padding: 8px 13px;
  border: 1px solid var(--odm-border);
  border-radius: 999px;
  text-decoration: none;
}

.navigation.pagination .current {
  border-color: var(--odm-blue);
  background: var(--odm-blue);
  color: #fff;
}

/* Entries */
.odm-entry-main {
  padding: 100px 0 130px;
  background: var(--odm-paper);
}

.odm-entry-content,
.odm-entry-back {
  width: min(840px, calc(100vw - 48px));
  margin-inline: auto;
}

.odm-prose {
  color: var(--odm-dark);
}

.odm-prose > *:first-child {
  margin-top: 0;
}

.odm-prose p,
.odm-prose li {
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.72;
}

.odm-prose p {
  margin: 0 0 1.55em;
}

.odm-prose h2,
.odm-prose h3,
.odm-prose h4 {
  margin: 2em 0 0.7em;
  font-family: var(--odm-serif);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: -0.025em;
}

.odm-prose h2 { font-size: clamp(36px, 4vw, 56px); }
.odm-prose h3 { font-size: clamp(29px, 3vw, 42px); }
.odm-prose h4 { font-size: 27px; }

.odm-prose a {
  color: var(--odm-blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.odm-prose blockquote {
  margin: 60px 0;
  padding: 36px 42px;
  border: 0;
  border-left: 5px solid var(--odm-blue);
  background: #fff;
  color: var(--odm-dark);
  font: italic 400 25px/1.5 var(--odm-serif);
}

.odm-prose figure,
.odm-prose img {
  border-radius: 14px;
}

.odm-prose figure {
  margin: 55px 0;
}

.odm-prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.odm-prose th,
.odm-prose td {
  padding: 13px;
  border-bottom: 1px solid var(--odm-border);
  text-align: left;
}

.odm-entry-back {
  margin-top: 80px;
  padding-top: 30px;
  border-top: 1px solid var(--odm-border);
}

.odm-entry-back a {
  color: var(--odm-blue);
  font-weight: 700;
  text-decoration: none;
}

/* Preserved legacy pages */
.odm-restored-page {
  overflow: hidden;
  background: #fff;
}

.odm-legacy-content > .container-fluid {
  padding: 0;
}

.odm-legacy-content .c-banner {
  min-height: 700px;
  padding-top: 170px;
  background-position: center;
  background-size: cover;
}

.odm-legacy-content .c-banner h2 {
  font-family: var(--odm-serif);
  font-size: clamp(44px, 5.8vw, 82px);
  font-weight: 400;
  line-height: 1.07;
}

.odm-legacy-content .c-banner h3 {
  font-family: var(--odm-serif);
  font-weight: 400;
}

.odm-legacy-content .c-testata:first-child {
  padding-top: 220px;
}

.odm-legacy-content .content > .c-testata:first-of-type {
  padding-top: 220px;
}

.odm-legacy-content .c-accordion-item_content {
  display: none;
}

.odm-legacy-content .c-accordion-item.is-open .c-accordion-item_content {
  display: block;
}

.odm-legacy-content .js-dropdown .c-accordion-item_title {
  cursor: pointer;
}

.odm-legacy-content iframe {
  max-width: 100%;
}

/* Footer */
.odm-site-footer {
  position: relative;
  padding-top: 84px;
  overflow: hidden;
  background: var(--odm-blue);
  color: #fff;
}

.odm-footer-wave {
  position: absolute;
  top: -30px;
  left: -5%;
  width: 110%;
  height: 90px;
  border-radius: 50% 50% 0 0 / 85% 85% 0 0;
  background: var(--odm-paper);
}

.odm-footer-inner {
  width: var(--odm-shell);
  margin-inline: auto;
  padding: 85px 0 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.odm-footer-navs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.odm-footer-navs ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.odm-footer-navs li {
  margin: 0 0 15px;
}

.odm-footer-navs a,
.odm-social-links a,
.odm-footer-legal a {
  color: #fff;
  text-decoration: none;
}

.odm-footer-navs a:hover,
.odm-social-links a:hover,
.odm-footer-legal a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.odm-footer-identity {
  padding-left: clamp(0px, 5vw, 80px);
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.odm-footer-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 30px;
}

.odm-footer-logos img {
  max-width: 138px;
  max-height: 76px;
  object-fit: contain;
}

.odm-footer-identity p {
  font: 400 25px/1.35 var(--odm-serif);
}

.odm-footer-cta {
  display: inline-block;
  margin: 16px 0 28px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.58);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.odm-social-links {
  display: flex;
  gap: 22px;
  font-size: 14px;
}

.odm-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
  padding: 22px max(32px, calc((100vw - 1280px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  background: var(--odm-dark);
  font-size: 13px;
}

.odm-footer-legal span {
  margin-right: auto;
}

/* Utility states */
.odm-not-found {
  min-height: 720px;
  padding: 240px 0 120px;
  background: var(--odm-dark);
  color: #fff;
}

.odm-not-found p:not(.odm-eyebrow) {
  max-width: 640px;
  font: 400 24px/1.5 var(--odm-serif);
}

.odm-search-form {
  display: flex;
  max-width: 650px;
  margin: 35px 0;
}

.odm-search-form label {
  flex: 1;
}

.odm-search-form input {
  width: 100%;
  min-height: 54px;
  padding: 12px 18px;
  border: 1px solid var(--odm-border);
  border-radius: 999px 0 0 999px;
  background: #fff;
  color: var(--odm-dark);
  font: 16px var(--odm-sans);
}

.odm-search-form button {
  min-width: 110px;
  padding: 12px 22px;
  border: 0;
  border-radius: 0 999px 999px 0;
  background: var(--odm-coral);
  color: #fff;
  font: 700 15px var(--odm-sans);
}

@media (max-width: 1120px) {
  :root { --odm-shell: min(100% - 48px, 1080px); }

  .odm-site-header,
  .odm-site-header.is-scrolled {
    height: 88px;
    background: rgba(0, 3, 67, 0.97);
  }

  .odm-brand-unesco img { max-width: 115px; height: 44px; }
  .odm-brand-decade img { max-width: 70px; height: 54px; }
  .odm-brand-divider { height: 42px; }
  .odm-menu-toggle { display: flex; }

  .odm-primary-navigation {
    position: fixed;
    top: 88px;
    right: 0;
    bottom: 0;
    width: min(440px, 100vw);
    display: block;
    overflow-y: auto;
    padding: 30px 28px 60px;
    background: var(--odm-dark);
    transform: translateX(100%);
    visibility: hidden;
    transition: 220ms ease;
  }

  .admin-bar .odm-primary-navigation { top: 120px; }

  .odm-site-header.menu-open .odm-primary-navigation {
    visibility: visible;
    transform: translateX(0);
  }

  .odm-site-header.menu-open .odm-menu-icon i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .odm-site-header.menu-open .odm-menu-icon i:nth-child(2) { opacity: 0; }
  .odm-site-header.menu-open .odm-menu-icon i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .odm-primary-menu,
  .odm-primary-navigation .navbar-nav {
    display: block;
  }

  .odm-primary-menu > li > a,
  .odm-primary-navigation .navbar-nav > li > a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 18px;
  }

  .odm-primary-menu > li:last-child > a,
  .odm-primary-navigation .navbar-nav > li:last-child > a {
    margin-top: 18px;
    padding: 14px 20px;
    text-align: center;
  }

  .odm-primary-menu .sub-menu {
    position: static;
    display: none;
    visibility: visible;
    opacity: 1;
    transform: none;
    min-width: 0;
    padding: 5px 0 16px 18px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .odm-primary-menu .sub-menu::before { display: none; }
  .odm-primary-menu .sub-menu a { color: #fff; opacity: 0.8; }
  .odm-primary-menu li.is-open > .sub-menu { display: block; }
  .odm-search-link { margin-top: 28px; }
}

@media (max-width: 820px) {
  :root { --odm-shell: calc(100vw - 36px); }
  body.odm-theme { font-size: 17px; }
  .admin-bar .odm-site-header { top: 46px; }
  .admin-bar .odm-primary-navigation { top: 134px; }
  .odm-entry-hero, .odm-home-hero { min-height: 650px; }
  .odm-entry-hero-inner { width: calc(100vw - 36px); padding-bottom: 64px; }
  .odm-entry-hero h1, .odm-archive-header h1, .odm-not-found h1 { font-size: clamp(43px, 12vw, 72px); }
  .odm-home-split { grid-template-columns: 1fr; gap: 60px; }
  .odm-home-intro, .odm-home-toolkit, .odm-home-take-part { padding: 85px 0; }
  .odm-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 55px 22px; }
  .odm-footer-inner { grid-template-columns: 1fr; gap: 60px; }
  .odm-footer-identity { padding: 50px 0 0; border-top: 1px solid rgba(255,255,255,.28); border-left: 0; }
  .odm-legacy-content .c-banner { min-height: 620px; }
}

@media (max-width: 560px) {
  .odm-brand-lockup { gap: 11px; }
  .odm-brand-unesco img { max-width: 90px; }
  .odm-brand-decade img { max-width: 54px; }
  .odm-brand-divider { height: 34px; }
  .odm-menu-toggle-label { display: none; }
  .odm-home-hero-inner { padding-top: 145px; }
  .odm-home-hero h1 { font-size: 42px; }
  .odm-entry-hero { min-height: 600px; }
  .odm-entry-hero-inner { padding-top: 145px; }
  .odm-entry-deck { font-size: 19px; }
  .odm-entry-facts { gap: 15px 24px; }
  .odm-entry-main { padding: 70px 0 90px; }
  .odm-card-grid { grid-template-columns: 1fr; }
  .odm-archive-header { padding: 170px 0 75px; }
  .odm-archive-content { padding: 70px 0 90px; }
  .odm-section-heading { align-items: flex-end; }
  .odm-section-heading h2 { font-size: 38px; }
  .odm-footer-navs { grid-template-columns: 1fr; }
  .odm-footer-legal { display: grid; padding-inline: 18px; }
  .odm-footer-legal span { margin: 0; }
  .odm-search-form { display: block; }
  .odm-search-form input, .odm-search-form button { width: 100%; border-radius: 999px; }
  .odm-search-form button { min-height: 50px; margin-top: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .odm-theme *, .odm-theme *::before, .odm-theme *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
