:root {
  --sdesj-blue: #0c1f63;
  --sdesj-light-blue: #00bde9;
  --sdesj-red: #e42320;
  --sdesj-green: #36b448;
  --sdesj-yellow: #f9d438;
  --sdesj-gray: #a3a6aa;
  --ink: #101522;
  --muted: #5f6876;
  --surface: #ffffff;
  --soft: #f4f7fb;
  --border: #dfe5ef;
  --shadow: 0 24px 60px rgba(12, 31, 99, 0.12);
  --header-top: 46px;
  --header-height: 64px;
  --font-scale: 1;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: calc(16px * var(--font-scale));
  line-height: 1.5;
}

body.high-contrast {
  --ink: #000000;
  --muted: #1d1d1d;
  --surface: #ffffff;
  --soft: #ffffff;
  --border: #000000;
  --shadow: none;
}

body.no-scroll {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--sdesj-yellow);
  outline-offset: 3px;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 14px;
  color: #fff;
  background: var(--sdesj-blue);
  border-radius: 8px;
}

.accessibility-bar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  height: var(--header-top);
  color: #fff;
  background: #071542;
}

.accessibility-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  width: min(1280px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
}

.top-socials {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.top-socials a {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.top-socials a:hover {
  color: var(--sdesj-blue);
  background: #fff;
  transform: translateY(-1px);
}

.top-socials svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.top-socials a:first-child svg {
  fill: currentColor;
  stroke: none;
}

.top-socials .social-icon-dot {
  fill: currentColor;
  stroke: none;
}

.top-socials .social-icon-play {
  fill: currentColor;
  stroke: none;
}

.language-control select {
  min-height: 24px;
  padding: 3px 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
}

.language-control select {
  color: #fff;
}

.language-control option {
  color: var(--ink);
}

/* GTranslate "dropdown_with_flags" widget (used in .gtranslate-control, both
   the top accessibility bar and the mobile drawer). The plugin renders its
   own markup + a scoped <style> tag at runtime (colors driven by its own
   settings — see the "GTranslate" option) and opens/closes .gt_option via
   JS on click, not CSS — this block only handles layout/sizing so it fits
   the surrounding bar; it must NOT touch `display` on .gt_option or it
   fights the plugin's own open/close logic. */
.gtranslate-control,
.drawer-language.gtranslate-control {
  display: flex;
  align-items: center;
}

.gt_switcher {
  position: relative;
}

/* Google Translate's own UI chrome — the top "banner" iframe (logo + source
   text bar that pushes the whole page down when a language is switched) and
   the floating word-hover tooltip balloon. GTranslate's widget JS already
   hides the raw <select> gadget, but not these; without this, switching
   language visibly injects a "Powered by Google Translate" bar/icon. */
.goog-te-banner-frame.skiptranslate,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-tooltip,
.goog-tooltip:hover,
#goog-gt-vt,
#goog-gt-original-text,
.goog-te-spinner-pos {
  display: none !important;
}

body {
  top: 0 !important;
}

.goog-text-highlight {
  background: none !important;
  box-shadow: none !important;
}

.gt_selected {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
}

.drawer-language.gtranslate-control {
  padding: 12px 24px;
}

/* GTranslate's ".gt_selected" pill always renders with its own light
   background (hardcoded by the plugin's widget generator, independent of
   which page/bar it sits in — see the "GTranslate" option's switcher_*
   colors), so its text must always be dark navy, everywhere it's used.
   This redundant, higher-specificity override just guarantees it even if
   the global option ever drifts back to something unreadable here. */
.drawer-language.gtranslate-control .gt_switcher .gt_selected a {
  color: var(--sdesj-blue) !important;
  border-color: rgba(12, 31, 99, 0.16) !important;
}

.site-header {
  position: fixed;
  top: var(--header-top);
  left: 0;
  z-index: 80;
  width: 100%;
  color: var(--sdesj-blue);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(12, 31, 99, 0.07);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(12, 31, 99, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1280px, calc(100% - 32px));
  height: var(--header-height);
  margin: 0 auto;
}

.header-left,
.header-actions,
.hero-actions,
.involvement-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 106px;
  height: auto;
  filter: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
}

.header-button,
.header-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  color: var(--sdesj-blue);
  background: rgba(12, 31, 99, 0.05);
  border: 1px solid rgba(12, 31, 99, 0.12);
  border-radius: 8px;
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.header-button:hover,
.header-pill:hover {
  color: #fff;
  background: var(--sdesj-blue);
  border-color: var(--sdesj-blue);
  transform: translateY(-1px);
}

.header-pill-primary {
  color: #fff;
  background: var(--sdesj-blue);
  border-color: var(--sdesj-blue);
}

.header-pill-primary:hover {
  background: #081640;
  border-color: #081640;
}

.icon-only {
  width: 40px;
  padding: 0;
}

.hamburger {
  display: inline-grid;
  gap: 4px;
  width: 18px;
  margin-right: 8px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 4px;
}

/**
 * Primary navigation — desktop horizontal bar with hover/focus dropdowns.
 * Hidden below 1025px, where the hamburger + drawer take over instead.
 */
.primary-nav {
  display: none;
}

@media (min-width: 1025px) {
  .menu-trigger {
    display: none;
  }

  .primary-nav {
    display: block;
    margin-left: 12px;
  }

  .primary-nav .menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .primary-nav .menu-item {
    position: relative;
  }

  .primary-nav .menu-link {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    color: var(--sdesj-blue);
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 700;
    transition: background 0.25s ease, color 0.25s ease;
  }

  .primary-nav .menu-link:hover,
  .primary-nav .menu-item.is-current > .menu-link {
    background: rgba(12, 31, 99, 0.06);
  }

  .primary-nav .menu-item-has-children > .menu-link {
    padding-right: 26px;
  }

  .primary-nav .menu-item-has-children > .submenu-toggle {
    position: absolute;
    top: 50%;
    right: 6px;
    width: 14px;
    height: 14px;
    padding: 0;
    background: transparent;
    border: 0;
    transform: translateY(-50%);
    pointer-events: none;
  }

  .primary-nav .menu-item-has-children > .submenu-toggle::before {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    margin: 0 auto;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    color: var(--sdesj-blue);
    transform: rotate(45deg) translateY(-2px);
  }

  /* First-level dropdown ("mega menu" card): items wrap into columns
     instead of stretching into one ever-widening row. */
  .primary-nav > .menu > .menu-item-has-children > .sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    gap: 4px 22px;
    width: max-content;
    max-width: min(620px, 90vw);
    padding: 16px;
    background: #fff;
    border: 1px solid rgba(12, 31, 99, 0.08);
    border-radius: 10px;
    box-shadow: 0 24px 48px rgba(12, 31, 99, 0.16);
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .primary-nav .menu-item-has-children:hover > .sub-menu,
  .primary-nav .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Each first-level column: its own link on top, its grandchildren (if
     any) stacked vertically right underneath — no nested flyout. */
  .primary-nav > .menu > .menu-item-has-children > .sub-menu > .menu-item {
    display: flex;
    flex: 0 1 190px;
    flex-direction: column;
  }

  .primary-nav .sub-menu .menu-link {
    padding: 9px 12px;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 600;
    white-space: nowrap;
    border-radius: 6px;
  }

  .primary-nav .sub-menu .menu-link:hover {
    color: var(--sdesj-blue);
    background: rgba(0, 189, 233, 0.08);
  }

  /* "menu-highlight": elevated/featured submenu entry. Assigned per-item
     from wp-admin (Apparence → Menus → champ "Classes CSS") — currently on
     "Notre sommet annuel". Filled navy pill so it stands out from the plain
     links around it, matching the .header-pill-primary treatment. */
  .primary-nav .sub-menu .menu-item.menu-highlight > .menu-link {
    color: #fff;
    background: var(--sdesj-blue);
    font-weight: 700;
  }

  .primary-nav .sub-menu .menu-item.menu-highlight > .menu-link:hover {
    color: #fff;
    background: #081640;
  }

  .primary-nav > .menu > .menu-item-has-children > .sub-menu > .menu-item > .menu-link {
    font-weight: 700;
    white-space: normal;
  }

  /* Second-level dropdown (sub-menu inside a sub-menu): always-visible
     vertical list under its parent link, not a horizontal flyout card. */
  .primary-nav .sub-menu .sub-menu {
    position: static;
    z-index: auto;
    display: grid;
    gap: 1px;
    width: auto;
    max-width: none;
    margin: 2px 0 0;
    padding: 0 0 0 10px;
    background: transparent;
    border: 0;
    border-left: 2px solid rgba(12, 31, 99, 0.1);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }

  .primary-nav .sub-menu .sub-menu .menu-link {
    padding: 6px 10px;
    font-size: 0.82rem;
    font-weight: 500;
  }

  /* The toggle arrow only makes sense on the top-level trigger; nested
     items' arrows would be redundant noise inside an already-open card. */
  .primary-nav .sub-menu .menu-item-has-children > .submenu-toggle {
    display: none;
  }
}

@media (max-width: 1024px) {
  .primary-nav {
    display: none !important;
  }
}

/**
 * Drawer navigation submenu toggles (mobile/tablet only — see drawer.php).
 * `.sub-menu` starts collapsed; `.submenu-toggle` (JS, script.js) flips
 * `.is-open` on the parent `<li>` and `aria-expanded` on the button.
 */
.drawer-nav .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.drawer-nav .menu-item {
  position: relative;
}

.drawer-nav .menu-item-has-children > .submenu-toggle {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0;
}

.drawer-nav .menu-item-has-children > .submenu-toggle::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  margin: 0 auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  color: var(--sdesj-blue);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.drawer-nav .menu-item-has-children.is-open > .submenu-toggle::before {
  transform: rotate(-135deg);
}

.drawer-nav .menu-item-has-children > .sub-menu {
  display: grid;
  gap: 2px;
  max-height: 0;
  overflow: hidden;
  margin-left: 10px;
  transition: max-height 0.3s ease;
}

.drawer-nav .menu-item-has-children.is-open > .sub-menu {
  max-height: 600px;
}

/* Same "menu-highlight" elevated treatment inside the mobile drawer. */
.drawer-nav .sub-menu .menu-item.menu-highlight > .menu-link {
  color: #fff;
  background: var(--sdesj-blue);
  border-radius: 8px;
  font-weight: 700;
}

.drawer-nav .sub-menu .menu-item.menu-highlight > .menu-link:hover {
  color: #fff;
  background: #081640;
}

.search-icon {
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.search-icon::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -5px;
  width: 8px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
  border-radius: 2px;
}

.drawer,
.search-modal,
.newsletter-panel {
  position: fixed;
  z-index: 120;
  pointer-events: none;
}

.drawer {
  inset: 0;
}

.drawer-panel {
  position: relative;
  z-index: 2;
  width: min(420px, 92vw);
  height: 100%;
  overflow-y: auto;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.32s ease;
}

.drawer.is-open,
.search-modal.is-open,
.newsletter-panel.is-open {
  pointer-events: auto;
}

.drawer.is-open .drawer-panel {
  transform: translateX(0);
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.48);
  border: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.drawer.is-open .drawer-backdrop {
  opacity: 1;
}

.drawer-top,
.modal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.drawer-top {
  padding: 24px;
  border-bottom: 1px solid var(--border);
}

.drawer-top img {
  width: 128px;
}

.close-button {
  position: relative;
  width: 40px;
  height: 40px;
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.close-button::before,
.close-button::after {
  content: "";
  position: absolute;
  top: 19px;
  left: 11px;
  width: 16px;
  height: 2px;
  background: currentColor;
}

.close-button::before {
  transform: rotate(45deg);
}

.close-button::after {
  transform: rotate(-45deg);
}

.drawer-nav {
  display: grid;
  gap: 4px;
  padding: 16px;
}

.drawer-nav > .menu > .menu-item {
  border-bottom: 1px solid rgba(12, 31, 99, 0.08);
}

.drawer-nav .menu-link,
.drawer-action {
  display: block;
  width: 100%;
  padding: 14px 12px;
  border-radius: 8px;
  text-align: left;
}

.drawer-nav > .menu > .menu-item > .menu-link {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--sdesj-blue);
  text-transform: uppercase;
}

.drawer-nav .sub-menu .menu-item {
  margin-left: 10px;
}

.drawer-nav .menu-link,
.drawer-action {
  color: var(--muted);
}

.drawer-action {
  background: transparent;
  border: 0;
}

.drawer-nav .menu-link:hover,
.drawer-action:hover {
  color: var(--sdesj-blue);
  background: rgba(0, 189, 233, 0.08);
}

.drawer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 22px 24px 14px;
}

.drawer-socials a,
.footer-socials a {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.drawer-socials a {
  color: var(--sdesj-blue);
  border-color: var(--border);
}

.drawer-language {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  margin: 0 24px 24px;
  padding: 14px;
  color: var(--sdesj-blue);
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 800;
}

.drawer-language select {
  min-height: 38px;
  padding: 0 30px 0 10px;
  color: var(--sdesj-blue);
  background: #fff;
  border: 1px solid rgba(12, 31, 99, 0.18);
  border-radius: 6px;
  font-weight: 800;
}

.search-modal {
  inset: 0;
  display: grid;
  place-items: start center;
  padding: 112px 16px 32px;
  background: rgba(5, 12, 35, 0.62);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.search-modal.is-open {
  opacity: 1;
}

.search-card {
  width: min(720px, 100%);
  padding: 24px;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.search-modal.is-open .search-card {
  transform: translateY(0);
}

.search-field input,
.stacked-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.search-field {
  display: block;
  margin: 18px 0;
}

.search-results {
  display: grid;
  gap: 8px;
  max-height: 360px;
  overflow: auto;
}

.search-results a,
.search-results p {
  display: block;
  margin: 0;
  padding: 14px;
  background: var(--soft);
  border-radius: 8px;
}

.search-results strong {
  display: block;
  color: var(--sdesj-blue);
}

.newsletter-panel {
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 94vw);
  background: #fff;
  box-shadow: -28px 0 70px rgba(12, 31, 99, 0.22);
  transform: translateX(105%);
  transition: transform 0.32s ease;
}

.newsletter-panel.is-open {
  transform: translateX(0);
}

.newsletter-content {
  display: grid;
  gap: 18px;
  height: 100%;
  overflow-y: auto;
  padding: 28px;
}

.newsletter-fab {
  position: fixed;
  top: 50%;
  right: 0;
  bottom: auto;
  left: auto;
  z-index: 70;
  display: inline-flex;
  min-width: 44px;
  min-height: 132px;
  align-items: center;
  justify-content: center;
  padding: 14px 10px;
  color: #fff;
  background: var(--sdesj-red);
  border: 0;
  border-radius: 8px 0 0 8px;
  box-shadow: -10px 14px 30px rgba(228, 35, 32, 0.24);
  font-weight: 800;
  text-decoration: none;
  text-orientation: mixed;
  transform: translateY(-50%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  writing-mode: vertical-rl;
}

.newsletter-fab:hover {
  box-shadow: -14px 18px 38px rgba(228, 35, 32, 0.3);
  transform: translate(-4px, -50%);
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 70;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  color: #fff;
  background: var(--sdesj-blue);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(12, 31, 99, 0.28);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  pointer-events: none;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--sdesj-light-blue);
  box-shadow: 0 18px 38px rgba(12, 31, 99, 0.34);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 860px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }
}

.stacked-form {
  display: grid;
  gap: 14px;
}

.stacked-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 600;
}

.checkbox-line {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 10px !important;
  font-weight: 400 !important;
}

.checkbox-line input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.form-message {
  min-height: 22px;
  margin: 0;
  color: var(--sdesj-green);
  font-weight: 700;
}

.form-message.is-error {
  color: #c0392b;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-top));
  overflow: hidden;
  color: #fff;
  background: var(--sdesj-blue);
}

.hero-slider,
.hero-slide,
.hero-slide img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  /* !important: Elementor's own frontend.css ships `.elementor img { height: auto; }`
     at the exact same specificity (0,1,1) as this rule, and loads after our
     stylesheet, so it silently wins the cascade on every Elementor-built page —
     collapsing this cover image down to its natural aspect-ratio height instead
     of filling the hero. */
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  transition: transform 7s linear;
}

.hero-slide.is-active img {
  transform: scale(1.14);
}

.hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(5, 11, 32, 0.58) 0%,
    rgba(5, 11, 32, 0.42) 32%,
    rgba(5, 11, 32, 0.18) 52%,
    rgba(5, 11, 32, 0) 70%,
    rgba(255, 255, 255, 0) 78%,
    rgba(255, 255, 255, 0.96) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  align-content: center;
  width: min(1320px, calc(100% - 48px));
  min-height: calc(100svh - var(--header-top));
  margin: 0 auto;
  padding: 132px 0 132px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

.eyebrow.light {
  color: var(--sdesj-yellow);
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero .eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--sdesj-yellow);
}

.hero h1 {
  max-width: 840px;
  margin: 0 auto 24px;
  font-size: 4.6rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.hero-copy {
  max-width: 720px;
  margin: -8px auto 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
}

.primary-button,
.ghost-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 700;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.primary-button {
  color: #fff;
  background: var(--sdesj-blue);
  border: 1px solid var(--sdesj-blue);
}

.primary-button.red {
  background: var(--sdesj-red);
  border-color: var(--sdesj-red);
}

.ghost-button.light {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.outline-button {
  color: var(--sdesj-blue);
  background: transparent;
  border: 1px solid var(--sdesj-blue);
}

.primary-button:hover,
.ghost-button:hover,
.outline-button:hover {
  transform: translateY(-2px);
}

.outline-button:hover {
  color: #fff;
  background: var(--sdesj-blue);
}

.hero-arrow,
.slider-arrow {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
}

.hero-arrow::before,
.slider-arrow::before {
  content: "";
  width: 11px;
  height: 11px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.hero-arrow.previous,
.slider-arrow.previous {
  left: 24px;
}

.hero-arrow.next,
.slider-arrow.next {
  right: 24px;
}

.hero-arrow.previous,
.hero-arrow.next {
  top: 50%;
  color: #fff;
}

.hero-arrow.previous::before,
.slider-arrow.previous::before {
  transform: rotate(-135deg);
}

.hero-arrow.next::before,
.slider-arrow.next::before {
  transform: rotate(45deg);
}

.hero-dots {
  position: absolute;
  top: 112px;
  left: 50%;
  z-index: 4;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  background: rgba(255, 255, 255, 0.5);
  border: 0;
  border-radius: 50%;
}

.hero-dots button.is-active {
  background: #fff;
}

.scroll-cue {
  position: absolute;
  bottom: 92px;
  left: 50%;
  z-index: 4;
  display: grid;
  gap: 10px;
  justify-items: center;
  color: var(--sdesj-blue);
  font-size: 0.84rem;
  font-weight: 600;
  transform: translateX(-50%);
}

.scroll-cue::after {
  content: "";
  width: 18px;
  height: 28px;
  border: 1px solid currentColor;
  border-radius: 20px;
  box-shadow: inset 0 7px 0 -4px currentColor;
  animation: cue 1.4s infinite;
}

@keyframes cue {
  50% {
    transform: translateY(5px);
  }
}

.section.mission-feature {
  scroll-margin-top: calc(var(--header-top) + var(--header-height) + 24px);
  padding: 104px 0 92px;
  background: linear-gradient(180deg, #fff, #fbfdff);
}

.mission-feature-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.78fr);
  gap: 84px;
  align-items: center;
}

.mission-feature-copy {
  max-width: 760px;
}

.mission-feature-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--sdesj-red);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mission-feature-icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--sdesj-red);
  background: rgba(228, 35, 32, 0.1);
  border-radius: 8px;
}

.mission-feature-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
}

.mission-feature .mission-feature-copy h2 {
  max-width: 700px;
  margin: 0;
  color: var(--ink);
  font-size: 3.1rem;
  line-height: 1.05;
  font-weight: 800;
}

.mission-feature .mission-feature-copy h2 strong {
  color: var(--sdesj-blue);
}

.mission-feature-rule {
  display: block;
  width: 64px;
  height: 4px;
  margin: 22px 0 28px;
  background: linear-gradient(90deg, var(--sdesj-red), var(--sdesj-yellow));
  border-radius: 999px;
}

.mission-feature p {
  max-width: 760px;
  margin: 0;
  color: #4f5968;
  font-size: 1.1rem;
  line-height: 1.68;
}

.mission-feature p + p {
  margin-top: 24px;
}

.mission-feature-actions {
  display: grid;
  grid-template-columns: minmax(210px, 1.08fr) minmax(168px, 0.86fr) minmax(150px, 0.72fr);
  gap: 12px;
  align-items: center;
  margin-top: 38px;
}

.mission-feature-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border: 2px solid currentColor;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.mission-feature-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.mission-feature-button.primary {
  color: #fff;
  background: var(--sdesj-red);
  border-color: var(--sdesj-red);
  box-shadow: 0 18px 32px rgba(228, 35, 32, 0.18);
}

.mission-feature-button.navy {
  color: var(--sdesj-blue);
  background: #fff;
}

.mission-feature-button.green {
  color: var(--sdesj-green);
  background: #fff;
}

.mission-feature-button:hover {
  transform: translateY(-2px);
}

.mission-feature-button.navy:hover {
  color: #fff;
  background: var(--sdesj-blue);
}

.mission-feature-button.green:hover {
  color: #fff;
  background: var(--sdesj-green);
}

.mission-feature-media {
  justify-self: end;
  width: min(100%, 560px);
}

.mission-feature-media img {
  width: 100%;
  aspect-ratio: 16 / 10.2;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 26px 62px rgba(12, 31, 99, 0.16);
}

.stats-band {
  position: relative;
  z-index: 5;
  margin-top: -46px;
  padding: 0 16px 54px;
}

.stats-band + .mission-feature {
  padding-top: 62px;
}

.stats-card {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 36px 44px;
  color: var(--sdesj-blue);
  background: #fff;
  border: 1px solid rgba(12, 31, 99, 0.08);
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(12, 31, 99, 0.14);
}

.stats-card h2 {
  margin: 0 0 28px;
  color: var(--muted);
  text-align: left;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stats-card h2::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 2px;
  margin-right: 10px;
  background: var(--sdesj-red);
  vertical-align: middle;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.stats-grid div {
  display: grid;
  justify-items: start;
  gap: 6px;
  padding: 0 22px;
  text-align: left;
  border-left: 1px solid rgba(12, 31, 99, 0.1);
}

.stats-grid div:first-child {
  padding-left: 0;
  border-left: 0;
}

.stats-grid strong {
  color: var(--sdesj-blue);
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1;
}

.stats-grid div:nth-child(4) strong {
  color: var(--sdesj-red);
}

.stats-grid span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.section {
  padding: 80px 0;
}

.section-inner {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 64px;
  align-items: start;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.section h2 {
  margin: 0;
  color: var(--ink);
  font-size: 3rem;
  line-height: 1.08;
  font-weight: 700;
}

.section-heading p,
.text-column p,
.observatory-copy p,
.involvement-layout p {
  color: var(--muted);
  font-size: 1.08rem;
}

.mission-section {
  padding-top: 40px;
}

.mission-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.mission-points a,
.publication-links a {
  padding: 10px 12px;
  color: var(--sdesj-blue);
  background: rgba(0, 189, 233, 0.08);
  border: 1px solid rgba(0, 189, 233, 0.2);
  border-radius: 8px;
  font-weight: 700;
}

.programs-section,
.news-section {
  background: var(--soft);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.event-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(12, 31, 99, 0.08);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(12, 31, 99, 0.08);
}

.program-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(12, 31, 99, 0.06);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(12, 31, 99, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(12, 31, 99, 0.18);
}

.program-card-media {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.program-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.program-card:hover .program-card-media img {
  transform: scale(1.07);
}

.program-card-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 65%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.55) 60%, #fff 100%);
  pointer-events: none;
}

.program-card-body {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 28px 26px 30px;
}

.program-card.has-image .program-card-body {
  margin-top: -28px;
  padding-top: 8px;
}

.program-card-body .accent-line {
  margin-bottom: 2px;
}

.program-card h3,
.event-card h3 {
  margin: 0;
  color: var(--sdesj-blue);
  font-size: 1.22rem;
  font-weight: 800;
  line-height: 1.2;
}

.featured-news h3,
.news-list h3 {
  margin: 0;
  font-size: 1.22rem;
  font-weight: 800;
  line-height: 1.2;
}

.program-card p,
.event-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.featured-news p,
.news-list p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

.program-card ul {
  display: grid;
  gap: 8px;
  margin: 4px 0 6px;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.program-card ul li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9rem;
}

.program-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sdesj-blue);
  opacity: 0.35;
}

.program-card a,
.event-card a {
  color: var(--sdesj-blue);
  font-weight: 700;
}

.featured-news a,
.news-list a {
  font-weight: 700;
}

.program-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  transition: gap 0.25s ease;
}

.program-card-link:hover {
  gap: 10px;
}

.accent-line {
  width: 56px;
  height: 4px;
  border-radius: 8px;
}

.blue-line {
  background: var(--sdesj-blue);
}

.green-line {
  background: var(--sdesj-green);
}

.cyan-line {
  background: var(--sdesj-light-blue);
}

.red-line {
  background: var(--sdesj-red);
}

.events-section {
  background: #fff;
  scroll-margin-top: calc(var(--header-top) + var(--header-height) + 24px);
}

.slider-shell {
  position: relative;
}

.events-viewport {
  overflow: hidden;
}

.events-track {
  display: flex;
  gap: 24px;
  transition: transform 0.35s ease;
}

.event-card {
  flex: 0 0 calc((100% - 48px) / 3);
}

.event-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.event-card div {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.slider-arrow {
  top: 42%;
  color: var(--sdesj-blue);
  background: #fff;
  border-color: var(--border);
  box-shadow: 0 12px 30px rgba(12, 31, 99, 0.12);
}

.slider-arrow.previous {
  left: -18px;
}

.slider-arrow.next {
  right: -18px;
}

.badge {
  display: inline-flex;
  width: fit-content;
  padding: 5px 9px;
  color: var(--sdesj-blue);
  background: rgba(0, 189, 233, 0.12);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 800;
}

.badge.report {
  color: #fff;
  background: var(--sdesj-blue);
}

.badge.project {
  color: #fff;
  background: var(--sdesj-red);
}

.badge.program {
  color: #fff;
  background: var(--sdesj-green);
}

.meta {
  color: var(--muted);
  font-size: 0.88rem;
}

/* News section — "bento" magazine grid: one large featured tile plus a
   mosaic of varying-size photo tiles, all in a single grid (the `.news-list`
   wrapper is rendered `display: contents` so its `article` children act as
   direct siblings of `.featured-news` inside `.news-layout`'s grid, without
   needing any change to the widget's PHP markup). Every tile has a
   photo-first, gradient-overlay-text design; tiles without an image fall
   back to a solid navy background so the white text stays readable. */
.news-layout {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 130px;
  gap: 20px;
}

.featured-news,
.news-list article {
  position: relative;
  overflow: hidden;
  background: var(--sdesj-blue);
  border: 0;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(12, 31, 99, 0.16);
  transition: box-shadow 0.35s ease;
}

.featured-news:hover,
.news-list article:hover {
  box-shadow: 0 26px 56px rgba(12, 31, 99, 0.24);
}

.featured-news {
  grid-column: span 4;
  grid-row: span 3;
  display: block;
}

.featured-news img,
.news-list img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-news:hover img,
.news-list article:hover img {
  transform: scale(1.06);
}

.featured-news div,
.news-list div {
  /* The text panel is anchored to the BOTTOM of the tile and only as tall as
     its own content (badge + date + title + excerpt + link), with its own
     dark gradient. That way the scrim always backs the whole text block —
     including the category badge and the date at the top — instead of being
     tied to the (variable) card height, while the image stays fully visible
     above the panel. A soft top fade blends the panel into the photo. */
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 46px 26px 26px;
  background: linear-gradient(180deg, rgba(4, 10, 36, 0) 0%, rgba(4, 10, 36, 0.72) 30%, rgba(4, 10, 36, 0.92) 100%);
}

.featured-news h3,
.news-list h3 {
  color: #fff;
  /* Extra insurance against very light images regardless of scrim. */
  text-shadow: 0 1px 14px rgba(2, 6, 24, 0.6);
  /* Cap the title height so a very long headline doesn't grow the text block
     up over the whole photo. */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-news p,
.news-list p {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 10px rgba(2, 6, 24, 0.5);
}

/* Excerpt (the plain <p>, not the .meta date): clamp it so long summaries
   don't fill the tile and bury the image. The text block stays compact and
   bottom-anchored, leaving the top of the photo visible. */
.featured-news p:not(.meta),
.news-list p:not(.meta) {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Small mosaic tiles are shorter than the featured one — clamp their title to
   two lines and their excerpt to a single line so as much of the photo as
   possible shows through above the compact text block. */
.news-list article h3 {
  -webkit-line-clamp: 2;
}

.news-list article p:not(.meta) {
  -webkit-line-clamp: 2;
}

.featured-news .meta,
.news-list .meta {
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 1px 10px rgba(2, 6, 24, 0.55);
}

.featured-news a,
.news-list a {
  color: #fff;
}

.featured-news h3 {
  font-size: 1.7rem;
}

.news-list {
  display: contents;
}

.news-list article {
  grid-column: span 2;
  grid-row: span 2;
}

/* Mosaic variety: every third tile (in the small-card sequence) runs taller,
   breaking the grid into an asymmetric magazine layout instead of a flat
   uniform repeat. */
.news-list article:nth-child(3n+1) {
  grid-row: span 3;
}

.news-list article .archive-card-excerpt,
.news-list article .meta {
  font-size: 0.85rem;
}

.news-archive-link {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.news-archive-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  color: var(--sdesj-blue);
  background: transparent;
  border: 1px solid var(--sdesj-blue);
  border-radius: 8px;
  font-weight: 700;
  transition: color 0.25s ease, background 0.25s ease, gap 0.25s ease;
}

.news-archive-button:hover {
  color: #fff;
  background: var(--sdesj-blue);
  gap: 12px;
}

/**
 * Single article (single.php) — redesigned reading experience.
 */
.single-article-intro {
  background: var(--soft);
}

.single-article-intro-inner {
  width: min(820px, calc(100% - 40px));
  padding: calc(var(--header-height) + 64px) 0 48px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
  transition: color 0.25s ease, gap 0.25s ease;
}

.back-link:hover {
  color: var(--sdesj-blue);
  gap: 12px;
}

.single-article-meta-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.single-article-meta-top .meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.single-article-title {
  margin: 0 0 16px;
  font-size: 2.7rem;
  line-height: 1.12;
}

.single-article-excerpt {
  margin: 0;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.6;
}

.single-featured-image {
  margin: -28px 0 0;
}

.single-featured-image .section-inner {
  width: min(1080px, calc(100% - 40px));
}

.single-featured-image img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(12, 31, 99, 0.16);
}

.single-article-body {
  width: min(760px, calc(100% - 40px));
  padding: 56px 0 24px;
}

.page-content {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.8;
}

.page-content > * + * {
  margin-top: 22px;
}

.page-content h2 {
  margin-top: 44px;
  color: var(--sdesj-blue);
  font-size: 1.7rem;
  line-height: 1.25;
}

.page-content h3 {
  margin-top: 36px;
  color: var(--sdesj-blue);
  font-size: 1.35rem;
  line-height: 1.3;
}

.page-content a {
  color: var(--sdesj-blue);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(12, 31, 99, 0.3);
  text-underline-offset: 2px;
}

.page-content a:hover {
  text-decoration-color: var(--sdesj-blue);
}

.page-content blockquote {
  margin: 0;
  padding: 4px 0 4px 22px;
  color: var(--sdesj-blue);
  border-left: 3px solid var(--sdesj-yellow);
  font-size: 1.18rem;
  font-style: italic;
  line-height: 1.6;
}

.page-content ul,
.page-content ol {
  padding-left: 22px;
}

.page-content li + li {
  margin-top: 8px;
}

.page-content img {
  width: 100%;
  border-radius: 12px;
}

.page-content figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.single-article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.single-tag {
  padding: 6px 12px;
  color: var(--sdesj-blue);
  background: rgba(0, 189, 233, 0.1);
  border-radius: 20px;
  font-size: 0.84rem;
  font-weight: 700;
  transition: color 0.25s ease, background 0.25s ease;
}

.single-tag:hover {
  color: #fff;
  background: var(--sdesj-blue);
}

.related-articles {
  background: var(--soft);
}

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

.related-articles-list article {
  grid-template-columns: 1fr;
}

.related-articles-list img {
  aspect-ratio: 16 / 10;
  border-radius: 8px 8px 0 0;
}

@media (max-width: 860px) {
  .single-article-intro-inner {
    padding-top: calc(var(--header-height) + 48px);
  }

  .single-article-title {
    font-size: 2rem;
  }

  .single-featured-image img {
    border-radius: 10px;
  }

  .related-articles-list {
    grid-template-columns: 1fr;
  }
}

/**
 * Archive / posts listing (archive.php, index.php) — redesigned grid.
 */
.archive-intro {
  background: var(--soft);
}

.archive-intro-inner {
  padding: calc(var(--header-height) + 64px) 0 48px;
}

.archive-intro .page-title {
  margin: 0 0 14px;
  font-size: 2.7rem;
  line-height: 1.12;
}

.archive-intro-description {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.6;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding: 56px 0 24px;
}

.archive-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(12, 31, 99, 0.06);
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(12, 31, 99, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.archive-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 52px rgba(12, 31, 99, 0.14);
}

.archive-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.archive-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.archive-card:hover .archive-card-media img {
  transform: scale(1.05);
}

.archive-card-body {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
}

.archive-card-body .meta {
  margin: 0;
}

.archive-card-body h2 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.3;
}

.archive-card-body h2 a {
  color: var(--sdesj-blue);
}

.archive-card-excerpt {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.archive-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  color: var(--sdesj-blue);
  font-weight: 700;
  font-size: 0.9rem;
  transition: gap 0.25s ease;
}

.archive-card-link:hover {
  gap: 10px;
}

.pagination,
.navigation.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 24px 0 64px;
}

.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  color: var(--sdesj-blue);
  background: #fff;
  border: 1px solid rgba(12, 31, 99, 0.14);
  border-radius: 8px;
  font-weight: 700;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.pagination .page-numbers:hover {
  color: #fff;
  background: var(--sdesj-blue);
  border-color: var(--sdesj-blue);
}

.pagination .page-numbers.current {
  color: #fff;
  background: var(--sdesj-blue);
  border-color: var(--sdesj-blue);
}

@media (max-width: 1024px) {
  .archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .archive-grid {
    grid-template-columns: 1fr;
  }

  .archive-intro-inner {
    padding-top: calc(var(--header-height) + 48px);
  }

  .archive-intro .page-title {
    font-size: 2rem;
  }
}

.observatory-section {
  color: #fff;
  background: linear-gradient(135deg, var(--sdesj-blue), #113984 58%, var(--sdesj-light-blue));
}

.observatory-section h2,
.observatory-section p {
  color: #fff;
}

.observatory-copy {
  display: grid;
  gap: 24px;
}

.publication-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.publication-links a {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.involvement-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  padding: 40px;
  background: linear-gradient(90deg, rgba(0, 189, 233, 0.08), rgba(54, 180, 72, 0.08));
  border: 1px solid rgba(12, 31, 99, 0.08);
  border-radius: 8px;
}

.subpage-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 620px;
  overflow: hidden;
  color: #fff;
  background: var(--sdesj-blue);
}

.subpage-hero img,
.subpage-hero-overlay {
  position: absolute;
  inset: 0;
}

.subpage-hero img {
  /* !important: see .hero-slide img above — same Elementor `.elementor img`
     specificity collision. */
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.subpage-hero-overlay {
  background: linear-gradient(105deg, rgba(12, 31, 99, 0.94), rgba(12, 31, 99, 0.68), rgba(0, 189, 233, 0.22));
}

.subpage-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 22px;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 86px;
}

.subpage-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: 4.6rem;
  line-height: 0.98;
  font-weight: 800;
}

.subpage-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
}

.sommet-anchor-nav {
  position: sticky;
  top: calc(var(--header-top) + var(--header-height) + 12px);
  z-index: 30;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(1060px, calc(100% - 32px));
  margin: -34px auto 0;
  padding: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(12, 31, 99, 0.1);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(12, 31, 99, 0.12);
  backdrop-filter: blur(14px);
}

.sommet-anchor-nav a {
  min-height: 40px;
  padding: 9px 14px;
  color: var(--sdesj-blue);
  border-radius: 8px;
  font-weight: 800;
  transition: color 0.3s ease, background 0.3s ease;
}

.sommet-anchor-nav a:hover {
  color: #fff;
  background: var(--sdesj-blue);
}

.sommet-section {
  padding-top: 72px;
}

.sommet-lead {
  padding-left: 28px;
  border-left: 4px solid var(--sdesj-light-blue);
}

.sommet-lead p {
  margin: 0;
  color: var(--muted);
  font-size: 1.28rem;
  line-height: 1.75;
}

.declaration-section {
  background: var(--soft);
}

.declaration-heading h2 {
  color: var(--sdesj-blue);
}

.declaration-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(12, 31, 99, 0.1);
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(12, 31, 99, 0.1);
}

.declaration-kicker {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 34px;
  color: #fff;
  background: linear-gradient(160deg, var(--sdesj-blue), #123a87);
}

.declaration-kicker span {
  color: var(--sdesj-yellow);
  font-weight: 800;
  text-transform: uppercase;
}

.declaration-kicker strong {
  max-width: 220px;
  font-size: 2rem;
  line-height: 1.08;
}

.declaration-body {
  display: grid;
  gap: 18px;
  padding: 40px;
}

.declaration-body p {
  margin: 0;
  color: #394253;
  font-size: 1.06rem;
  line-height: 1.75;
}

.declaration-body p:first-child {
  color: var(--sdesj-blue);
  font-size: 1.22rem;
  font-weight: 700;
}

.values-section {
  background: #fff;
}

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

.value-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 250px;
  padding: 28px;
  background: linear-gradient(180deg, #fff, #f7fbff);
  border: 1px solid rgba(12, 31, 99, 0.1);
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.value-card:hover {
  border-color: rgba(0, 189, 233, 0.42);
  box-shadow: 0 18px 44px rgba(12, 31, 99, 0.1);
  transform: translateY(-4px);
}

.value-card span {
  width: fit-content;
  padding: 6px 10px;
  color: #fff;
  background: var(--sdesj-blue);
  border-radius: 8px;
  font-weight: 800;
}

.value-card:nth-child(2) span,
.value-card:nth-child(6) span {
  background: var(--sdesj-green);
}

.value-card:nth-child(3) span {
  background: var(--sdesj-red);
}

.value-card:nth-child(4) span {
  color: var(--sdesj-blue);
  background: var(--sdesj-yellow);
}

.value-card:nth-child(5) span {
  background: var(--sdesj-light-blue);
}

.value-card h3 {
  margin: 0;
  color: var(--sdesj-blue);
  font-size: 1.35rem;
}

.value-card p {
  margin: 0;
  color: var(--muted);
}

.mandate-section {
  background: linear-gradient(180deg, #fff, #f8fbff);
}

.mandate-inner {
  max-width: 1120px;
}

.mandate-heading {
  margin-bottom: 56px;
}

.mandate-heading h2 {
  color: var(--ink);
}

.mandate-heading p {
  max-width: none;
  margin: 22px 0 0;
  color: #69758a;
  font-size: 1.16rem;
  font-weight: 700;
}

.mandate-rule {
  display: block;
  width: 62px;
  height: 4px;
  margin: 22px auto 0;
  background: linear-gradient(90deg, var(--sdesj-blue), var(--sdesj-green));
  border-radius: 999px;
}

.mandate-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.mandate-card {
  --mandate-accent: var(--sdesj-blue);
  --mandate-soft: rgba(12, 31, 99, 0.08);
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  min-height: 172px;
  padding: 34px 34px 30px;
  background: #fff;
  border: 1px solid rgba(12, 31, 99, 0.08);
  border-left: 4px solid var(--mandate-accent);
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(12, 31, 99, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.mandate-card:hover {
  border-color: rgba(12, 31, 99, 0.16);
  box-shadow: 0 24px 46px rgba(12, 31, 99, 0.14);
  transform: translateY(-4px);
}

.mandate-card.red {
  --mandate-accent: var(--sdesj-red);
  --mandate-soft: rgba(228, 35, 32, 0.1);
}

.mandate-card.green {
  --mandate-accent: var(--sdesj-green);
  --mandate-soft: rgba(54, 180, 72, 0.1);
}

.mandate-card.yellow {
  --mandate-accent: var(--sdesj-yellow);
  --mandate-soft: rgba(249, 212, 56, 0.16);
}

.mandate-card.cyan {
  --mandate-accent: var(--sdesj-light-blue);
  --mandate-soft: rgba(0, 189, 233, 0.1);
}

.mandate-card.blue {
  --mandate-accent: var(--sdesj-blue);
  --mandate-soft: rgba(12, 31, 99, 0.1);
}

.mandate-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: var(--mandate-soft);
  border-radius: 8px;
}

.mandate-icon::after {
  content: "";
  width: 16px;
  height: 16px;
  background: var(--mandate-accent);
  border-radius: 5px;
}

.mandate-card h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 1.38rem;
  line-height: 1.15;
}

.mandate-card p {
  margin: 0;
  color: #677286;
  font-size: 1.05rem;
  font-weight: 650;
  line-height: 1.62;
}

.sommet-cta-section {
  color: #fff;
  background: linear-gradient(105deg, var(--sdesj-blue), #123a87 58%, var(--sdesj-light-blue));
}

.sommet-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
}

.sommet-cta h2 {
  color: #fff;
}

/* ============================================================
   SOMMET PAGE — REFONTE MODERNE
   ============================================================ */

/* ── Shared ── */
.smt-section-inner {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.smt-tag {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  background: rgba(12, 31, 99, 0.08);
  border: 1px solid rgba(12, 31, 99, 0.12);
  border-radius: 999px;
  color: var(--sdesj-blue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.smt-tag-dark {
  background: rgba(12, 31, 99, 0.92);
  border-color: transparent;
  color: #fff;
}

.smt-tag-light {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

/* ── Hero ── */
.smt-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
}

.smt-hero-media {
  position: absolute;
  inset: 0;
}

.smt-hero-media img {
  /* !important: see .hero-slide img above — same Elementor `.elementor img`
     specificity collision. */
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center 30%;
}

.smt-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg,   rgba(8, 20, 60, 0.97) 0%,  rgba(8, 20, 60, 0.78) 36%, transparent 72%),
    linear-gradient(100deg, rgba(8, 20, 60, 0.72) 0%, transparent 58%);
}

.smt-hero-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0;
  min-height: 100svh;
}

.smt-hero-content {
  display: grid;
  gap: 24px;
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
  padding: 200px 0 56px;
}

.smt-hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.smt-kicker-pill {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  background: var(--sdesj-light-blue);
  border-radius: 999px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.smt-kicker-sep {
  display: block;
  width: 18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.smt-hero-content h1 {
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.smt-hero-lead {
  margin: 0;
  max-width: 620px;
  font-size: 1.18rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.smt-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.smt-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--sdesj-red);
  border-radius: 10px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.22s ease, transform 0.22s ease;
}

.smt-btn-primary:hover {
  background: #c0100e;
  transform: translateY(-2px);
  color: #fff;
}

.smt-btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.34);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.22s ease, background 0.22s ease;
}

.smt-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.smt-hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  background: rgba(8, 20, 60, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.smt-hero-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 16px;
}

.smt-hero-stat strong {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.smt-hero-stat strong sup {
  font-size: 1rem;
  vertical-align: super;
}

.smt-hero-stat span {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
}

.smt-hero-stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

/* ── Mission ── */
.smt-mission {
  padding: 96px 0;
  background: #fff;
}

.smt-mission-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: start;
  margin-top: 32px;
}

.smt-mission-left h2 {
  margin: 16px 0 0;
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--sdesj-blue);
  letter-spacing: -0.02em;
}

.smt-mission-quote {
  margin: 0;
  padding: 0 0 0 24px;
  border-left: 3px solid var(--sdesj-light-blue);
}

.smt-mission-quote p {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.75;
  color: #394253;
}

.smt-mission-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.smt-mission-chips span {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 14px;
  background: var(--soft);
  border: 1px solid rgba(12, 31, 99, 0.1);
  border-radius: 999px;
  color: var(--sdesj-blue);
  font-size: 0.82rem;
  font-weight: 700;
}

/* ── Declaration ── */
.smt-declaration {
  padding: 96px 0;
  background: var(--soft);
}

.smt-decl-header {
  display: grid;
  gap: 12px;
  margin-bottom: 56px;
}

.smt-decl-header h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--sdesj-blue);
  letter-spacing: -0.02em;
  line-height: 1;
}

.smt-decl-subtitle {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.smt-decl-body {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  background: #fff;
  border: 1px solid rgba(12, 31, 99, 0.08);
  border-radius: 20px;
  overflow: hidden;
}

.smt-decl-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px 0;
  background: linear-gradient(180deg, var(--sdesj-blue), #1a4db8);
}

.smt-decl-sidebar-line {
  flex: 1;
  width: 2px;
  background: rgba(255, 255, 255, 0.18);
  min-height: 200px;
}

.smt-decl-sidebar-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.smt-decl-text {
  display: grid;
  gap: 20px;
  padding: 40px 48px 40px 0;
}

.smt-decl-text p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.78;
  color: #4a5568;
}

.smt-decl-lead {
  font-size: 1.18rem !important;
  font-weight: 700;
  color: var(--sdesj-blue) !important;
  line-height: 1.6 !important;
}

/* ── Valeurs ── */
.smt-valeurs {
  padding: 96px 0;
  background: #fff;
}

.smt-valeurs-header {
  display: grid;
  gap: 16px;
  margin-bottom: 56px;
}

.smt-valeurs-header h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 900;
  color: var(--sdesj-blue);
  letter-spacing: -0.02em;
  max-width: 640px;
}

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

.smt-valeur-card {
  --valeur-accent: var(--sdesj-blue);
  --valeur-soft: rgba(12, 31, 99, 0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px 26px 30px;
  background: #fff;
  border: 1px solid rgba(12, 31, 99, 0.08);
  border-radius: 16px;
  transition: transform 0.26s ease, box-shadow 0.26s ease;
  overflow: hidden;
  position: relative;
}

.smt-valeur-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--valeur-accent);
  border-radius: 16px 16px 0 0;
}

.smt-valeur-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(12, 31, 99, 0.1);
}

.smt-valeur-blue  { --valeur-accent: var(--sdesj-blue); --valeur-soft: rgba(12, 31, 99, 0.07); }
.smt-valeur-green { --valeur-accent: var(--sdesj-green); --valeur-soft: rgba(54, 180, 72, 0.08); }
.smt-valeur-red   { --valeur-accent: var(--sdesj-red); --valeur-soft: rgba(228, 35, 32, 0.08); }
.smt-valeur-yellow{ --valeur-accent: #c89500; --valeur-soft: rgba(249, 212, 56, 0.12); }
.smt-valeur-cyan  { --valeur-accent: var(--sdesj-light-blue); --valeur-soft: rgba(0, 189, 233, 0.08); }

.smt-valeur-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  background: var(--valeur-soft);
  border-radius: 12px;
  color: var(--valeur-accent);
  flex-shrink: 0;
}

.smt-valeur-icon svg {
  width: 22px;
  height: 22px;
}

.smt-valeur-body {
  display: grid;
  gap: 8px;
}

.smt-valeur-num {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--valeur-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.smt-valeur-card h3 {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
}

.smt-valeur-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--muted);
}

/* ── Mandat ── */
.smt-mandat {
  padding: 96px 0;
  background: linear-gradient(180deg, #f7f9fc, #fff);
}

.smt-mandat-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.7fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}

.smt-mandat-header h2 {
  margin: 14px 0 0;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 900;
  color: var(--sdesj-blue);
  letter-spacing: -0.02em;
}

.smt-mandat-lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 600;
}

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

.smt-mandat-card {
  --mandat-accent: var(--sdesj-blue);
  --mandat-soft: rgba(12, 31, 99, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 26px 30px;
  background: #fff;
  border: 1px solid rgba(12, 31, 99, 0.08);
  border-radius: 16px;
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.smt-mandat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 42px rgba(12, 31, 99, 0.09);
}

.smt-mandat-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.smt-mandat-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: var(--mandat-soft);
  border-radius: 12px;
  color: var(--mandat-accent);
}

.smt-mandat-icon svg {
  width: 20px;
  height: 20px;
}

.smt-mandat-num {
  font-size: 0.72rem;
  font-weight: 800;
  color: rgba(12, 31, 99, 0.25);
  letter-spacing: 0.1em;
}

.smt-mandat-card h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
}

.smt-mandat-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--muted);
}

.smt-mandat-red    { --mandat-accent: var(--sdesj-red);        --mandat-soft: rgba(228, 35, 32, 0.07); }
.smt-mandat-green  { --mandat-accent: var(--sdesj-green);      --mandat-soft: rgba(54, 180, 72, 0.07); }
.smt-mandat-yellow { --mandat-accent: #b88500;                  --mandat-soft: rgba(249, 212, 56, 0.12); }
.smt-mandat-cyan   { --mandat-accent: var(--sdesj-light-blue); --mandat-soft: rgba(0, 189, 233, 0.07); }
.smt-mandat-blue   { --mandat-accent: var(--sdesj-blue);       --mandat-soft: rgba(12, 31, 99, 0.07); }

/* ── CTA ── */
.smt-cta {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  background: linear-gradient(115deg, var(--sdesj-blue) 0%, #1240a8 52%, #0b9dc7 100%);
  color: #fff;
}

.smt-cta-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(0, 189, 233, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 15% 80%, rgba(228, 35, 32, 0.12) 0%, transparent 40%);
  pointer-events: none;
}

.smt-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 64px;
  align-items: center;
}

.smt-cta-copy {
  display: grid;
  gap: 16px;
}

.smt-cta-copy h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.smt-cta-copy p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
}

.smt-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.smt-btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  background: #fff;
  border-radius: 10px;
  color: var(--sdesj-blue);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.22s ease, transform 0.22s ease;
}

.smt-btn-cta-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  color: var(--sdesj-blue);
}

.smt-btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.36);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.22s ease, border-color 0.22s ease;
}

.smt-btn-cta-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .smt-mission-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .smt-mandat-header {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .smt-mandat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .smt-cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .smt-cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .smt-section-inner {
    width: calc(100% - 32px);
  }
  .smt-hero-content {
    padding-top: 140px;
    padding-bottom: 40px;
  }
  .smt-hero-content h1 {
    font-size: 2.8rem;
  }
  .smt-hero-stats {
    gap: 0;
  }
  .smt-hero-stat {
    padding: 16px 8px;
  }
  .smt-hero-stat strong {
    font-size: 1.5rem;
  }
  .smt-valeurs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .smt-decl-body {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 24px;
  }
  .smt-decl-text {
    padding: 32px 24px 32px 0;
  }
  .smt-mandat-grid {
    grid-template-columns: 1fr;
  }
  .smt-mission, .smt-declaration, .smt-valeurs, .smt-mandat, .smt-cta {
    padding: 64px 0;
  }
}

@media (max-width: 520px) {
  .smt-valeurs-grid {
    grid-template-columns: 1fr;
  }
  .smt-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .smt-btn-primary, .smt-btn-ghost {
    justify-content: center;
  }
  .smt-cta-actions {
    flex-direction: column;
  }
}

/* ── Anchor nav (overrides existants suffisent, on retouche légèrement) ── */
.sommet-anchor-nav {
  margin: 0 auto;
  border-radius: 12px;
}

/* ============================================================
   FIN SOMMET REFONTE
   ============================================================ */

.team-hero {
  min-height: 640px;
}

.team-hero img {
  object-position: center 42%;
}

.team-hero .subpage-hero-overlay {
  background:
    linear-gradient(95deg, rgba(12, 31, 99, 0.96) 0%, rgba(12, 31, 99, 0.86) 42%, rgba(12, 31, 99, 0.34) 76%, rgba(0, 189, 233, 0.16) 100%);
}

.team-hero .subpage-hero-content {
  width: min(1280px, calc(100% - 40px));
}

.team-hero h1 {
  max-width: 720px;
}

.team-anchor-nav {
  width: min(1120px, calc(100% - 32px));
}

.team-intro-section {
  padding-top: 92px;
  background: #fff;
}

.team-section {
  scroll-margin-top: calc(var(--header-top) + var(--header-height) + 36px);
}

.team-direction-section {
  background: var(--soft);
}

.team-development-section {
  background: #fff;
}

.team-observatory-section {
  position: relative;
  color: #fff;
  background: linear-gradient(112deg, var(--sdesj-blue), #123a87 62%, #087ea5);
  overflow: hidden;
}

.team-observatory-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(560px 420px at 8% 12%, rgba(255, 255, 255, 0.09), transparent 60%),
    radial-gradient(480px 380px at 96% 88%, rgba(0, 189, 233, 0.18), transparent 60%);
  pointer-events: none;
}

.team-observatory-section > * {
  position: relative;
  z-index: 1;
}

.team-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 48px;
}

.team-section-heading h2 {
  margin-top: 8px;
}

.team-section-heading > p {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.team-observatory-section .team-section-heading h2,
.team-observatory-section .team-section-heading > p {
  color: #fff;
}

.team-observatory-section .team-section-heading > p {
  color: rgba(255, 255, 255, 0.82);
}

.team-leadership-grid,
.team-grid {
  display: grid;
  gap: 28px;
}

.team-leadership-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

/* ── Carte membre — design "React component" moderne ─────────── */
.team-profile {
  --team-accent: var(--sdesj-blue);
  position: relative;
  display: grid;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(12, 31, 99, 0.08);
  border-radius: 20px;
  box-shadow:
    0 1px 2px rgba(12, 31, 99, 0.04),
    0 14px 34px rgba(12, 31, 99, 0.08);
  transition: box-shadow 0.35s cubic-bezier(.2,.8,.2,1), transform 0.35s cubic-bezier(.2,.8,.2,1), border-color 0.3s ease;
}

.team-profile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  height: 4px;
  background: linear-gradient(90deg, var(--team-accent), color-mix(in srgb, var(--team-accent) 40%, transparent));
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: left;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.team-profile:hover {
  border-color: color-mix(in srgb, var(--team-accent) 32%, transparent);
  box-shadow:
    0 2px 4px rgba(12, 31, 99, 0.05),
    0 26px 54px rgba(12, 31, 99, 0.16);
  transform: translateY(-6px);
}

.team-profile:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.team-profile-featured {
  grid-template-columns: minmax(210px, 0.88fr) minmax(0, 1.12fr);
  min-height: 410px;
  border-radius: 24px;
}

.team-profile-featured::before {
  border-radius: 24px 24px 0 0;
}

.team-profile-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #eaf0f8;
}

.team-profile-avatar {
  position: relative;
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.68), transparent 48%),
    linear-gradient(135deg, #dce4ef, #b9c6d8);
}

.team-profile-avatar::before {
  content: "";
  position: relative;
  z-index: 2;
  width: 21%;
  aspect-ratio: 1;
  background: #738197;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(12, 31, 99, 0.16);
  transform: translateY(-36%);
}

.team-profile-avatar span {
  position: absolute;
  bottom: 19%;
  left: 50%;
  width: 48%;
  height: 31%;
  background: #738197;
  border-radius: 50% 50% 16% 16%;
  box-shadow: 0 8px 18px rgba(12, 31, 99, 0.14);
  transform: translateX(-50%);
}

.team-profile:not(.team-profile-featured) .team-profile-media {
  aspect-ratio: 1 / 0.92;
}

.team-profile-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(12, 31, 99, 0.16) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.team-profile:hover .team-profile-media::after {
  opacity: 1;
}

.team-profile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
}

.team-profile:hover .team-profile-media img {
  transform: scale(1.045);
}

.team-profile-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 26px 24px;
}

.team-profile-featured .team-profile-content {
  justify-content: center;
  padding: 34px;
}

.team-profile-unit {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  padding: 5px 12px;
  color: var(--team-accent);
  background: color-mix(in srgb, var(--team-accent) 12%, white);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.team-profile h3 {
  margin: 0;
  color: var(--sdesj-blue);
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.01em;
}

.team-profile-featured h3 {
  font-size: 1.9rem;
}

.team-profile-role {
  margin: 10px 0 18px;
  color: #5d687b;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.5;
}

.team-profile-bio {
  margin: -8px 0 20px;
  color: #7a8496;
  font-size: 0.9rem;
  line-height: 1.62;
}

.team-profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.team-icon-btn {
  display: inline-flex;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  color: var(--team-accent);
  background: color-mix(in srgb, var(--team-accent) 9%, white);
  border: 1px solid color-mix(in srgb, var(--team-accent) 22%, transparent);
  border-radius: 50%;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.team-icon-btn svg {
  width: 17px;
  height: 17px;
}

.team-icon-btn:hover {
  color: #fff;
  background: var(--team-accent);
  border-color: var(--team-accent);
  transform: translateY(-2px);
}

.team-icon-btn-linkedin:hover {
  background: #0a66c2;
  border-color: #0a66c2;
}

.team-accent-red {
  --team-accent: var(--sdesj-red);
}

.team-accent-cyan {
  --team-accent: var(--sdesj-light-blue);
}

.team-accent-blue {
  --team-accent: var(--sdesj-blue);
}

.team-accent-green {
  --team-accent: var(--sdesj-green);
}

.team-accent-yellow {
  --team-accent: #d5a900;
}

.team-accent-neutral {
  --team-accent: #738197;
}

.team-cta-section {
  color: #fff;
  background: linear-gradient(108deg, #101f5e, var(--sdesj-blue) 60%, #0b86ae);
}

.team-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 52px;
  align-items: center;
}

.team-cta h2 {
  max-width: 760px;
  color: #fff;
}

.team-cta p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.7;
}

@media (max-width: 1120px) {
  .team-leadership-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 860px) {
  .team-section-heading,
  .team-cta {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .team-profile-featured {
    grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1fr);
  }

  .team-cta .involvement-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .team-hero {
    min-height: 580px;
  }

  .team-hero img {
    object-position: 64% center;
  }

  .team-hero .subpage-hero-content {
    width: min(100% - 28px, 1280px);
  }

  .team-grid,
  .team-profile-featured {
    grid-template-columns: 1fr !important;
  }

  .team-profile-featured {
    min-height: 0;
  }

  .team-profile-featured .team-profile-media {
    aspect-ratio: 1 / 0.92;
  }

  .team-profile-content,
  .team-profile-featured .team-profile-content {
    padding: 22px;
  }

  .team-profile-featured h3 {
    font-size: 1.6rem;
  }
}

/* Sommet Jeunes Afro: Conseil d'administration */
.board-hero {
  min-height: 630px;
}

.board-hero img {
  object-position: 64% center;
}

.board-hero .subpage-hero-overlay {
  background:
    linear-gradient(94deg, rgba(7, 23, 82, 0.97) 0%, rgba(9, 35, 105, 0.9) 42%, rgba(10, 47, 113, 0.5) 72%, rgba(0, 189, 233, 0.18) 100%);
}

.board-hero .subpage-hero-content {
  width: min(1280px, calc(100% - 40px));
}

.board-hero h1 {
  max-width: 760px;
}

.board-anchor-nav {
  width: min(1040px, calc(100% - 32px));
}

.board-intro-section {
  padding-top: 76px;
  background: #fff;
}

.board-intro-layout,
.board-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 72px;
  align-items: end;
}

.board-intro-layout h2,
.board-section-heading h2 {
  margin-top: 8px;
}

.board-intro-copy > p,
.board-section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.board-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.board-principles span {
  padding: 14px 16px;
  color: var(--sdesj-blue);
  background: color-mix(in srgb, var(--sdesj-blue) 7%, white);
  border: 1px solid color-mix(in srgb, var(--sdesj-blue) 16%, transparent);
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.board-presidency-section,
.board-administrators-section {
  background: var(--soft);
}

.board-president {
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1.26fr);
  min-height: 500px;
  overflow: hidden;
  color: #fff;
  background: var(--sdesj-blue);
  border-radius: 24px;
  box-shadow: 0 24px 56px rgba(12, 31, 99, 0.18);
}

.board-president-media {
  min-width: 0;
  overflow: hidden;
}

.board-president-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.55s ease;
}

.board-president:hover .board-president-media img {
  transform: scale(1.025);
}

.board-president-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(38px, 6vw, 78px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 46%),
    var(--sdesj-blue);
}

.board-role-label {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  padding: 5px 12px;
  color: var(--sdesj-blue);
  background: color-mix(in srgb, var(--sdesj-blue) 12%, white);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.board-profile-youth .board-role-label {
  color: var(--sdesj-green);
  background: color-mix(in srgb, var(--sdesj-green) 14%, white);
}

.board-president h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1;
}

.board-role {
  margin: 20px 0 4px;
  color: #fff;
  font-size: 1.18rem;
  font-weight: 800;
}

.board-organization {
  margin: 8px 0 0;
  color: #5e6a7d;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.5;
}

.board-president .board-organization {
  color: rgba(255, 255, 255, 0.72);
}

.board-president-note {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.03rem;
  line-height: 1.68;
}

.board-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
}

.board-president .board-actions {
  padding-top: 28px;
}

.board-president .team-icon-btn {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.34);
}

.board-president .team-icon-btn:hover {
  color: var(--sdesj-blue);
  background: #fff;
  border-color: #fff;
}

.board-members-section {
  scroll-margin-top: calc(var(--header-top) + var(--header-height) + 36px);
  background: #fff;
}

#presidence {
  scroll-margin-top: calc(var(--header-top) + var(--header-height) + 36px);
}

#administrateurs {
  scroll-margin-top: calc(var(--header-top) + var(--header-height) + 36px);
}

.board-section-heading {
  margin-bottom: 48px;
}

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

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

/* ── Carte membre du CA — même langage visuel que team-profile ── */
.board-profile {
  --board-accent: var(--sdesj-blue);
  position: relative;
  display: grid;
  grid-template-rows: minmax(260px, 0.92fr) minmax(190px, auto);
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(12, 31, 99, 0.08);
  border-radius: 20px;
  box-shadow:
    0 1px 2px rgba(12, 31, 99, 0.04),
    0 14px 34px rgba(12, 31, 99, 0.08);
  transition: box-shadow 0.35s cubic-bezier(.2,.8,.2,1), transform 0.35s cubic-bezier(.2,.8,.2,1), border-color 0.3s ease;
}

.board-profile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  height: 4px;
  background: linear-gradient(90deg, var(--board-accent), color-mix(in srgb, var(--board-accent) 40%, transparent));
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: left;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.board-profile:nth-child(3n + 2) {
  --board-accent: var(--sdesj-light-blue);
}

.board-profile:nth-child(3n) {
  --board-accent: var(--sdesj-red);
}

.board-profile-youth {
  --board-accent: var(--sdesj-green);
}

.board-profile:hover {
  border-color: color-mix(in srgb, var(--board-accent) 32%, transparent);
  box-shadow:
    0 2px 4px rgba(12, 31, 99, 0.05),
    0 26px 54px rgba(12, 31, 99, 0.16);
  transform: translateY(-6px);
}

.board-profile:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.board-profile-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #e7edf5;
}

.board-profile-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(12, 31, 99, 0.16) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.board-profile:hover .board-profile-media::after {
  opacity: 1;
}

.board-profile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
}

.board-profile-media-portrait img {
  object-position: center 18%;
}

.board-profile:hover .board-profile-media img {
  transform: scale(1.045);
}

.board-profile-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 26px 24px;
}

.board-profile h3 {
  margin: 0 0 6px;
  color: var(--sdesj-blue);
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.01em;
}

.board-cta-section {
  color: #fff;
  background: linear-gradient(108deg, #101f5e, var(--sdesj-blue) 60%, #0b86ae);
}

.board-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 52px;
  align-items: center;
}

.board-cta h2 {
  max-width: 760px;
  color: #fff;
}

.board-cta p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.7;
}

@media (max-width: 1120px) {
  .board-grid,
  .board-grid-executive {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 860px) {
  .board-intro-layout,
  .board-section-heading,
  .board-cta {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .board-president {
    grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1fr);
  }

  .board-cta .involvement-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .board-hero {
    min-height: 590px;
  }

  .board-hero img {
    object-position: 61% center;
  }

  .board-hero .subpage-hero-content {
    width: min(100% - 28px, 1280px);
  }

  .board-principles,
  .board-president,
  .board-grid,
  .board-grid-executive {
    grid-template-columns: 1fr !important;
  }

  .board-president {
    min-height: 0;
  }

  .board-president-media {
    aspect-ratio: 1 / 0.92;
  }

  .board-president-content {
    padding: 30px 24px;
  }

  .board-profile {
    grid-template-rows: minmax(240px, 0.94fr) minmax(180px, auto);
  }

  .board-profile-content {
    padding: 22px;
  }
}

.annual-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 720px;
  overflow: hidden;
  color: #fff;
  background: var(--sdesj-blue);
}

.annual-hero > img,
.annual-hero-overlay {
  position: absolute;
  inset: 0;
}

.annual-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.annual-hero-overlay {
  background: linear-gradient(90deg, rgba(8, 21, 72, 0.96), rgba(12, 31, 99, 0.72) 54%, rgba(0, 189, 233, 0.18));
}

.annual-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 22px;
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: 190px 0 96px;
}

.annual-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: 4.5rem;
  line-height: 1;
}

.annual-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.annual-hero-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.annual-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.annual-hero .hero-actions {
  flex-wrap: wrap;
  align-items: center;
}

.annual-hero .hero-actions a {
  min-width: 220px;
  min-height: 48px;
  padding: 0 24px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.annual-anchor-nav {
  position: sticky;
  top: calc(var(--header-top) + var(--header-height) + 12px);
  z-index: 30;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: min(940px, calc(100% - 32px));
  margin: -32px auto 0;
  padding: 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(12, 31, 99, 0.1);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(12, 31, 99, 0.14);
  backdrop-filter: blur(14px);
}

.annual-anchor-nav a {
  padding: 10px 14px;
  color: var(--sdesj-blue);
  border-radius: 6px;
  font-weight: 800;
}

.annual-anchor-nav a:hover {
  color: #fff;
  background: var(--sdesj-blue);
}

.annual-ambition,
.annual-objectives,
.annual-program,
.annual-editions,
.annual-cta {
  scroll-margin-top: calc(var(--header-top) + var(--header-height) + 32px);
}

.annual-ambition {
  padding-top: 108px;
}

.annual-ambition-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 80px;
  align-items: start;
}

.annual-section-heading {
  position: sticky;
  top: calc(var(--header-top) + var(--header-height) + 100px);
}

.annual-section-heading h2 {
  color: var(--sdesj-blue);
}

.annual-ambition-copy {
  display: grid;
  gap: 22px;
  padding-left: 32px;
  border-left: 4px solid var(--sdesj-light-blue);
}

.annual-ambition-copy p {
  margin: 0;
  color: #465165;
  font-size: 1.12rem;
  line-height: 1.8;
}

.annual-ambition-copy p:first-child {
  color: var(--sdesj-blue);
  font-size: 1.3rem;
  font-weight: 700;
}

.annual-objectives {
  background: var(--soft);
}

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

.annual-objective {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 250px;
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(12, 31, 99, 0.1);
  border-top: 4px solid var(--sdesj-red);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(12, 31, 99, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.annual-objective:nth-child(2) {
  border-top-color: var(--sdesj-yellow);
}

.annual-objective:nth-child(3) {
  border-top-color: var(--sdesj-green);
}

.annual-objective:hover {
  box-shadow: 0 24px 48px rgba(12, 31, 99, 0.12);
  transform: translateY(-4px);
}

.annual-objective span {
  color: var(--sdesj-light-blue);
  font-size: 0.85rem;
  font-weight: 800;
}

.annual-objective h3 {
  margin: 0;
  color: var(--sdesj-blue);
  font-size: 1.6rem;
}

.annual-objective p {
  margin: 0;
  color: var(--muted);
}

.annual-program {
  color: #fff;
  background: linear-gradient(125deg, var(--sdesj-blue), #123a87 58%, #087aa8);
}

.annual-program-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 70px;
  align-items: start;
}

.annual-program-intro {
  position: sticky;
  top: calc(var(--header-top) + var(--header-height) + 100px);
}

.annual-program h2 {
  color: #fff;
}

.annual-program-intro > p:last-child {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.annual-schedule {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.annual-schedule li {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.annual-schedule time {
  color: var(--sdesj-yellow);
  font-weight: 800;
}

.annual-schedule h3,
.annual-schedule p {
  margin: 0;
}

.annual-schedule h3 {
  margin-bottom: 5px;
  font-size: 1.15rem;
}

.annual-schedule p {
  color: rgba(255, 255, 255, 0.72);
}

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

.annual-edition-list article {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s ease, background 0.3s ease;
}

.annual-edition-list article:hover {
  padding-inline: 18px;
  background: rgba(0, 189, 233, 0.05);
}

.annual-edition-list strong {
  color: var(--sdesj-light-blue);
  font-size: 2.5rem;
  line-height: 1;
}

.annual-edition-list h3,
.annual-edition-list p {
  margin: 0;
}

.annual-edition-list h3 {
  color: var(--sdesj-blue);
  font-size: 1.45rem;
}

.annual-edition-list p {
  color: var(--muted);
}

.annual-cta {
  color: #fff;
  background: linear-gradient(105deg, #081948, var(--sdesj-blue) 58%, #087aa8);
}

.annual-cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
}

.annual-cta h2 {
  max-width: 720px;
  color: #fff;
}

.annual-cta p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.8);
}

.annual-cta-actions {
  display: grid;
  gap: 12px;
  min-width: 220px;
}

@media (max-width: 860px) {
  .annual-hero {
    min-height: 660px;
  }

  .annual-hero h1 {
    font-size: 3.1rem;
  }

  .annual-ambition-layout,
  .annual-program-layout,
  .annual-cta-layout {
    grid-template-columns: 1fr;
  }

  .annual-section-heading,
  .annual-program-intro {
    position: static;
  }

  .annual-objective-grid {
    grid-template-columns: 1fr;
  }

  .annual-ambition-copy {
    padding-left: 22px;
  }
}

@media (max-width: 560px) {
  .annual-hero {
    min-height: 620px;
  }

  .annual-hero-content {
    width: min(100% - 28px, 1280px);
    padding: 150px 0 72px;
  }

  .annual-hero h1 {
    font-size: 2.55rem;
  }

  .annual-anchor-nav {
    position: relative;
    top: auto;
    justify-content: stretch;
    margin-top: 0;
  }

  .annual-anchor-nav a {
    flex: 1 1 100%;
    text-align: center;
  }

  .annual-schedule li,
  .annual-edition-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .annual-edition-list strong {
    font-size: 2rem;
  }

  .annual-cta-actions {
    width: 100%;
  }
}

.observatory-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e6e9ee;
  box-shadow: 0 5px 18px rgba(12, 31, 99, 0.06);
  backdrop-filter: blur(14px);
}

.observatory-header-inner {
  display: flex;
  align-items: center;
  gap: 26px;
  width: min(1320px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
}

.observatory-header-brand {
  flex: 0 0 auto;
}

.observatory-header-brand img {
  width: 184px;
  max-height: 56px;
  object-fit: contain;
}

.observatory-menu-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 14px;
  color: var(--sdesj-blue);
  background: #fff;
  border: 1px solid rgba(12, 31, 99, 0.22);
  border-radius: 6px;
  font-weight: 800;
}

.observatory-menu-toggle .hamburger {
  margin-right: 0;
}

.observatory-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(12, 31, 99, 0.12);
}

.observatory-main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  margin-left: auto;
}

/* Slim dark utility bar above the main observatory header — "Retour au
   Sommet" + the language switcher, mirroring the site's accessibility-bar
   pattern (dark bar above the main nav) instead of squeezing into the
   already-full pill row below, which would overflow on smaller desktops. */
.observatory-topbar {
  background: #071542;
}

.observatory-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1320px, calc(100% - 32px));
  min-height: 40px;
  margin: 0 auto;
}

.observatory-topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.observatory-back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.observatory-back-link svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.observatory-back-link:hover {
  color: #fff;
}

@media (max-width: 640px) {
  /* Keep the full "Retour au Sommet" label visible on mobile; make room by
     dropping the social icons here (they remain on desktop and in the footer)
     so the back link + language switcher fit the narrow bar. */
  .observatory-topbar .top-socials {
    display: none;
  }

  .observatory-back-link {
    font-size: 0.78rem;
  }
}

.observatory-nav-group {
  position: relative;
  flex: 0 0 auto;
}

.observatory-nav-group summary {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 15px;
  color: #fff;
  border-radius: 999px;
  font-size: 0.91rem;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  list-style: none;
  transition: filter 0.25s ease, transform 0.25s ease;
}

.observatory-nav-group summary::-webkit-details-marker {
  display: none;
}

.observatory-nav-group summary:hover,
.observatory-nav-group[open] summary {
  filter: brightness(0.94);
  transform: translateY(-1px);
}

.observatory-nav-group.green summary {
  background: var(--sdesj-green);
}

.observatory-nav-group.themes summary {
  background: var(--sdesj-blue);
}

.observatory-nav-group.cyan summary {
  background: var(--sdesj-light-blue);
}

.observatory-nav-group.red summary {
  background: var(--sdesj-red);
}

.observatory-nav-group.navy summary {
  background: var(--sdesj-blue);
}

.observatory-nav-group svg,
.observatory-contact-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.observatory-chevron {
  width: 7px;
  height: 7px;
  margin-left: 2px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s ease;
}

.observatory-nav-group[open] .observatory-chevron {
  transform: rotate(225deg) translate(-1px, -1px);
}

.observatory-submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  display: grid;
  min-width: 260px;
  padding: 8px;
  background: #fff;
  border: 1px solid #e2e7ef;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(12, 31, 99, 0.17);
}

.observatory-submenu::before {
  content: "";
  position: absolute;
  top: -13px;
  right: 0;
  left: 0;
  height: 13px;
}

.observatory-submenu a {
  padding: 11px 12px;
  color: #293348;
  border-radius: 5px;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.3;
}

.observatory-submenu a:hover {
  color: #fff;
  background: var(--sdesj-blue);
}

.observatory-nav-group.themes .observatory-submenu a {
  --theme-color: var(--sdesj-blue);
  display: flex;
  align-items: center;
  gap: 10px;
}

.observatory-nav-group.themes .observatory-submenu a::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  background: var(--theme-color);
  border: 2px solid color-mix(in srgb, var(--theme-color) 24%, #fff);
  border-radius: 50%;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--theme-color) 28%, transparent);
}

.observatory-nav-group.themes .observatory-submenu a:hover,
.observatory-nav-group.themes .observatory-submenu a:focus-visible {
  color: #172033;
  background: color-mix(in srgb, var(--theme-color) 12%, #fff);
}

.observatory-nav-group.themes .observatory-submenu a.theme-link-culture {
  --theme-color: #ffd400;
}

.observatory-nav-group.themes .observatory-submenu a.theme-link-economie {
  --theme-color: #242c86;
}

.observatory-nav-group.themes .observatory-submenu a.theme-link-education {
  --theme-color: #0b8dcc;
}

.observatory-nav-group.themes .observatory-submenu a.theme-link-jeunesse {
  --theme-color: #7a818c;
}

.observatory-nav-group.themes .observatory-submenu a.theme-link-justice {
  --theme-color: #dc2f32;
}

.observatory-nav-group.themes .observatory-submenu a.theme-link-sante-services {
  --theme-color: #3a913f;
}

.observatory-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 16px;
  color: #111827;
  background: var(--sdesj-yellow);
  border-radius: 999px;
  font-size: 0.91rem;
  font-weight: 800;
  white-space: nowrap;
  transition: filter 0.25s ease, transform 0.25s ease;
}

.observatory-contact-link:hover {
  filter: brightness(0.96);
  transform: translateY(-1px);
}

.observatory-nav-utilities {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 8px;
}

.observatory-nav-utilities button {
  padding: 8px 2px;
  color: #8b919b;
  background: transparent;
  border: 0;
  font-weight: 700;
}

.observatory-nav-utilities button:hover {
  color: var(--sdesj-blue);
}

.observatory-nav-utilities a {
  display: flex;
  align-items: center;
}

.observatory-nav-utilities .observatory-summit-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 15px;
  color: #fff;
  background: var(--sdesj-blue);
  border: 1px solid var(--sdesj-blue);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.observatory-summit-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 0.25s ease;
}

.observatory-summit-link:hover {
  color: var(--sdesj-blue);
  background: #fff;
  transform: translateY(-1px);
}

.observatory-summit-link:hover svg {
  transform: translateX(2px);
}

.observatory-site.no-scroll {
  overflow: hidden;
}

.observatory-page {
  background: #fff;
}

.observatory-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 720px;
  overflow: hidden;
  background: #071b55;
}

.observatory-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 16, 59, 0.96) 0%, rgba(6, 26, 84, 0.91) 46%, rgba(8, 37, 100, 0.72) 72%, rgba(7, 43, 105, 0.58) 100%),
    rgba(5, 28, 82, 0.3);
}

.observatory-hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  width: min(1280px, calc(100% - 40px));
  min-height: 720px;
  padding: 92px 0 104px;
}

.observatory-hero-copy {
  position: relative;
  z-index: 3;
  width: min(100%, 660px);
  padding-right: 24px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(2, 10, 38, 0.28);
}

.observatory-hero .eyebrow.blue {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.86);
}

.observatory-hero h1 {
  max-width: 650px;
  margin: 0;
  color: #fff;
  font-size: 4.15rem;
  font-weight: 800;
  line-height: 1.02;
  text-wrap: balance;
}

.observatory-hero-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.18rem;
  line-height: 1.65;
}

.observatory-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  text-shadow: none;
}

.observatory-hero .outline-button {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
}

.observatory-hero .outline-button:hover {
  color: var(--sdesj-blue);
  background: #fff;
  border-color: #fff;
}

.observatory-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
}

.observatory-hero-media > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.observatory-motif {
  display: none;
}

.observatory-motif img {
  position: absolute;
  width: 100px;
  opacity: 0.04;
  mix-blend-mode: screen;
}

.observatory-motif img:nth-child(1) {
  top: 18%;
  left: 45%;
}

.observatory-motif img:nth-child(2) {
  top: 13%;
  left: 4%;
  width: 82px;
}

.observatory-motif img:nth-child(3) {
  right: 5%;
  bottom: 17%;
  width: 92px;
}

.observatory-motif img:nth-child(4) {
  left: 38%;
  bottom: 9%;
  width: 78px;
}

.observatory-anchor-nav {
  position: sticky;
  top: 90px;
  z-index: 30;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  width: min(900px, calc(100% - 32px));
  margin: -30px auto 0;
  padding: 10px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(12, 31, 99, 0.12);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(12, 31, 99, 0.14);
  backdrop-filter: blur(14px);
}

.observatory-anchor-nav a {
  min-width: 160px;
  padding: 12px 16px;
  color: var(--sdesj-blue);
  border-radius: 6px;
  font-weight: 800;
  text-align: center;
  transition: color 0.25s ease, background 0.25s ease;
}

.observatory-anchor-nav a:hover {
  color: #fff;
  background: var(--sdesj-blue);
}

.drawer-link.is-current {
  color: #fff;
  background: var(--sdesj-blue);
}

.observatory-page section {
  scroll-margin-top: 112px;
}

.observatory-news,
.observatory-events {
  padding-top: 126px;
}

.observatory-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.68fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 54px;
}

.observatory-section-heading h2 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: 3.25rem;
  line-height: 1.05;
}

.observatory-section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

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

.observatory-news-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.75fr) minmax(0, 1fr);
  min-height: 330px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(12, 31, 99, 0.09);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.observatory-news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(12, 31, 99, 0.14);
}

.observatory-news-card > img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.observatory-news-card > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
}

.observatory-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: #fff;
  border-radius: 6px;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.observatory-tag.green {
  background: var(--sdesj-green);
}

.observatory-tag.blue {
  background: var(--sdesj-light-blue);
}

.observatory-tag.yellow {
  color: var(--sdesj-blue);
  background: var(--sdesj-yellow);
}

.observatory-tag.red {
  background: var(--sdesj-red);
}

.observatory-date {
  margin: 16px 0 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.observatory-news-card h3 {
  margin: 0;
  color: var(--sdesj-blue);
  font-size: 1.38rem;
  line-height: 1.2;
}

.observatory-news-card p:not(.observatory-date) {
  margin: 14px 0 22px;
  color: var(--muted);
  line-height: 1.58;
}

.observatory-news-card a {
  margin-top: auto;
  color: var(--sdesj-red);
  font-weight: 800;
}

.observatory-news-card a span {
  display: inline-block;
  transition: transform 0.25s ease;
}

.observatory-news-card a:hover span {
  transform: translateX(4px);
}

.observatory-axes {
  background: #f3f7f9;
}

.observatory-axis-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}

.observatory-axis {
  --axis-accent: var(--sdesj-blue);
  --axis-foreground: var(--axis-accent);
  position: relative;
  display: grid;
  grid-template-columns: minmax(160px, 0.72fr) minmax(0, 1fr);
  min-height: 270px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(12, 31, 99, 0.1);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(12, 31, 99, 0.06);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.observatory-axis::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 4px;
  background: var(--axis-accent);
}

.observatory-axis:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--axis-accent) 34%, #dce3ea);
  box-shadow: 0 18px 38px rgba(12, 31, 99, 0.12);
}

.observatory-axis:focus-within {
  outline: 3px solid color-mix(in srgb, var(--axis-accent) 34%, transparent);
  outline-offset: 3px;
}

.observatory-axis[id] {
  scroll-margin-top: 112px;
}

.observatory-axis > img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  filter: saturate(0.92);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.observatory-axis:hover > img {
  transform: scale(1.025);
  filter: saturate(1.06);
}

.observatory-axis > div {
  display: grid;
  align-content: center;
  padding: 28px;
  background: linear-gradient(145deg, color-mix(in srgb, var(--axis-accent) 5%, #fff) 0%, #fff 48%);
}

.observatory-axis-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--axis-foreground);
  background: color-mix(in srgb, var(--axis-accent) 14%, #fff);
  border: 1px solid color-mix(in srgb, var(--axis-accent) 28%, #fff);
  border-radius: 8px;
}

.observatory-axis-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.observatory-axis.theme-culture {
  --axis-accent: #ffd400;
  --axis-foreground: #705b00;
}

.observatory-axis.theme-economie {
  --axis-accent: #242c86;
  --axis-foreground: #242c86;
}

.observatory-axis.theme-education {
  --axis-accent: #0b8dcc;
  --axis-foreground: #0875aa;
}

.observatory-axis.theme-jeunesse {
  --axis-accent: #7a818c;
  --axis-foreground: #525965;
}

.observatory-axis.theme-justice {
  --axis-accent: #dc2f32;
  --axis-foreground: #c4272a;
}

.observatory-axis.theme-sante-services {
  --axis-accent: #3a913f;
  --axis-foreground: #2e7b34;
}

.observatory-axis h3 {
  margin: 14px 0 12px;
  color: var(--sdesj-blue);
  font-size: 1.75rem;
}

.observatory-axis p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.55;
}

.observatory-axis a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: max-content;
  color: var(--axis-foreground);
  font-weight: 800;
}

.observatory-axis a::after {
  content: "→";
  transition: transform 0.24s ease;
}

.observatory-axis a:hover::after {
  transform: translateX(4px);
}

/* Observatoire - Thématique Économie */
.economy-site {
  --economy-blue: #242c86;
  --economy-blue-dark: #111958;
  --economy-cyan: #0a9ed1;
  --economy-ink: #10162a;
  --economy-muted: #576178;
  --economy-line: #dce2ee;
  --economy-soft: #f3f6fb;
  background: #fff;
}

.observatory-nav-group.economy-current > summary {
  background: var(--economy-blue);
}

.education-site {
  --economy-blue: #0b8dcc;
  --economy-blue-dark: #07557d;
  --economy-cyan: #61d1f2;
  --economy-ink: #102433;
  --economy-muted: #526674;
  --economy-line: #d6e7ee;
  --economy-soft: #f1f8fb;
}

.observatory-nav-group.education-current > summary {
  background: #0b8dcc;
}

.education-site .economy-hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 58, 88, 0.96) 0%, rgba(7, 85, 125, 0.9) 43%, rgba(7, 85, 125, 0.38) 74%, rgba(7, 85, 125, 0.18) 100%),
    rgba(4, 58, 88, 0.18);
}

.education-site .economy-anchor-nav {
  box-shadow: 0 18px 45px rgba(7, 85, 125, 0.16);
}

.education-site .economy-icon,
.education-site .economy-axis-icon {
  border-color: rgba(11, 141, 204, 0.2);
  background: rgba(11, 141, 204, 0.08);
}

.education-site .economy-axis-grid article:hover {
  border-color: rgba(11, 141, 204, 0.46);
}

.education-site .economy-axis-grid article:hover .economy-axis-icon {
  background: #0b8dcc;
}

.health-site {
  --economy-blue: #38923d;
  --economy-blue-dark: #185b2b;
  --economy-cyan: #8fd14f;
  --economy-ink: #14271a;
  --economy-muted: #57685b;
  --economy-line: #d9e7da;
  --economy-soft: #f2f8f2;
}

.observatory-nav-group.health-current > summary {
  background: #38923d;
}

.health-site .economy-hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 62, 30, 0.96) 0%, rgba(24, 91, 43, 0.9) 43%, rgba(24, 91, 43, 0.38) 74%, rgba(24, 91, 43, 0.18) 100%),
    rgba(12, 62, 30, 0.18);
}

.health-site .economy-anchor-nav {
  box-shadow: 0 18px 45px rgba(24, 91, 43, 0.16);
}

.health-site .economy-icon,
.health-site .economy-axis-icon {
  border-color: rgba(56, 146, 61, 0.2);
  background: rgba(56, 146, 61, 0.08);
}

.health-site .economy-axis-grid article:hover {
  border-color: rgba(56, 146, 61, 0.46);
}

.health-site .economy-axis-grid article:hover .economy-axis-icon {
  background: #38923d;
}

.justice-site {
  --economy-blue: #dc2f32;
  --economy-blue-dark: #8f1f28;
  --economy-cyan: #ff8a7f;
  --economy-ink: #2b1518;
  --economy-muted: #6c575a;
  --economy-line: #ead9db;
  --economy-soft: #fbf3f4;
}

.observatory-nav-group.justice-current > summary {
  background: #dc2f32;
}

.justice-site .economy-hero-image {
  object-position: 68% 38%;
}

.justice-site .economy-hero-overlay {
  background:
    linear-gradient(90deg, rgba(76, 12, 20, 0.97) 0%, rgba(143, 31, 40, 0.91) 43%, rgba(143, 31, 40, 0.42) 74%, rgba(143, 31, 40, 0.2) 100%),
    rgba(76, 12, 20, 0.2);
}

.justice-site .economy-anchor-nav {
  box-shadow: 0 18px 45px rgba(143, 31, 40, 0.18);
}

.justice-site .economy-icon,
.justice-site .economy-axis-icon {
  border-color: rgba(220, 47, 50, 0.2);
  background: rgba(220, 47, 50, 0.08);
}

.justice-site .economy-axis-grid article:hover {
  border-color: rgba(220, 47, 50, 0.46);
}

.justice-site .economy-axis-grid article:hover .economy-axis-icon {
  background: #dc2f32;
}

.culture-site {
  --economy-blue: #e0b600;
  --economy-blue-dark: #0c1f63;
  --economy-cyan: #ffd43b;
  --economy-ink: #111827;
  --economy-muted: #5d6675;
  --economy-line: #e8dfbd;
  --economy-soft: #fffbec;
}

.observatory-nav-group.culture-current > summary {
  background: #ffd400;
  color: #0c1f63;
}

.culture-site .economy-hero-image {
  object-position: 55% center;
}

.culture-site .economy-hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 20, 66, 0.97) 0%, rgba(12, 31, 99, 0.91) 44%, rgba(12, 31, 99, 0.48) 75%, rgba(12, 31, 99, 0.22) 100%),
    rgba(12, 31, 99, 0.2);
}

.culture-site .economy-anchor-nav {
  box-shadow: 0 18px 45px rgba(160, 121, 0, 0.18);
}

.culture-site .economy-eyebrow {
  color: #856800;
}

.culture-site .economy-eyebrow.light {
  color: #ffd43b;
}

.culture-site .economy-icon,
.culture-site .economy-axis-icon {
  border-color: rgba(224, 182, 0, 0.28);
  background: rgba(255, 212, 59, 0.14);
  color: #9b7600;
}

.culture-site .economy-axis-grid article:hover {
  border-color: rgba(224, 182, 0, 0.62);
}

.culture-site .economy-axis-grid article:hover .economy-axis-icon {
  background: #ffd43b;
  color: #0c1f63;
}

.culture-site .economy-button.text,
.culture-site .economy-resource-grid a {
  color: #705800;
}

/* Observatoire: mission, vision et approche */
.vision-site {
  --vision-green: #31ad49;
  --vision-green-dark: #157536;
  --vision-navy: #0c1f63;
  --vision-cyan: #08a9d2;
  --vision-ink: #111827;
  --vision-muted: #596579;
  --vision-line: #dce5df;
  --vision-soft: #f2f7f3;
  background: #fff;
}

.observatory-nav-group.vision-current > summary {
  background: var(--vision-green-dark);
}

.observatory-nav-group.poles-current > summary {
  background: var(--vision-green-dark);
}

.observatory-nav-group.committee-current > summary {
  background: var(--vision-green-dark);
}

.poles-site {
  --pole-mobilisation: #31ad49;
  --pole-diffusion: #08a9d2;
  --pole-formation: #242c86;
  --pole-experimentation: #f2c700;
}

.poles-site .vision-hero-image {
  object-position: center 42%;
}

.poles-site .vision-hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 22, 64, 0.97) 0%, rgba(12, 31, 99, 0.9) 43%, rgba(18, 86, 78, 0.55) 76%, rgba(49, 173, 73, 0.22) 100%),
    rgba(12, 31, 99, 0.16);
}

.poles-story {
  --pole-accent: var(--pole-mobilisation);
}

.poles-story.pole-diffusion {
  --pole-accent: var(--pole-diffusion);
}

.poles-story.pole-formation {
  --pole-accent: var(--pole-formation);
  background: #f4f7fb;
}

.poles-story.pole-experimentation {
  --pole-accent: var(--pole-experimentation);
}

.poles-story .vision-eyebrow {
  color: var(--pole-accent);
}

.poles-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border: 1px solid color-mix(in srgb, var(--pole-accent) 35%, transparent);
  border-radius: 7px;
  background: color-mix(in srgb, var(--pole-accent) 10%, #fff);
  color: var(--pole-accent);
}

.poles-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.poles-story.vision-story-dark .poles-icon {
  border-color: color-mix(in srgb, var(--pole-accent) 58%, rgba(255, 255, 255, 0.2));
  background: color-mix(in srgb, var(--pole-accent) 16%, rgba(255, 255, 255, 0.08));
}

.poles-site .vision-story-media,
.poles-site .vision-story-media img {
  min-height: 520px;
}

.poles-site .vision-story-copy .vision-lead {
  max-width: 620px;
  margin-bottom: 0;
}

.poles-site .vision-story-dark {
  background: #111f58;
}

.poles-site .pole-experimentation .vision-eyebrow {
  color: #ffe16c;
}

.poles-site .pole-experimentation .poles-icon {
  color: #ffe16c;
}

.poles-cta {
  background: linear-gradient(105deg, #157536 0%, #176d4e 56%, #0c1f63 100%);
}

/* Observatoire: Comité scientifique et éthique */
.committee-site {
  --committee-cyan: #08a9d2;
  --committee-cyan-dark: #087ea4;
  --committee-navy: #0c1f63;
  --committee-soft: #f1f6f8;
  --committee-line: #d4e2e7;
}

.committee-site .vision-hero-image {
  object-position: center 38%;
}

.committee-site .vision-hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 20, 63, 0.98) 0%, rgba(12, 31, 99, 0.93) 47%, rgba(5, 105, 132, 0.64) 78%, rgba(8, 169, 210, 0.26) 100%),
    rgba(12, 31, 99, 0.22);
}

.committee-site .vision-kicker span {
  background: #63d8ef;
}

.committee-site .vision-button.primary {
  background: var(--committee-cyan);
  color: #071b3f;
}

.vision-anchor-nav.committee-anchor-nav {
  grid-template-columns: repeat(3, 1fr);
}

.committee-story .vision-eyebrow,
.committee-review .vision-eyebrow,
.committee-members .eyebrow {
  color: var(--committee-cyan-dark);
}

.committee-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border: 1px solid rgba(8, 169, 210, 0.3);
  border-radius: 7px;
  background: rgba(8, 169, 210, 0.1);
  color: var(--committee-cyan-dark);
}

.committee-icon.small {
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
}

.committee-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.committee-story .vision-story-media,
.committee-story .vision-story-media img {
  min-height: 520px;
}

.committee-review {
  background: var(--committee-soft);
}

.committee-review-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 24px 84px;
  align-items: end;
}

.committee-review-heading h2,
.committee-members h2 {
  margin-bottom: 0;
  color: var(--vision-ink);
  font-size: 46px;
  line-height: 1.08;
}

.committee-review-copy p {
  margin-bottom: 0;
  color: #39465a;
  font-size: 18px;
  line-height: 1.72;
}

.committee-principles {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 50px;
  border-top: 1px solid var(--committee-line);
  border-bottom: 1px solid var(--committee-line);
}

.committee-principles article {
  min-height: 280px;
  padding: 38px 36px 34px;
}

.committee-principles article + article {
  border-left: 1px solid var(--committee-line);
}

.committee-principles h3 {
  margin-bottom: 14px;
  color: var(--committee-navy);
  font-size: 22px;
}

.committee-principles p {
  margin-bottom: 0;
  color: #586579;
  font-size: 15px;
  line-height: 1.65;
}

.committee-members {
  background: #fff;
}

.committee-members .section-heading {
  max-width: 800px;
  margin: 0 auto 54px;
  text-align: center;
}

.committee-members .section-heading .eyebrow {
  margin-bottom: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.committee-members .section-heading h2 {
  margin-bottom: 20px;
}

.committee-members .section-heading > p:last-child {
  margin-bottom: 0;
  color: #596579;
  font-size: 17px;
  line-height: 1.65;
}

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

/* ── Carte membre du comité — même langage visuel que team-profile ── */
.committee-member-card {
  --committee-accent: var(--committee-cyan, #08a9d2);
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(12, 31, 99, 0.08);
  border-radius: 20px;
  box-shadow:
    0 1px 2px rgba(12, 31, 99, 0.04),
    0 14px 34px rgba(12, 31, 99, 0.08);
  transition: box-shadow 0.35s cubic-bezier(.2,.8,.2,1), transform 0.35s cubic-bezier(.2,.8,.2,1), border-color 0.3s ease;
}

.committee-member-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  height: 4px;
  background: linear-gradient(90deg, var(--committee-accent), color-mix(in srgb, var(--committee-accent) 40%, transparent));
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: left;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.committee-member-card:nth-child(3n + 2) {
  --committee-accent: var(--sdesj-blue, #0c1f63);
}

.committee-member-card:nth-child(3n) {
  --committee-accent: var(--sdesj-red, #d5262c);
}

.committee-member-card:hover {
  border-color: color-mix(in srgb, var(--committee-accent) 32%, transparent);
  box-shadow:
    0 2px 4px rgba(12, 31, 99, 0.05),
    0 26px 54px rgba(12, 31, 99, 0.16);
  transform: translateY(-6px);
}

.committee-member-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.committee-member-media {
  position: relative;
  aspect-ratio: 1 / 0.92;
  overflow: hidden;
  background: #eaf0f8;
}

.committee-member-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(12, 31, 99, 0.16) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.committee-member-card:hover .committee-member-media::after {
  opacity: 1;
}

.committee-member-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
}

.committee-member-card:hover .committee-member-media img {
  transform: scale(1.045);
}

.committee-member-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 26px 24px;
}

.committee-member-card .committee-member-role {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  padding: 5px 12px;
  color: var(--committee-accent);
  background: color-mix(in srgb, var(--committee-accent) 12%, white);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.committee-member-card h3 {
  margin: 0;
  color: var(--sdesj-blue, #0c1f63);
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.01em;
}

.committee-member-card p {
  margin: 10px 0 18px;
  color: #5d687b;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.5;
}

.committee-member-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.committee-cta {
  background: linear-gradient(105deg, #0c1f63 0%, #13457a 58%, #087ea4 100%);
}

.committee-cta .vision-eyebrow {
  color: #9beafa;
}

.committee-cta .vision-button.primary {
  background: #fff;
  color: var(--committee-navy);
}

/* Observatoire: Comité de recherche des jeunes */
.observatory-nav-group.youth-committee-current > summary {
  background: var(--vision-green-dark);
}

.youth-committee-site {
  --youth-gray: #6f7784;
  --youth-gray-dark: #394150;
  --youth-cyan: #08a9d2;
  --youth-green: #31ad49;
  --youth-soft: #f2f5f7;
  --youth-line: #d7e0e5;
  --committee-cyan: var(--youth-cyan);
  --committee-cyan-dark: #087ea4;
  --committee-navy: #0c1f63;
  --committee-soft: var(--youth-soft);
  --committee-line: var(--youth-line);
}

.youth-committee-site .vision-hero-image {
  object-position: center 48%;
}

.youth-committee-site .vision-hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 24, 68, 0.97) 0%, rgba(30, 48, 82, 0.91) 46%, rgba(22, 105, 126, 0.62) 76%, rgba(49, 173, 73, 0.18) 100%),
    rgba(12, 31, 99, 0.16);
}

.youth-committee-site .vision-kicker span {
  background: #73e1f1;
}

.youth-committee-site .vision-button.primary {
  background: var(--youth-cyan);
  color: #071b3f;
}

.youth-committee-story .vision-eyebrow,
.youth-committee-contributions .vision-eyebrow,
.youth-committee-members .eyebrow {
  color: #596579;
}

.youth-committee-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border: 1px solid rgba(8, 169, 210, 0.3);
  border-radius: 7px;
  background: #e8f7fa;
  color: #087ea4;
}

.youth-committee-icon.small {
  width: 46px;
  height: 46px;
}

.youth-committee-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.youth-committee-story .vision-story-media,
.youth-committee-story .vision-story-media img {
  min-height: 520px;
}

.youth-committee-contributions {
  background: var(--youth-soft);
}

.youth-committee-contributions .committee-principles article:nth-child(2) .youth-committee-icon {
  border-color: rgba(49, 173, 73, 0.3);
  background: #edf8ef;
  color: #207f35;
}

.youth-committee-contributions .committee-principles article:nth-child(3) .youth-committee-icon {
  border-color: rgba(111, 119, 132, 0.3);
  background: #eceff2;
  color: var(--youth-gray-dark);
}

.youth-committee-member-card {
  min-height: 330px;
  border-color: var(--youth-line);
  border-top-color: var(--youth-gray);
  background: #f7f9fa;
}

.youth-committee-member-card:nth-child(3n + 2) {
  border-top-color: var(--youth-cyan);
}

.youth-committee-member-card:nth-child(3n) {
  border-top-color: var(--youth-green);
}

.youth-committee-member-card:hover {
  border-color: rgba(8, 169, 210, 0.58);
}

.youth-committee-member-card > img {
  width: 120px;
  height: 120px;
  filter: saturate(0.82);
}

.youth-committee-member-card .committee-member-role {
  min-height: 0;
  color: #596579;
}

.youth-committee-cta {
  background: linear-gradient(105deg, #394150 0%, #174f69 54%, #0c1f63 100%);
}

.youth-committee-cta .vision-eyebrow {
  color: #a6edf6;
}

.youth-committee-cta .vision-button.primary {
  background: #fff;
  color: #0c1f63;
}

/* Observatoire: Groupes de recherche */
.observatory-nav-group.research-groups-current > summary {
  background: var(--vision-green-dark);
}

.research-groups-site {
  --research-cyan: #08a9d2;
  --research-navy: #0c1f63;
  --research-soft: #f2f6f8;
  --research-line: #d9e4e9;
  --research-culture: #ffd400;
  --research-economy: #242c86;
  --research-education: #0b8dcc;
  --research-justice: #dc2f32;
  --research-health: #38923d;
}

.research-groups-site .vision-hero-image {
  object-position: center 42%;
}

.research-groups-site .vision-hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 20, 63, 0.98) 0%, rgba(12, 31, 99, 0.92) 48%, rgba(5, 105, 132, 0.58) 78%, rgba(8, 169, 210, 0.2) 100%),
    rgba(12, 31, 99, 0.2);
}

.research-groups-site .vision-kicker span {
  background: #73e1f1;
}

.research-groups-site .vision-button.primary {
  background: var(--research-cyan);
  color: #071b3f;
}

.research-groups-story .vision-eyebrow,
.research-groups-overview .vision-eyebrow,
.research-groups-members .eyebrow {
  color: #087ea4;
}

.research-groups-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border: 1px solid rgba(8, 169, 210, 0.3);
  border-radius: 7px;
  background: #e8f7fa;
  color: #087ea4;
}

.research-groups-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.research-groups-story .vision-story-media,
.research-groups-story .vision-story-media img {
  min-height: 520px;
}

.research-groups-overview {
  background: var(--research-soft);
}

.research-theme-index {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 48px;
}

.research-theme-index a {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid color-mix(in srgb, var(--theme-accent) 34%, #d9e4e9);
  border-top: 5px solid var(--theme-accent);
  border-radius: 8px;
  background: #fff;
  color: var(--research-navy);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.research-theme-index a:hover {
  border-color: color-mix(in srgb, var(--theme-accent) 68%, #d9e4e9);
  box-shadow: 0 18px 36px rgba(12, 31, 99, 0.1);
  transform: translateY(-3px);
}

.research-theme-index span {
  font-size: 18px;
  font-weight: 850;
  line-height: 1.2;
}

.research-theme-index strong {
  color: #596579;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.research-theme-index .culture,
.research-group-section.culture {
  --theme-accent: var(--research-culture);
}

.research-theme-index .economy,
.research-group-section.economy {
  --theme-accent: var(--research-economy);
}

.research-theme-index .education,
.research-group-section.education {
  --theme-accent: var(--research-education);
}

.research-theme-index .justice,
.research-group-section.justice {
  --theme-accent: var(--research-justice);
}

.research-theme-index .health,
.research-group-section.health {
  --theme-accent: var(--research-health);
}

.research-groups-members {
  background: #fff;
}

.research-groups-members .section-heading {
  max-width: 850px;
  margin: 0 auto 54px;
  text-align: center;
}

.research-groups-members .section-heading h2 {
  margin-bottom: 18px;
  color: var(--vision-ink);
  font-size: 46px;
  line-height: 1.08;
}

.research-groups-members .section-heading > p:last-child {
  margin-bottom: 0;
  color: #596579;
  font-size: 17px;
  line-height: 1.65;
}

.research-group-section {
  padding: 34px 0 50px;
  border-top: 1px solid var(--research-line);
  scroll-margin-top: 108px;
}

.research-group-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 24px;
  align-items: end;
  margin-bottom: 22px;
  border-left: 5px solid var(--theme-accent);
  padding-left: 20px;
}

.research-group-heading .vision-eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--theme-accent) 84%, var(--research-navy));
}

.research-group-heading h3 {
  margin-bottom: 0;
  color: var(--research-navy);
  font-size: 38px;
  line-height: 1.08;
}

.research-group-heading span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid color-mix(in srgb, var(--theme-accent) 42%, #d9e4e9);
  border-radius: 5px;
  background: color-mix(in srgb, var(--theme-accent) 9%, #fff);
  color: var(--research-navy);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.research-member-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.research-member-card {
  display: grid;
  min-height: 300px;
  justify-items: center;
  padding: 28px 22px 24px;
  border: 1px solid var(--research-line);
  border-top: 4px solid var(--theme-accent);
  border-radius: 8px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--theme-accent) 5%, #fff) 0%, #f8fafb 100%);
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.research-member-card:hover {
  border-color: color-mix(in srgb, var(--theme-accent) 58%, var(--research-line));
  box-shadow: 0 16px 34px rgba(12, 31, 99, 0.1);
  transform: translateY(-3px);
}

.research-member-card > img {
  width: 96px;
  height: 96px;
  margin-bottom: 20px;
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(12, 31, 99, 0.12);
  filter: saturate(0.82);
  object-fit: cover;
}

.research-member-card > div {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.research-member-card h3 {
  margin-bottom: 8px;
  color: var(--research-navy);
  font-size: 21px;
  line-height: 1.22;
}

.research-member-card p {
  margin-bottom: 0;
  color: #596579;
  font-size: 14px;
  line-height: 1.5;
}

.research-member-card .committee-member-role {
  min-height: 0;
  color: color-mix(in srgb, var(--theme-accent) 86%, #596579);
}

.research-groups-cta {
  background: linear-gradient(105deg, #0c1f63 0%, #124a70 54%, #087ea4 100%);
}

.research-groups-cta .vision-eyebrow {
  color: #a6edf6;
}

.research-groups-cta .vision-button.primary {
  background: #fff;
  color: var(--research-navy);
}

/* Observatoire: Appel à participation */
.observatory-nav-group.participation-current > summary {
  background: #0c1f63;
}

.participation-site {
  --participation-navy: #0c1f63;
  --participation-cyan: #08a9d2;
  --participation-yellow: #ffd02f;
  --participation-red: #dc2f32;
  --participation-soft: #f3f6fa;
  --participation-line: #d9e3ed;
}

.participation-site .vision-hero-image {
  object-position: center 48%;
}

.participation-site .vision-hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 20, 63, 0.98) 0%, rgba(12, 31, 99, 0.93) 48%, rgba(9, 94, 129, 0.6) 78%, rgba(8, 169, 210, 0.2) 100%),
    rgba(12, 31, 99, 0.18);
}

.participation-site .vision-kicker span {
  background: var(--participation-yellow);
}

.participation-site .vision-button.primary {
  background: var(--participation-cyan);
  color: #061a3a;
}

.participation-opportunity {
  background: #fff;
}

.participation-opportunity.candidature {
  color: #fff;
  background: #111f58;
}

.participation-opportunity-inner {
  display: grid;
  grid-template-columns: minmax(230px, 0.36fr) minmax(0, 1fr);
  gap: 76px;
  align-items: start;
}

.participation-opportunity-inner.reverse {
  grid-template-columns: minmax(230px, 0.36fr) minmax(0, 1fr);
}

.participation-opportunity-aside {
  position: sticky;
  top: 110px;
  padding-top: 4px;
}

.participation-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid rgba(8, 169, 210, 0.32);
  border-radius: 7px;
  background: #e8f7fa;
  color: #087ea4;
}

.participation-icon.small {
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
}

.participation-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.candidature .participation-icon {
  border-color: rgba(255, 208, 47, 0.5);
  background: rgba(255, 208, 47, 0.12);
  color: #ffe06e;
}

.participation-status {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  margin: 0 0 18px;
  padding: 7px 12px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.participation-status.closed {
  border: 1px solid rgba(220, 47, 50, 0.28);
  background: rgba(220, 47, 50, 0.09);
  color: #b82225;
}

.candidature .participation-status.closed {
  border-color: rgba(255, 208, 47, 0.4);
  background: rgba(255, 208, 47, 0.12);
  color: #ffe06e;
}

.participation-date {
  margin-bottom: 0;
  color: #697587;
  font-size: 15px;
  line-height: 1.6;
}

.participation-date strong {
  color: var(--participation-navy);
  font-size: 19px;
}

.candidature .participation-date {
  color: rgba(255, 255, 255, 0.72);
}

.candidature .participation-date strong {
  color: #fff;
}

.participation-opportunity-copy {
  max-width: 880px;
}

.participation-opportunity-copy .vision-eyebrow,
.participation-projects .vision-eyebrow {
  color: #087ea4;
}

.candidature .participation-opportunity-copy .vision-eyebrow {
  color: #73e1f1;
}

.participation-opportunity-copy h2,
.participation-projects h2 {
  margin-bottom: 24px;
  color: var(--participation-navy);
  font-size: 48px;
  line-height: 1.08;
}

.candidature .participation-opportunity-copy h2 {
  color: #fff;
}

.participation-opportunity-copy > p,
.participation-projects-copy > p {
  max-width: 820px;
  color: #4d5a6d;
  font-size: 17px;
  line-height: 1.72;
}

.candidature .participation-opportunity-copy > p {
  color: rgba(255, 255, 255, 0.8);
}

.participation-opportunity-copy .vision-lead,
.participation-projects-copy .vision-lead {
  color: #1f2d43;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.62;
}

.candidature .participation-opportunity-copy .vision-lead {
  color: #fff;
}

.participation-steps {
  margin-top: 42px;
  border-top: 1px solid var(--participation-line);
}

.participation-steps article {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--participation-line);
}

.participation-steps span {
  color: var(--participation-cyan);
  font-size: 15px;
  font-weight: 900;
}

.participation-steps h3,
.participation-profile h3,
.participation-project-principles h3 {
  margin-bottom: 8px;
  color: var(--participation-navy);
  font-size: 21px;
  line-height: 1.25;
}

.participation-steps p,
.participation-project-principles p {
  margin-bottom: 0;
  color: #596579;
  font-size: 15px;
  line-height: 1.62;
}

.participation-profile {
  margin-top: 42px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.participation-profile h3 {
  color: #fff;
}

.participation-profile ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.participation-profile li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}

.participation-profile li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #73e1f1;
  content: "✓";
  font-weight: 900;
}

.participation-contact-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px 28px;
  margin-top: 28px;
}

.participation-contact-line p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.participation-contact-line a {
  color: #73e1f1;
  font-weight: 800;
}

.participation-section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.participation-action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid var(--participation-navy);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.participation-action svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.participation-action.primary {
  border-color: var(--participation-cyan);
  background: var(--participation-cyan);
  color: #061a3a;
}

.participation-action.secondary {
  background: transparent;
  color: var(--participation-navy);
}

.participation-action:hover {
  box-shadow: 0 12px 24px rgba(12, 31, 99, 0.14);
  transform: translateY(-2px);
}

.candidature .participation-action.secondary {
  border-color: rgba(255, 255, 255, 0.58);
  color: #fff;
}

.candidature .participation-action.primary {
  border-color: #73e1f1;
  background: #73e1f1;
  color: #071b3f;
}

.participation-projects {
  background: var(--participation-soft);
}

.participation-projects-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.78fr);
  gap: 76px;
  align-items: center;
}

.participation-projects-media {
  margin: 0;
}

.participation-projects-media img {
  display: block;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(12, 31, 99, 0.14);
}

.participation-project-principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 38px;
}

.participation-project-principles article {
  padding-top: 26px;
  border-top: 3px solid var(--participation-cyan);
}

.participation-project-principles article + article {
  border-top-color: var(--participation-yellow);
}

.participation-project-principles article + article .participation-icon {
  border-color: rgba(255, 208, 47, 0.42);
  background: rgba(255, 208, 47, 0.13);
  color: #9b7900;
}

.participation-cta {
  background: linear-gradient(105deg, #0c1f63 0%, #113c76 56%, #087ea4 100%);
}

.participation-cta .vision-eyebrow {
  color: #ffe06e;
}

.participation-cta .vision-button.primary {
  background: #fff;
  color: var(--participation-navy);
}

/* Sommet Jeunes Afro: Carrière */
.career-site {
  --career-navy: #0c1f63;
  --career-blue: #14548a;
  --career-cyan: #08a9d2;
  --career-green: #36a852;
  --career-yellow: #ffd02f;
  --career-soft: #f4f7fb;
  --career-line: rgba(12, 31, 99, 0.12);
  --career-muted: #536174;

  /* Override les variables vision-* héritées pour qu'elles
     utilisent la palette bleue de la carrière au lieu du vert. */
  --vision-line: rgba(12, 31, 99, 0.12);
  --vision-soft: #f4f7fb;
  --vision-green-dark: var(--career-navy);
}

.career-site .vision-hero-image {
  object-position: center 45%;
}

.career-site .vision-hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 20, 63, 0.98) 0%, rgba(12, 31, 99, 0.92) 45%, rgba(20, 84, 138, 0.58) 76%, rgba(8, 169, 210, 0.16) 100%),
    rgba(12, 31, 99, 0.16);
}

.career-site .vision-kicker span {
  background: var(--career-yellow);
}

.career-site .vision-button.primary {
  background: var(--career-cyan);
  color: #061a3a;
}

/* Surcharges de la nav d'ancrage pour la page carrière */
.career-site .vision-anchor-nav a:hover {
  color: var(--career-navy);
  background: var(--career-soft);
}

/* Séparation visuelle claire entre le hero et la section histoire */
.career-story {
  background: #fff;
  border-top: 1px solid rgba(12, 31, 99, 0.07);
  box-shadow: 0 -8px 32px rgba(12, 31, 99, 0.04);
}

.career-story .vision-story-media,
.career-story .vision-story-media img {
  min-height: 520px;
}

/* Lead text dans la section histoire : lecture confortable */
.career-story .vision-lead {
  color: var(--ink);
  font-size: 1.12rem;
}

.career-story .vision-story-copy p:not(.vision-eyebrow):not(.vision-lead) {
  color: var(--muted);
}

.career-story .vision-eyebrow,
.career-benefits .vision-eyebrow,
.career-openings .vision-eyebrow,
.career-internships .vision-eyebrow,
.career-faq .vision-eyebrow {
  color: var(--sdesj-blue);
  opacity: 0.75;
}

.career-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--sdesj-blue);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: gap 0.25s ease;
}

.career-text-link:hover {
  gap: 12px;
}

.career-benefits {
  background: var(--career-soft);
}

.career-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 58px;
}

/* Postes et stages : description sous le titre, pas à côté */
.career-openings .career-section-heading,
.career-internships .career-section-heading {
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 760px;
}

.career-section-heading h2,
.career-internships h2,
.career-faq h2 {
  max-width: 720px;
  margin: 0;
  color: var(--career-navy);
  font-size: 46px;
  line-height: 1.08;
}

.career-section-heading > p,
.career-internships .career-internship-layout > div > p:not(.vision-eyebrow),
.career-faq-heading > p:not(.vision-eyebrow) {
  margin: 0;
  color: var(--career-muted);
  font-size: 17px;
  line-height: 1.7;
}

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

.career-benefit-grid article {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 26px;
  background: #fff;
  border: 1px solid rgba(12, 31, 99, 0.07);
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(12, 31, 99, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.career-benefit-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(12, 31, 99, 0.12);
}

.career-benefit-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(12, 31, 99, 0.06);
  color: var(--sdesj-blue);
  flex-shrink: 0;
}

.career-benefit-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.career-benefit-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
  overflow-wrap: break-word;
}

.career-benefit-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  overflow-wrap: break-word;
}

.career-openings {
  background: #fff;
}

.career-opening-list {
  display: grid;
  gap: 12px;
}

/* Reset old generic article rule — sdj-job-card overrides via specificity */
.career-opening-list article.sdj-job-card {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: unset;
  grid-template-columns: unset;
  padding: 20px 24px !important;
  border: 1px solid rgba(12, 31, 99, 0.08);
  border-bottom: 1px solid rgba(12, 31, 99, 0.08);
  border-radius: 12px;
  background: #fff !important;
  box-shadow: 0 2px 8px rgba(12, 31, 99, 0.04);
  transition: box-shadow 0.25s ease, background 0.25s ease !important;
}

.career-opening-list article.sdj-job-card:hover {
  background: #fafbff !important;
  box-shadow: 0 6px 24px rgba(12, 31, 99, 0.1) !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
  transform: none !important;
}

.career-openings-empty {
  padding: 40px 24px;
  background: rgba(12, 31, 99, 0.03);
  border: 1px dashed rgba(12, 31, 99, 0.15);
  border-radius: 12px;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ── Internships — same tone as postes but visually distinct */
.career-internships {
  background: var(--soft);
}

.career-internship-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.career-internships h2 {
  color: var(--ink);
}

.career-internships .vision-eyebrow {
  color: var(--sdesj-blue);
}

.career-internships .career-internship-layout > div > p:not(.vision-eyebrow) {
  max-width: 720px;
  color: var(--muted);
}

.career-internships-list {
  /* inherits .career-opening-list grid */
}

.career-faq {
  background: #fff;
}

.career-faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.5fr) minmax(0, 1fr);
  gap: 90px;
  align-items: start;
}

.career-faq-heading {
  position: sticky;
  top: 118px;
}

.career-faq-list {
  border-top: 1px solid var(--career-line);
}

.career-faq-list details {
  border-bottom: 1px solid var(--career-line);
}

.career-faq-list summary {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 22px 0;
  color: var(--career-navy);
  cursor: pointer;
  font-size: 19px;
  font-weight: 800;
  list-style: none;
}

.career-faq-list summary::-webkit-details-marker {
  display: none;
}

.career-faq-list summary span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--career-line);
  border-radius: 50%;
  color: #087ea4;
  font-size: 23px;
  font-weight: 500;
  transition: transform 180ms ease, background-color 180ms ease;
}

.career-faq-list details[open] summary span {
  background: var(--career-soft);
  transform: rotate(45deg);
}

.career-faq-list details > p,
.career-faq-list details > div {
  max-width: 760px;
  padding: 0 54px 28px 0;
  color: var(--career-muted);
  font-size: 16px;
  line-height: 1.7;
}

.career-faq-list details > div p {
  margin-bottom: 12px;
}

.career-faq-list ul {
  margin: 0;
  padding-left: 22px;
}

.career-faq-list li + li {
  margin-top: 7px;
}

.career-cta {
  background: linear-gradient(105deg, #116d3b 0%, #13725e 50%, #0c1f63 100%);
}

.career-cta .vision-eyebrow {
  color: #ffe06e;
}

.career-cta .vision-button.primary {
  background: #fff;
  color: var(--career-navy);
}

@media (max-width: 1020px) {
  .career-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .career-benefit-grid article:nth-child(odd) {
    border-left: 0;
  }

  .career-benefit-grid article:nth-child(even) {
    border-left: 1px solid var(--career-line);
  }

  .career-benefit-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--career-line);
  }

  .career-opening-list article {
    grid-template-columns: minmax(0, 1fr) 150px 120px;
    gap: 20px;
  }

  .career-internship-layout,
  .career-faq-layout {
    gap: 56px;
  }
}

@media (max-width: 860px) {
  .career-site .vision-hero-overlay {
    background: rgba(8, 29, 75, 0.91);
  }

  .career-section-heading,
  .career-internship-layout,
  .career-faq-layout {
    grid-template-columns: 1fr;
  }

  .career-section-heading {
    gap: 22px;
  }

  .career-section-heading h2,
  .career-internships h2,
  .career-faq h2 {
    font-size: 38px;
  }

  .career-opening-list article {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .career-opening-list article > div {
    grid-column: 1 / -1;
  }

  .career-internship-layout {
    gap: 44px;
  }

  .career-faq-heading {
    position: static;
  }
}

@media (max-width: 620px) {
  .career-site .vision-hero-copy {
    padding-right: 48px;
  }

  .career-benefit-grid {
    grid-template-columns: 1fr;
  }

  .career-benefit-grid article {
    min-height: 0;
    padding: 22px 20px;
    border-left: 0 !important;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .career-benefit-grid article + article {
    border-top: 0;
  }

  .career-opening-list article {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 0;
  }

  .career-opening-list article > div {
    grid-column: auto;
  }

  .career-opening-list article:hover {
    padding-right: 0;
    padding-left: 0;
    background: transparent;
  }

  .career-apply-button,
  .career-apply-button.light {
    width: 100%;
  }

  .career-internship-opening {
    padding: 30px 24px;
  }

  .career-faq-list summary {
    padding-right: 64px;
    font-size: 17px;
  }

  .career-faq-list details > p,
  .career-faq-list details > div {
    padding-right: 0;
  }
}

/* Sommet Jeunes Afro: Bénévolat */
.volunteer-site .vision-hero-image {
  object-position: center 40%;
}

.volunteer-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}

.volunteer-intro-heading h2 {
  max-width: 420px;
  margin-bottom: 0;
  color: var(--vision-ink);
  font-size: 40px;
  line-height: 1.1;
}

.volunteer-intro-copy {
  max-width: 650px;
}

.volunteer-lead {
  margin-bottom: 20px;
  color: var(--vision-ink);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
}

.volunteer-intro-copy p:not(.volunteer-lead) {
  margin-bottom: 18px;
  color: var(--vision-muted);
  font-size: 17px;
  line-height: 1.72;
}

.volunteer-benefits {
  background: var(--vision-soft);
}

.volunteer-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 50px;
}

.volunteer-section-heading h2 {
  max-width: 620px;
  margin: 0;
  color: var(--vision-ink);
  font-size: 42px;
  line-height: 1.1;
}

.volunteer-section-heading > p {
  margin: 0;
  color: var(--vision-muted);
  font-size: 17px;
  line-height: 1.7;
}

.volunteer-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.volunteer-impact-grid article {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid rgba(12, 31, 99, 0.07);
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(12, 31, 99, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.volunteer-impact-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(12, 31, 99, 0.12);
}

.volunteer-impact-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(49, 173, 73, 0.12);
  color: var(--vision-green-dark);
  flex-shrink: 0;
}

.volunteer-impact-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.volunteer-impact-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.3;
}

.volunteer-impact-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.volunteer-join {
  background: #fff;
}

.volunteer-join-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 86px;
  align-items: center;
}

.volunteer-join-media {
  min-height: 480px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--vision-soft);
}

.volunteer-join-media img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.volunteer-join-copy {
  max-width: 620px;
}

.volunteer-join-copy .volunteer-lead a {
  color: var(--vision-green-dark);
  font-weight: 700;
}

@media (max-width: 1020px) {
  .volunteer-impact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .volunteer-intro-layout,
  .volunteer-section-heading,
  .volunteer-join-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .volunteer-join-media,
  .volunteer-join-media img {
    min-height: 320px;
  }
}

@media (max-width: 620px) {
  .volunteer-impact-grid {
    grid-template-columns: 1fr;
  }
}

/* Sommet Jeunes Afro: Devenir partenaire */
.partner-site .vision-hero-image {
  object-position: center 45%;
}

.partner-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}

.partner-intro-heading h2 {
  max-width: 420px;
  margin-bottom: 0;
  color: var(--vision-ink);
  font-size: 40px;
  line-height: 1.1;
}

.partner-intro-copy {
  max-width: 650px;
}

.partner-lead {
  margin-bottom: 20px;
  color: var(--vision-ink);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
}

.partner-intro-copy p:not(.partner-lead) {
  margin-bottom: 18px;
  color: var(--vision-muted);
  font-size: 17px;
  line-height: 1.72;
}

.partner-benefits {
  background: var(--vision-soft);
}

.partner-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 50px;
}

.partner-section-heading h2 {
  max-width: 620px;
  margin: 0;
  color: var(--vision-ink);
  font-size: 42px;
  line-height: 1.1;
}

.partner-section-heading > p {
  margin: 0;
  color: var(--vision-muted);
  font-size: 17px;
  line-height: 1.7;
}

.partner-benefit-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.partner-benefit-layout article {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.partner-benefit-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(12, 31, 99, 0.06);
  color: var(--sdesj-blue);
}

.partner-benefit-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.partner-benefit-layout h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.3;
}

.partner-benefit-layout ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.partner-benefit-layout li + li {
  margin-top: 8px;
}

.partner-current {
  background: #fff;
}

.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.partner-logo-grid article,
.partner-logo-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  padding: 20px;
  border: 1px solid rgba(12, 31, 99, 0.15);
  border-radius: 12px;
  background: #fff;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.partner-logo-grid a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(12, 31, 99, 0.1);
}

.partner-logo-grid img {
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
}

.partner-logo-grid .no-logo {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  background: var(--vision-soft);
  border-color: rgba(12, 31, 99, 0.08);
}

.partner-logo-grid span {
  display: inline-flex;
  min-width: 56px;
  height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 8px;
  background: var(--sdesj-blue);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.partner-logo-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 860px) {
  .partner-intro-layout,
  .partner-section-heading,
  .partner-benefit-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Observatoire: PJCN (Portrait des jeunes des communautés noires du Québec) */
.pjcn-site {
  --pjcn-red: var(--sdesj-red);
  --pjcn-navy: #0c1f63;
  --pjcn-ink: #111827;
  --pjcn-muted: #596579;
  --pjcn-soft: #fbeceb;
  --pjcn-line: rgba(12, 31, 99, 0.12);
  background: #fff;
}

.pjcn-page h1,
.pjcn-page h2,
.pjcn-page h3,
.pjcn-page p {
  margin-top: 0;
}

.pjcn-hero {
  position: relative;
  display: flex;
  min-height: 640px;
  align-items: center;
  overflow: hidden;
  background: var(--pjcn-navy);
  isolation: isolate;
  scroll-margin-top: 96px;
}

.pjcn-hero-image,
.pjcn-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
}

.pjcn-hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: 60% center;
}

.pjcn-hero-overlay {
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(5, 22, 64, 0.97) 0%, rgba(12, 31, 99, 0.92) 46%, rgba(228, 35, 32, 0.42) 100%),
    rgba(12, 31, 99, 0.18);
}

.pjcn-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.5fr);
  align-items: center;
  gap: 60px;
  width: min(1280px, calc(100% - 40px));
  padding-top: 100px;
  padding-bottom: 100px;
}

.pjcn-kicker,
.pjcn-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--pjcn-red);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.pjcn-kicker {
  color: #fff;
}

.pjcn-kicker span {
  display: block;
  width: 30px;
  height: 4px;
  background: var(--sdesj-red);
}

.pjcn-hero h1 {
  max-width: 620px;
  margin-bottom: 24px;
  color: #fff;
  font-size: 54px;
  line-height: 1.06;
}

.pjcn-hero-copy > p:not(.pjcn-kicker) {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.65;
}

.pjcn-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.pjcn-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.pjcn-button:hover {
  transform: translateY(-2px);
}

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

.pjcn-button.secondary {
  border-color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.pjcn-hero-report {
  margin: 0;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
}

.pjcn-hero-report img {
  display: block;
  width: 100%;
  border-radius: 8px;
}

.pjcn-hero-report figcaption {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  text-align: center;
}

.pjcn-snapshot {
  padding: 40px 0;
  background: var(--pjcn-soft);
}

.pjcn-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.pjcn-snapshot-grid div {
  display: grid;
  justify-items: start;
  gap: 6px;
  padding: 0 24px;
  border-left: 1px solid rgba(12, 31, 99, 0.1);
}

.pjcn-snapshot-grid div:first-child {
  padding-left: 0;
  border-left: 0;
}

.pjcn-snapshot-grid strong {
  color: var(--pjcn-red);
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1;
}

.pjcn-snapshot-grid span {
  color: var(--pjcn-muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pjcn-page .section {
  padding-top: 100px;
  padding-bottom: 100px;
  scroll-margin-top: 96px;
}

.pjcn-about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}

.pjcn-section-heading h2 {
  max-width: 420px;
  margin-bottom: 0;
  color: var(--pjcn-ink);
  font-size: 40px;
  line-height: 1.1;
}

.pjcn-prose {
  max-width: 680px;
}

.pjcn-lead {
  margin-bottom: 20px;
  color: var(--pjcn-ink);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.65;
}

.pjcn-prose p:not(.pjcn-lead) {
  margin-bottom: 18px;
  color: var(--pjcn-muted);
  font-size: 16px;
  line-height: 1.72;
}

.pjcn-exploration {
  background: var(--pjcn-soft);
}

.pjcn-exploration-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

.pjcn-exploration-copy h2 {
  max-width: 480px;
  color: var(--pjcn-ink);
  font-size: 38px;
  line-height: 1.12;
}

.pjcn-exploration-copy p {
  max-width: 480px;
  margin: 0;
  color: var(--pjcn-muted);
  font-size: 16px;
  line-height: 1.7;
}

.pjcn-theme-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pjcn-theme-list span {
  padding: 12px 18px;
  border: 1px solid var(--pjcn-line);
  border-radius: 999px;
  background: #fff;
  color: var(--pjcn-navy);
  font-size: 0.86rem;
  font-weight: 700;
}

.pjcn-audiences-heading {
  max-width: 720px;
  margin-bottom: 50px;
}

.pjcn-audiences-heading h2 {
  color: var(--pjcn-ink);
  font-size: 40px;
  line-height: 1.1;
}

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

.pjcn-audience-grid article {
  padding: 30px 26px;
  border: 1px solid var(--pjcn-line);
  border-radius: 14px;
  background: #fff;
}

.pjcn-audience-grid > article > span {
  display: block;
  margin-bottom: 14px;
  color: var(--pjcn-red);
  font-size: 0.9rem;
  font-weight: 800;
}

.pjcn-audience-grid h3 {
  margin: 0 0 10px;
  color: var(--pjcn-ink);
  font-size: 1.1rem;
  font-weight: 800;
}

.pjcn-audience-grid p {
  margin: 0;
  color: var(--pjcn-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.pjcn-purpose {
  padding: 96px 0;
  background: var(--pjcn-navy);
}

.pjcn-purpose-inner {
  display: grid;
  gap: 40px;
}

.pjcn-purpose-copy {
  max-width: 900px;
}

.pjcn-purpose-copy blockquote {
  margin: 0 0 24px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
}

.pjcn-dashboard-frame {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.pjcn-dashboard-frame .full-screen-iframe {
  display: block;
  width: 100%;
  min-height: 600px;
  border: 0;
}

@media (max-width: 1020px) {
  .pjcn-hero-inner {
    grid-template-columns: 1fr;
  }

  .pjcn-hero-report {
    max-width: 360px;
  }

  .pjcn-audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .pjcn-snapshot-grid {
    gap: 20px;
  }

  .pjcn-about-layout,
  .pjcn-exploration-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pjcn-hero h1 {
    font-size: 38px;
  }
}

@media (max-width: 620px) {
  .pjcn-snapshot-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pjcn-snapshot-grid div {
    padding: 0;
    border-left: 0;
    border-top: 1px solid rgba(12, 31, 99, 0.1);
    padding-top: 16px;
  }

  .pjcn-snapshot-grid div:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .pjcn-audience-grid {
    grid-template-columns: 1fr;
  }

  .pjcn-purpose-copy blockquote {
    font-size: 1.2rem;
  }
}

/* Sommet Jeunes Afro: AfroLab */
.afrolab-site {
  --afrolab-navy: #0c1f63;
  --afrolab-cyan: #08a9d2;
  --afrolab-red: #e42320;
  --afrolab-yellow: #ffd02f;
  --afrolab-green: #36a852;
  --afrolab-soft: #f3f7fa;
  --afrolab-line: #d8e3ea;
  --afrolab-muted: #526074;
}

.afrolab-site .vision-hero-image {
  object-position: center 38%;
}

.afrolab-site .vision-hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 20, 63, 0.98) 0%, rgba(12, 31, 99, 0.9) 43%, rgba(8, 169, 210, 0.5) 76%, rgba(228, 35, 32, 0.14) 100%),
    rgba(12, 31, 99, 0.14);
}

.afrolab-site .vision-kicker span {
  background: var(--afrolab-yellow);
}

.afrolab-site .vision-button.primary {
  background: var(--afrolab-red);
  color: #fff;
}

.afrolab-site .vision-button.primary:hover {
  background: #c81e1b;
}

.afrolab-intro {
  background: #fff;
}

.afrolab-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(440px, 0.72fr);
  gap: 86px;
  align-items: center;
}

.afrolab-intro-copy {
  max-width: 690px;
}

.afrolab-intro .vision-eyebrow,
.afrolab-disciplines .vision-eyebrow,
.afrolab-resources .vision-eyebrow {
  color: #087ea4;
}

.afrolab-intro h2,
.afrolab-section-heading h2,
.afrolab-resources h2,
.afrolab-cta h2 {
  margin-bottom: 24px;
  color: var(--afrolab-navy);
  font-size: 46px;
  line-height: 1.08;
}

.afrolab-intro-copy > p:not(.vision-eyebrow),
.afrolab-section-heading > p,
.afrolab-resources-copy > p:not(.vision-eyebrow) {
  color: var(--afrolab-muted);
  font-size: 17px;
  line-height: 1.72;
}

.afrolab-intro-copy .afrolab-lead {
  color: #26344b;
  font-size: 21px;
  font-weight: 650;
}

.afrolab-intro-media {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--afrolab-soft);
}

.afrolab-intro-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.afrolab-intro-media:hover img {
  transform: scale(1.025);
}

.afrolab-intro-media figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 5px;
  background: rgba(12, 31, 99, 0.88);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.afrolab-intro-media figcaption span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--afrolab-red);
  box-shadow: 0 0 0 5px rgba(228, 35, 32, 0.2);
}

.afrolab-disciplines {
  background: var(--afrolab-soft);
}

.afrolab-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 56px;
}

.afrolab-section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.afrolab-section-heading > p {
  margin: 0;
}

.afrolab-discipline-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.afrolab-discipline {
  --discipline-accent: var(--afrolab-cyan);
  display: grid;
  min-height: 390px;
  grid-template-columns: minmax(190px, 0.74fr) minmax(0, 1fr);
  overflow: hidden;
  border-top: 5px solid var(--discipline-accent);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(12, 31, 99, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.afrolab-discipline:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 46px rgba(12, 31, 99, 0.13);
}

.afrolab-discipline.photo {
  --discipline-accent: var(--afrolab-yellow);
}

.afrolab-discipline.podcast {
  --discipline-accent: var(--afrolab-red);
}

.afrolab-discipline.documentary {
  --discipline-accent: var(--afrolab-green);
}

.afrolab-discipline > img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.afrolab-discipline > div {
  padding: 34px 30px;
}

.afrolab-discipline-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border: 1px solid color-mix(in srgb, var(--discipline-accent) 36%, #dce5eb);
  border-radius: 7px;
  background: color-mix(in srgb, var(--discipline-accent) 11%, #fff);
  color: color-mix(in srgb, var(--discipline-accent) 82%, #0c1f63);
}

.afrolab-discipline-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.afrolab-discipline h3 {
  margin-bottom: 18px;
  color: var(--afrolab-navy);
  font-size: 27px;
}

.afrolab-discipline ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.afrolab-discipline li {
  position: relative;
  padding-left: 20px;
  color: var(--afrolab-muted);
  font-size: 15px;
  line-height: 1.55;
}

.afrolab-discipline li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--discipline-accent);
  content: "";
}

.afrolab-resources {
  background: #fff;
}

.afrolab-resources-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1fr);
  gap: 94px;
  align-items: start;
}

.afrolab-resources-copy {
  position: sticky;
  top: 128px;
}

.afrolab-resource-list {
  border-top: 1px solid var(--afrolab-line);
}

.afrolab-resource-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--afrolab-line);
}

.afrolab-resource-list > article > span {
  color: var(--afrolab-red);
  font-size: 14px;
  font-weight: 900;
}

.afrolab-resource-list h3 {
  margin-bottom: 10px;
  color: var(--afrolab-navy);
  font-size: 23px;
}

.afrolab-resource-list p {
  margin-bottom: 0;
  color: var(--afrolab-muted);
  font-size: 16px;
  line-height: 1.68;
}

.afrolab-podcasts {
  color: #fff;
  background: linear-gradient(112deg, #0c1f63 0%, #123e79 58%, #087ea4 100%);
}

.afrolab-section-heading.light h2 {
  color: #fff;
}

.afrolab-section-heading.light .vision-eyebrow {
  color: #ffe06e;
}

.afrolab-section-heading.light > p {
  color: rgba(255, 255, 255, 0.76);
}

.afrolab-podcast-list {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.afrolab-podcast-item {
  display: grid;
  min-height: 118px;
  grid-template-columns: 58px minmax(0, 1fr) 110px 130px;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition: padding 180ms ease, background-color 180ms ease;
}

.afrolab-podcast-item:hover {
  padding-right: 16px;
  padding-left: 16px;
  background: rgba(255, 255, 255, 0.06);
}

/* Real play/pause button — a <button>, not a link that opens the file
   elsewhere. Disabled (no audio file uploaded yet) dims + blocks clicks;
   .is-playing (toggled by script.js on the audio's own play/pause events)
   fills the circle solid so the pressed episode reads clearly at a glance. */
.afrolab-podcast-play {
  display: inline-flex;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.afrolab-podcast-play:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.14);
  transform: scale(1.06);
}

.afrolab-podcast-play.is-playing {
  background: var(--sdesj-light-blue);
  border-color: var(--sdesj-light-blue);
  color: #071542;
}

.afrolab-podcast-play:disabled {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.35);
  cursor: not-allowed;
}

.afrolab-podcast-play svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* The browser's built-in `[hidden] { display: none }` UA rule lives in
   HTML's stylesheet and does not carry over to SVG-namespace elements, so
   the play/pause icon swap (script.js toggles the `hidden` attribute on
   these two <svg> per click) silently does nothing without this explicit
   rule — both icons stay visible, stacked on top of each other. */
.afrolab-podcast-play svg[hidden] {
  display: none;
}

.afrolab-podcast-info {
  min-width: 0;
}

.afrolab-podcast-info > p:first-child {
  margin-bottom: 5px;
  color: #73e1f1;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.afrolab-podcast-info h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 21px;
  line-height: 1.3;
}

/* Seekable progress bar — click or drag anywhere on the track to jump to
   that point; keyboard focus + Left/Right arrows also seek (±5s). */
.afrolab-podcast-progress {
  padding: 6px 0;
  cursor: pointer;
}

.afrolab-podcast-progress-track {
  position: relative;
  height: 4px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  overflow: hidden;
}

.afrolab-podcast-progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: var(--sdesj-light-blue);
  border-radius: 999px;
  transition: width 0.1s linear;
}

.afrolab-podcast-progress:focus-visible {
  outline: 2px solid var(--sdesj-light-blue);
  outline-offset: 3px;
  border-radius: 999px;
}

.afrolab-podcast-elapsed {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12.5px;
  font-variant-numeric: tabular-nums;
}

.afrolab-podcast-elapsed a {
  color: #73e1f1;
  font-weight: 700;
}

.afrolab-podcast-soon {
  font-style: italic;
}

.afrolab-podcast-item.is-unavailable {
  opacity: 0.7;
}

.afrolab-podcast-duration,
.afrolab-podcast-listens {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  text-align: right;
}

.afrolab-cta {
  background: linear-gradient(105deg, var(--afrolab-red) 0%, #c72735 45%, var(--afrolab-navy) 100%);
}

.afrolab-cta h2,
.afrolab-cta .vision-eyebrow {
  color: #fff;
}

.afrolab-cta .vision-cta-inner > div:first-child > p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  line-height: 1.65;
}

.afrolab-cta .vision-button.primary {
  background: #fff;
  color: var(--afrolab-navy);
}

@media (max-width: 1080px) {
  .afrolab-discipline {
    grid-template-columns: 1fr;
  }

  .afrolab-discipline > img {
    min-height: 250px;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 860px) {
  .afrolab-site .vision-hero-overlay {
    background: rgba(8, 29, 75, 0.9);
  }

  .afrolab-intro-layout,
  .afrolab-section-heading,
  .afrolab-resources-layout {
    grid-template-columns: 1fr;
  }

  .afrolab-intro-layout,
  .afrolab-resources-layout {
    gap: 52px;
  }

  .afrolab-section-heading {
    gap: 22px;
  }

  .afrolab-intro h2,
  .afrolab-section-heading h2,
  .afrolab-resources h2,
  .afrolab-cta h2 {
    font-size: 38px;
  }

  .afrolab-resources-copy {
    position: static;
  }

  .afrolab-podcast-item {
    grid-template-columns: 52px minmax(0, 1fr) 90px;
  }

  .afrolab-podcast-listens {
    display: none;
  }
}

@media (max-width: 620px) {
  .afrolab-site .vision-hero-copy {
    padding-right: 48px;
  }

  .afrolab-discipline-grid {
    grid-template-columns: 1fr;
  }

  .afrolab-intro-media,
  .afrolab-intro-media img {
    min-height: 400px;
  }

  .afrolab-discipline > div {
    padding: 28px 24px;
  }

  .afrolab-podcast-item {
    min-height: 0;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 16px;
    padding-right: 58px;
  }

  .afrolab-podcast-duration,
  .afrolab-podcast-listens {
    display: none;
  }

  .afrolab-podcast-item:hover {
    padding-right: 0;
    padding-left: 0;
    background: transparent;
  }
}

/* Sommet Jeunes Afro: Répertoire des membres */
.members-site {
  --members-navy: #0c1f63;
  --members-blue: #1767b7;
  --members-cyan: #08a9d2;
  --members-green: #2f9c4b;
  --members-yellow: #f3c82f;
  --members-red: #e22f2b;
  --members-soft: #f3f7fa;
  --members-line: #d8e3ea;
  --members-muted: #526174;
}

.members-site .vision-hero {
  min-height: 700px;
}

.members-site .vision-hero-image {
  object-position: center 48%;
}

.members-site .vision-hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 20, 63, 0.98) 0%, rgba(12, 31, 99, 0.92) 44%, rgba(8, 126, 164, 0.56) 73%, rgba(47, 156, 75, 0.16) 100%),
    rgba(12, 31, 99, 0.18);
}

.members-site .vision-kicker span {
  background: var(--members-yellow);
}

.members-site .vision-button.primary {
  background: var(--members-red);
  color: #fff;
}

.members-site .vision-button.primary:hover {
  background: #c92421;
}

.members-services {
  background: #fff;
}

.members-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 54px;
}

.members-section-heading h2,
.members-cta h2 {
  max-width: 800px;
  margin-bottom: 0;
  color: var(--members-navy);
  font-size: 46px;
  line-height: 1.08;
}

.members-section-heading .vision-eyebrow,
.members-map-view .vision-eyebrow {
  color: var(--members-green);
}

.members-section-heading > p {
  margin: 0;
  color: var(--members-muted);
  font-size: 17px;
  line-height: 1.72;
}

.members-service-list {
  border-top: 1px solid var(--members-line);
}

.members-service-list article {
  display: grid;
  grid-template-columns: 58px minmax(220px, 0.48fr) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid var(--members-line);
}

.members-service-icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid #cde0e8;
  border-radius: 7px;
  background: #edf8fa;
  color: var(--members-blue);
}

.members-service-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.members-service-list article > div p {
  margin-bottom: 8px;
  color: var(--members-cyan);
  font-size: 12px;
  font-weight: 900;
}

.members-service-list h3 {
  margin-bottom: 0;
  color: var(--members-navy);
  font-size: 25px;
  line-height: 1.25;
}

.members-service-list ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.members-service-list li {
  position: relative;
  padding-left: 20px;
  color: var(--members-muted);
  font-size: 15px;
  line-height: 1.58;
}

.members-service-list li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--members-green);
  content: "";
}

.members-directory {
  background: var(--members-soft);
}

.members-directory-tools {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 240px auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid var(--members-line);
  border-radius: 8px;
  background: #fff;
}

.members-search-field {
  position: relative;
  display: block;
}

.members-search-field .search-icon {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 17px;
  height: 17px;
  transform: translateY(-50%);
  color: var(--members-blue);
}

.members-search-field input,
.members-directory-tools select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cfdbe2;
  border-radius: 5px;
  background: #fff;
  color: #1c2b43;
  font: inherit;
  font-size: 15px;
}

.members-search-field input {
  padding: 10px 14px 10px 48px;
}

.members-directory-tools select {
  padding: 10px 38px 10px 14px;
}

.members-search-field input:focus,
.members-directory-tools select:focus {
  border-color: var(--members-cyan);
  outline: 3px solid rgba(8, 169, 210, 0.15);
}

.members-view-toggle {
  display: inline-flex;
  min-height: 48px;
  border: 1px solid #cfdbe2;
  border-radius: 5px;
  overflow: hidden;
}

.members-view-toggle button {
  min-width: 76px;
  border: 0;
  border-right: 1px solid #cfdbe2;
  background: #fff;
  color: var(--members-navy);
  font: inherit;
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
}

.members-view-toggle button:last-child {
  border-right: 0;
}

.members-view-toggle button.is-active {
  background: var(--members-navy);
  color: #fff;
}

.members-results-count {
  margin: 0 0 20px;
  color: var(--members-muted);
  font-size: 14px;
  font-weight: 650;
}

.members-directory-list {
  display: grid;
  gap: 10px;
}

.members-empty-state {
  padding: 52px 24px;
  border: 1px dashed rgba(12, 31, 99, 0.18);
  border-radius: 12px;
  background: #fff;
  text-align: center;
}

.members-empty-state[hidden],
.member-entry[hidden] {
  display: none;
}

.members-empty-state h3 {
  margin-bottom: 8px;
  color: var(--sdesj-blue);
  font-size: 1.2rem;
}

.members-empty-state p {
  margin: 0;
  color: var(--muted);
}

/* ──────────────────────────────────────────────
   Member card — clean horizontal row
   Logo | Body (name + desc) | Meta | CTA
   ────────────────────────────────────────────── */
.member-entry {
  display: grid;
  grid-template-columns: 68px 1fr auto auto;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid rgba(12, 31, 99, 0.07);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(12, 31, 99, 0.05);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.member-entry:hover {
  background: #fafbff;
  box-shadow: 0 6px 24px rgba(12, 31, 99, 0.1);
}

/* Logo */
.member-logo {
  display: flex;
  width: 68px;
  height: 68px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(12, 31, 99, 0.09);
  border-radius: 10px;
  background: #f4f7fb;
}

.member-logo img {
  width: 100%;
  height: 100%;
  padding: 8px;
  object-fit: contain;
}

.member-logo-placeholder {
  color: var(--sdesj-blue);
  font-size: 1.6rem;
  font-weight: 800;
  background: rgba(12, 31, 99, 0.06);
  border-color: transparent;
}

/* Body: category + name + description */
.member-entry-body {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.member-category-pill {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 2px 8px;
  color: var(--sdesj-blue);
  background: rgba(12, 31, 99, 0.06);
  border-radius: 20px;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.member-entry-body h3 {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.25;
}

.member-entry-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Contact meta: location / phone / email with SVG icons */
.member-entry-meta {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
  min-width: 160px;
  max-width: 240px;
}

.member-entry-meta li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

.member-meta-icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 1px;
  fill: none;
  stroke: var(--sdesj-blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.65;
}

.member-entry-meta a {
  color: var(--sdesj-blue);
  font-weight: 600;
  text-decoration: none;
  word-break: break-all;
}

.member-entry-meta a:hover {
  text-decoration: underline;
}

/* CTA */
.member-website {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  background: rgba(12, 31, 99, 0.05);
  border: 1px solid rgba(12, 31, 99, 0.14);
  border-radius: 8px;
  color: var(--sdesj-blue);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.member-website:hover {
  background: var(--sdesj-blue);
  color: #fff;
  border-color: var(--sdesj-blue);
}

.members-load-more {
  display: flex;
  justify-content: center;
  margin: 28px 0 0;
}

.members-load-more[hidden] {
  display: none;
}

.members-load-more button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  color: var(--sdesj-blue);
  background: transparent;
  border: 1px solid rgba(12, 31, 99, 0.2);
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.members-load-more button:hover {
  background: var(--sdesj-blue);
  color: #fff;
  border-color: var(--sdesj-blue);
}

.members-map-view {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  min-height: 520px;
  padding: 36px;
  border: 1px solid var(--members-line);
  border-radius: 8px;
  background: #fff;
}

.members-map-view[hidden] {
  display: none;
}

.members-map-view h3 {
  margin-bottom: 18px;
  color: var(--members-navy);
  font-size: 32px;
  line-height: 1.15;
}

.members-map-view p:not(.vision-eyebrow) {
  color: var(--members-muted);
  font-size: 16px;
  line-height: 1.65;
}

.members-map-view iframe {
  width: 100%;
  min-height: 440px;
  border: 0;
  border-radius: 6px;
}

.members-cta {
  background: linear-gradient(108deg, var(--members-green) 0%, #197c65 48%, var(--members-navy) 100%);
}

.members-cta h2,
.members-cta .vision-eyebrow {
  color: #fff;
}

.members-cta .vision-cta-inner > div:first-child > p:last-child {
  max-width: 670px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.65;
}

.members-cta .vision-button.primary {
  background: #fff;
  color: var(--members-navy);
}

@media (max-width: 860px) {
  .member-entry {
    grid-template-columns: 56px 1fr;
    grid-template-rows: auto auto;
    gap: 14px 16px;
  }

  .member-entry-meta {
    grid-column: 1 / -1;
    min-width: 0;
    max-width: 100%;
  }

  .member-website {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .member-logo {
    width: 48px;
    height: 48px;
  }

  .member-entry-body h3 {
    font-size: 0.9rem;
  }
}

@media (max-width: 860px) {
  .members-site .vision-hero-overlay {
    background: rgba(8, 28, 73, 0.9);
  }

  .members-section-heading,
  .members-map-view {
    grid-template-columns: 1fr;
  }

  .members-section-heading {
    gap: 22px;
  }

  .members-section-heading h2,
  .members-cta h2 {
    font-size: 38px;
  }

  .members-service-list article {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 20px;
  }

  .members-service-list article > ul {
    grid-column: 2;
  }

  .members-directory-tools {
    grid-template-columns: 1fr 1fr;
  }

  .members-search-field {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .members-site .vision-hero-copy {
    padding-right: 48px;
  }

  .members-site .vision-hero h1 {
    font-size: 43px;
  }

  .members-directory-tools {
    grid-template-columns: 1fr;
  }

  .members-search-field {
    grid-column: auto;
  }

  .members-view-toggle button {
    min-height: 46px;
    flex: 1;
  }

  .member-entry {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 18px;
    padding: 20px;
  }

  .member-logo {
    width: 84px;
    height: 82px;
  }

  .member-entry address,
  .member-website {
    grid-row: auto;
    grid-column: 1 / -1;
  }

  .member-website {
    width: 100%;
  }

  .members-map-view {
    min-height: 0;
    padding: 24px;
  }

  .members-map-view iframe {
    min-height: 360px;
  }
}

/* Sommet Jeunes Afro: Programme RIDE */
.ride-site {
  --ride-navy: #0c1f63;
  --ride-blue: #1767b7;
  --ride-cyan: #08a9d2;
  --ride-green: #2f9c4b;
  --ride-yellow: #f3c82f;
  --ride-soft: #f3f7fa;
  --ride-line: #d8e3ea;
  --ride-muted: #526174;
}

.ride-site .vision-hero {
  min-height: 710px;
}

.ride-site .vision-hero-image {
  object-position: 70% 46%;
}

.ride-site .vision-hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 20, 63, 0.98) 0%, rgba(12, 31, 99, 0.93) 43%, rgba(8, 105, 153, 0.5) 72%, rgba(243, 200, 47, 0.12) 100%),
    rgba(12, 31, 99, 0.15);
}

.ride-site .vision-kicker span {
  background: var(--ride-yellow);
}

.ride-site .vision-button.primary {
  background: var(--ride-cyan);
  color: #fff;
}

.ride-site .vision-button.primary:hover {
  background: #078db0;
}

.ride-intro {
  background: #fff;
}

.ride-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(390px, 0.68fr);
  gap: 92px;
  align-items: center;
}

.ride-intro-copy {
  max-width: 760px;
}

.ride-intro .vision-eyebrow,
.ride-services .vision-eyebrow,
.ride-success .vision-eyebrow {
  color: var(--ride-blue);
}

.ride-intro h2,
.ride-section-heading h2,
.ride-audience h2,
.ride-cta h2 {
  margin-bottom: 24px;
  color: var(--ride-navy);
  font-size: 46px;
  line-height: 1.08;
}

.ride-intro-copy > p:not(.vision-eyebrow),
.ride-section-heading > p {
  color: var(--ride-muted);
  font-size: 17px;
  line-height: 1.72;
}

.ride-intro-copy .ride-lead {
  color: #26364b;
  font-size: 21px;
  font-weight: 650;
}

.ride-intro-points {
  border-top: 1px solid var(--ride-line);
}

.ride-intro-points div {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--ride-line);
}

.ride-intro-points strong {
  color: var(--ride-cyan);
  font-size: 14px;
  font-weight: 900;
}

.ride-intro-points span {
  color: var(--ride-navy);
  font-size: 21px;
  font-weight: 750;
}

.ride-services {
  background: var(--ride-soft);
}

.ride-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.58fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 54px;
}

.ride-section-heading h2 {
  max-width: 800px;
  margin-bottom: 0;
}

.ride-section-heading > p {
  margin: 0;
}

.ride-service-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ride-line);
  border-left: 1px solid var(--ride-line);
  background: #fff;
}

.ride-service-panel {
  --ride-service-accent: var(--ride-cyan);
  padding: 38px 34px 42px;
  border-top: 4px solid var(--ride-service-accent);
  border-right: 1px solid var(--ride-line);
  border-bottom: 1px solid var(--ride-line);
}

.ride-service-panel.green {
  --ride-service-accent: var(--ride-green);
}

.ride-service-panel.yellow {
  --ride-service-accent: var(--ride-yellow);
}

.ride-service-icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid color-mix(in srgb, var(--ride-service-accent) 34%, #dce5eb);
  border-radius: 7px;
  background: color-mix(in srgb, var(--ride-service-accent) 10%, #fff);
  color: color-mix(in srgb, var(--ride-service-accent) 82%, var(--ride-navy));
}

.ride-service-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.ride-service-panel > h3 {
  min-height: 68px;
  margin-bottom: 26px;
  color: var(--ride-navy);
  font-size: 26px;
  line-height: 1.22;
}

.ride-service-panel > div {
  padding: 20px 0;
  border-top: 1px solid var(--ride-line);
}

.ride-service-panel h4 {
  margin: 0 0 8px;
  color: #26364b;
  font-size: 16px;
}

.ride-service-panel p {
  margin: 0;
  color: var(--ride-muted);
  font-size: 15px;
  line-height: 1.58;
}

.ride-audience {
  color: #fff;
  background: linear-gradient(112deg, #0c1f63 0%, #123f7a 60%, #087fa5 100%);
}

.ride-audience-inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1fr);
  gap: 86px;
  align-items: center;
}

.ride-audience .vision-eyebrow {
  color: #ffe06e;
}

.ride-audience h2 {
  color: #fff;
}

.ride-audience-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.ride-audience-list span {
  display: flex;
  min-height: 142px;
  align-items: flex-end;
  padding: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 18px;
  font-weight: 750;
  line-height: 1.35;
}

.ride-success {
  background: #fff;
}

.ride-filter-bar {
  display: flex;
  gap: 9px;
  margin-bottom: 34px;
  padding-bottom: 8px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.ride-filter-bar button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 9px 15px;
  border: 1px solid var(--ride-line);
  border-radius: 5px;
  background: #fff;
  color: var(--ride-navy);
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.ride-filter-bar button:hover {
  border-color: var(--ride-cyan);
}

.ride-filter-bar button.is-active {
  border-color: var(--ride-navy);
  background: var(--ride-navy);
  color: #fff;
}

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

.ride-success-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--ride-line);
  border-radius: 8px;
  background: #fff;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.ride-success-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 42px rgba(12, 31, 99, 0.11);
}

.ride-success-card[hidden] {
  display: none;
}

.ride-success-card > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 320ms ease;
}

.ride-success-card:hover > img {
  transform: scale(1.025);
}

.ride-success-card > div {
  padding: 26px;
}

.ride-success-card > div > p:first-child {
  margin-bottom: 9px;
  color: var(--ride-blue);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.ride-success-card h3 {
  margin-bottom: 16px;
  color: var(--ride-navy);
  font-size: 23px;
}

.ride-success-card > div > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ride-line);
}

.ride-success-card span {
  color: #425169;
  font-size: 13px;
  font-weight: 700;
}

.ride-success-card > div > p:last-child {
  margin-bottom: 0;
  color: var(--ride-muted);
  font-size: 15px;
  line-height: 1.58;
}

.ride-cta {
  background: linear-gradient(108deg, var(--ride-cyan) 0%, #1767b7 52%, var(--ride-navy) 100%);
}

.ride-cta h2,
.ride-cta .vision-eyebrow {
  color: #fff;
}

.ride-cta .vision-cta-inner > div:first-child > p:last-child {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.65;
}

.ride-cta .vision-button.primary {
  background: #fff;
  color: var(--ride-navy);
}

@media (max-width: 1040px) {
  .ride-service-columns,
  .ride-success-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ride-service-panel:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .ride-site .vision-hero-overlay {
    background: rgba(8, 28, 73, 0.89);
  }

  .ride-intro-layout,
  .ride-section-heading,
  .ride-audience-inner {
    grid-template-columns: 1fr;
  }

  .ride-intro-layout,
  .ride-audience-inner {
    gap: 50px;
  }

  .ride-section-heading {
    gap: 22px;
  }

  .ride-intro h2,
  .ride-section-heading h2,
  .ride-audience h2,
  .ride-cta h2 {
    font-size: 38px;
  }
}

@media (max-width: 620px) {
  .ride-site .vision-hero-copy {
    padding-right: 48px;
  }

  .ride-site .vision-hero h1 {
    font-size: 48px;
  }

  .ride-service-columns,
  .ride-success-grid,
  .ride-audience-list {
    grid-template-columns: 1fr;
  }

  .ride-service-panel:last-child {
    grid-column: auto;
  }

  .ride-service-panel {
    padding: 32px 26px;
  }

  .ride-service-panel > h3 {
    min-height: 0;
  }

  .ride-audience-list span {
    min-height: 112px;
  }
}

/* Sommet Jeunes Afro: Initiative de soutien aux familles noires */
.isfn-site {
  --isfn-navy: #0c1f63;
  --isfn-blue: #1598c6;
  --isfn-green: #2f9c4b;
  --isfn-red: #e22f2b;
  --isfn-yellow: #f2c72f;
  --isfn-soft: #f3f7f8;
  --isfn-line: #d8e3e6;
  --isfn-muted: #526174;
}

.isfn-site .vision-hero {
  min-height: 720px;
}

.isfn-site .vision-hero-image {
  object-position: center 52%;
}

.isfn-site .vision-hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 25, 72, 0.98) 0%, rgba(12, 31, 99, 0.92) 43%, rgba(18, 91, 94, 0.56) 72%, rgba(47, 156, 75, 0.2) 100%),
    rgba(12, 31, 99, 0.16);
}

.isfn-site .vision-hero-copy {
  max-width: 830px;
}

.isfn-site .vision-hero h1 {
  max-width: 830px;
  font-size: 62px;
}

.isfn-site .vision-kicker span {
  background: var(--isfn-yellow);
}

.isfn-site .vision-button.primary {
  background: var(--isfn-red);
  color: #fff;
}

.isfn-site .vision-button.primary:hover {
  background: #c92421;
}

.isfn-mission {
  background: #fff;
}

.isfn-mission-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(410px, 0.7fr);
  gap: 84px;
  align-items: center;
}

.isfn-mission-copy {
  max-width: 730px;
}

.isfn-mission .vision-eyebrow,
.isfn-actions .vision-eyebrow,
.isfn-video .vision-eyebrow {
  color: var(--isfn-green);
}

.isfn-mission h2,
.isfn-section-heading h2,
.isfn-impact h2,
.isfn-video h2,
.isfn-cta h2 {
  margin-bottom: 24px;
  color: var(--isfn-navy);
  font-size: 46px;
  line-height: 1.08;
}

.isfn-mission-copy > p:not(.vision-eyebrow),
.isfn-section-heading > p,
.isfn-impact-copy > p:not(.vision-eyebrow),
.isfn-video-copy > p:not(.vision-eyebrow) {
  color: var(--isfn-muted);
  font-size: 17px;
  line-height: 1.72;
}

.isfn-mission-copy .isfn-lead {
  color: #26364b;
  font-size: 21px;
  font-weight: 650;
}

.isfn-mission-media {
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--isfn-soft);
  box-shadow: 0 20px 46px rgba(12, 31, 99, 0.12);
}

.isfn-mission-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.isfn-mission-media:hover img {
  transform: scale(1.025);
}

.isfn-actions {
  background: var(--isfn-soft);
}

.isfn-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.6fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 54px;
}

.isfn-section-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.isfn-section-heading > p {
  margin: 0;
}

.isfn-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--isfn-line);
  border-left: 1px solid var(--isfn-line);
  background: #fff;
}

.isfn-action-card {
  --isfn-card-accent: var(--isfn-red);
  min-height: 330px;
  padding: 42px;
  border-right: 1px solid var(--isfn-line);
  border-bottom: 1px solid var(--isfn-line);
  border-top: 4px solid var(--isfn-card-accent);
  background: #fff;
  transition: background-color 180ms ease, transform 180ms ease;
}

.isfn-action-card:hover {
  z-index: 1;
  transform: translateY(-4px);
  background: color-mix(in srgb, var(--isfn-card-accent) 4%, #fff);
  box-shadow: 0 20px 38px rgba(12, 31, 99, 0.1);
}

.isfn-action-card.green {
  --isfn-card-accent: var(--isfn-green);
}

.isfn-action-card.blue {
  --isfn-card-accent: var(--isfn-blue);
}

.isfn-action-card.yellow {
  --isfn-card-accent: var(--isfn-yellow);
}

.isfn-action-icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid color-mix(in srgb, var(--isfn-card-accent) 30%, #dbe4e8);
  border-radius: 7px;
  background: color-mix(in srgb, var(--isfn-card-accent) 10%, #fff);
  color: color-mix(in srgb, var(--isfn-card-accent) 85%, var(--isfn-navy));
}

.isfn-action-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.isfn-action-card h3 {
  max-width: 470px;
  margin-bottom: 16px;
  color: var(--isfn-navy);
  font-size: 25px;
  line-height: 1.22;
}

.isfn-action-card p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--isfn-muted);
  font-size: 16px;
  line-height: 1.68;
}

.isfn-impact {
  color: #fff;
  background:
    linear-gradient(112deg, rgba(12, 31, 99, 0.98) 0%, rgba(17, 78, 118, 0.98) 62%, rgba(47, 156, 75, 0.94) 100%);
}

.isfn-impact-inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1fr);
  gap: 88px;
  align-items: center;
}

.isfn-impact .vision-eyebrow {
  color: #ffe06e;
}

.isfn-impact h2 {
  color: #fff;
}

.isfn-impact-copy > p:not(.vision-eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.isfn-impact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.isfn-impact-grid div {
  min-height: 170px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.isfn-impact-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 46px;
  line-height: 1;
}

.isfn-impact-grid span {
  display: block;
  max-width: 190px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
  text-transform: uppercase;
}

.isfn-video {
  background: #fff;
}

.isfn-video-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: 76px;
  align-items: center;
}

.isfn-video-copy {
  max-width: 520px;
}

.isfn-video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--isfn-navy);
  box-shadow: 0 20px 50px rgba(12, 31, 99, 0.16);
  aspect-ratio: 16 / 9;
}

.isfn-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.isfn-cta {
  background: linear-gradient(108deg, var(--isfn-green) 0%, #197c65 48%, var(--isfn-navy) 100%);
}

.isfn-cta h2,
.isfn-cta .vision-eyebrow {
  color: #fff;
}

.isfn-cta .vision-cta-inner > div:first-child > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.65;
}

.isfn-cta .vision-button.primary {
  background: #fff;
  color: var(--isfn-navy);
}

@media (max-width: 960px) {
  .isfn-mission-layout,
  .isfn-section-heading,
  .isfn-impact-inner,
  .isfn-video-layout {
    grid-template-columns: 1fr;
  }

  .isfn-mission-layout,
  .isfn-impact-inner,
  .isfn-video-layout {
    gap: 48px;
  }

  .isfn-section-heading {
    gap: 22px;
  }
}

@media (max-width: 720px) {
  .isfn-site .vision-hero {
    min-height: 680px;
  }

  .isfn-site .vision-hero-overlay {
    background: rgba(8, 28, 73, 0.88);
  }

  .isfn-site .vision-hero-copy {
    padding-right: 48px;
  }

  .isfn-site .vision-hero h1 {
    font-size: 43px;
  }

  .isfn-mission h2,
  .isfn-section-heading h2,
  .isfn-impact h2,
  .isfn-video h2,
  .isfn-cta h2 {
    font-size: 36px;
  }

  .isfn-action-grid,
  .isfn-impact-grid {
    grid-template-columns: 1fr;
  }

  .isfn-action-card {
    min-height: 0;
    padding: 32px 26px;
  }

  .isfn-mission-media,
  .isfn-mission-media img {
    min-height: 400px;
  }

  .isfn-impact-grid div {
    min-height: 138px;
  }
}

.vision-page {
  color: var(--vision-ink);
  overflow: hidden;
}

.vision-page h1,
.vision-page h2,
.vision-page h3,
.vision-page p {
  margin-top: 0;
}

.vision-hero {
  position: relative;
  display: flex;
  min-height: 680px;
  align-items: center;
  overflow: hidden;
  background: var(--vision-navy);
  isolation: isolate;
  scroll-margin-top: 86px;
}

.vision-hero-image,
.vision-hero-overlay {
  /* !important on width/height: Elementor's `.elementor img` rule
     (specificity 0,1,1) beats this single-class selector (0,1,0) and forces
     height:auto, collapsing the cover image to its natural aspect ratio. */
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
}

.vision-hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: 62% center;
}

.vision-hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 22, 64, 0.97) 0%, rgba(12, 31, 99, 0.91) 43%, rgba(17, 79, 78, 0.55) 75%, rgba(21, 117, 54, 0.22) 100%),
    rgba(12, 31, 99, 0.18);
}

.vision-hero-inner {
  width: min(1280px, calc(100% - 40px));
  padding-top: 92px;
  padding-bottom: 124px;
}

.vision-hero-copy {
  max-width: 760px;
}

.vision-kicker,
.vision-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--vision-green-dark);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.vision-kicker {
  color: #fff;
}

.vision-kicker span {
  display: block;
  width: 30px;
  height: 4px;
  background: #6fd581;
}

.vision-hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  color: #fff;
  font-size: 64px;
  line-height: 1.02;
}

.vision-hero-copy > p:not(.vision-kicker) {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.65;
}

.vision-actions,
.vision-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.vision-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.vision-button:hover {
  transform: translateY(-2px);
}

.vision-button.primary {
  background: var(--vision-green);
  color: #fff;
}

.vision-button.secondary {
  border-color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.vision-anchor-nav {
  position: relative;
  z-index: 4;
  display: grid;
  width: min(920px, calc(100% - 40px));
  min-height: 76px;
  grid-template-columns: repeat(4, 1fr);
  margin: -38px auto 0;
  border: 1px solid var(--vision-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(12, 31, 99, 0.14);
}

.vision-anchor-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 20px;
  color: var(--vision-navy);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.vision-anchor-nav a + a {
  border-left: 1px solid var(--vision-line);
}

.vision-anchor-nav a:hover {
  color: var(--vision-green-dark);
  background: var(--vision-soft);
}

.vision-page .section {
  padding-top: 110px;
  padding-bottom: 110px;
  scroll-margin-top: 96px;
}

.vision-story-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 86px;
  align-items: center;
}

.vision-story-inner.reverse .vision-story-media {
  order: 2;
}

.vision-story-media {
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--vision-soft);
}

.vision-story-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.vision-story:hover .vision-story-media img {
  transform: scale(1.025);
}

.vision-story-copy {
  max-width: 650px;
}

.vision-story h2,
.vision-method h2,
.vision-cta h2 {
  margin-bottom: 26px;
  color: var(--vision-ink);
  font-size: 46px;
  line-height: 1.08;
}

.vision-story-copy p,
.vision-method-heading > p:last-child,
.vision-method-panel p {
  color: var(--vision-muted);
  font-size: 17px;
  line-height: 1.72;
}

.vision-story-copy .vision-lead {
  color: #283449;
  font-size: 20px;
  font-weight: 600;
}

.vision-story-dark {
  background: var(--vision-navy);
}

.vision-story-dark h2,
.vision-story-dark .vision-lead {
  color: #fff;
}

.vision-story-dark .vision-eyebrow {
  color: #70dc82;
}

.vision-story-dark .vision-story-copy > p:not(.vision-eyebrow):not(.vision-lead) {
  color: rgba(255, 255, 255, 0.74);
}

.vision-story-dark .vision-story-media {
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.vision-method {
  background: var(--vision-soft);
}

.vision-method-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
  margin-bottom: 58px;
}

.vision-method-heading .vision-eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -54px;
}

.vision-method-heading h2 {
  max-width: 620px;
  margin-bottom: 0;
}

.vision-method-heading > p:last-child {
  margin: 0;
}

.vision-method-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #cbd9ce;
  border-bottom: 1px solid #cbd9ce;
}

.vision-method-panel > div {
  min-height: 220px;
  padding: 36px 38px;
}

.vision-method-panel > div + div {
  border-left: 1px solid #cbd9ce;
}

.vision-method-panel h3 {
  margin-bottom: 14px;
  color: var(--vision-navy);
  font-size: 23px;
  line-height: 1.25;
}

.vision-method-panel p {
  margin-bottom: 0;
  font-size: 15px;
}

.vision-theme-links {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.vision-theme {
  --vision-theme-color: var(--vision-navy);
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid color-mix(in srgb, var(--vision-theme-color) 38%, #dce5df);
  border-top: 5px solid var(--vision-theme-color);
  border-radius: 6px;
  background: #fff;
  color: #182238;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease;
}

.vision-theme:hover {
  background: color-mix(in srgb, var(--vision-theme-color) 8%, #fff);
  transform: translateY(-2px);
}

.vision-theme.culture {
  --vision-theme-color: #ffd400;
}

.vision-theme.health {
  --vision-theme-color: #38923d;
}

.vision-theme.education {
  --vision-theme-color: #0b8dcc;
}

.vision-theme.economy {
  --vision-theme-color: #242c86;
}

.vision-theme.justice {
  --vision-theme-color: #dc2f32;
}

.vision-theme.youth {
  --vision-theme-color: #7a818c;
}

.vision-cta {
  padding: 92px 0;
  background: var(--vision-green-dark);
}

.vision-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.55fr);
  gap: 80px;
  align-items: center;
}

.vision-cta .vision-eyebrow {
  color: #b7f1bf;
}

.vision-cta h2 {
  max-width: 820px;
  margin-bottom: 0;
  color: #fff;
}

.vision-cta-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.vision-cta .vision-button.primary {
  background: #fff;
  color: var(--vision-green-dark);
}

@media (max-width: 1120px) {
  .committee-member-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .vision-hero h1 {
    font-size: 54px;
  }

  .vision-story-inner,
  .vision-method-heading,
  .vision-cta-inner {
    gap: 48px;
  }

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

@media (max-width: 860px) {
  .committee-site .vision-hero-overlay {
    background: rgba(8, 29, 75, 0.9);
  }

  .youth-committee-site .vision-hero-overlay {
    background: rgba(20, 38, 73, 0.9);
  }

  .research-groups-site .vision-hero-overlay {
    background: rgba(8, 29, 75, 0.9);
  }

  .participation-site .vision-hero-overlay {
    background: rgba(8, 29, 75, 0.91);
  }

  .committee-review-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .committee-principles {
    margin-top: 24px;
  }

  .committee-principles article {
    min-height: 0;
    padding: 30px 24px;
  }

  .poles-site .vision-hero-overlay {
    background: rgba(8, 29, 75, 0.88);
  }

  .vision-hero {
    min-height: 650px;
  }

  .vision-hero-overlay {
    background: rgba(8, 29, 75, 0.88);
  }

  .vision-hero h1 {
    font-size: 46px;
  }

  .vision-anchor-nav {
    width: calc(100% - 32px);
    grid-template-columns: repeat(2, 1fr);
  }

  .vision-anchor-nav.committee-anchor-nav {
    grid-template-columns: repeat(3, 1fr);
  }

  .vision-anchor-nav a:nth-child(3),
  .vision-anchor-nav a:nth-child(4) {
    border-top: 1px solid var(--vision-line);
  }

  .vision-anchor-nav a:nth-child(3) {
    border-left: 0;
  }

  .committee-anchor-nav a:nth-child(3) {
    border-top: 0;
    border-left: 1px solid var(--vision-line);
  }

  .vision-page .section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .vision-story-inner,
  .vision-method-heading,
  .vision-cta-inner,
  .participation-opportunity-inner,
  .participation-opportunity-inner.reverse,
  .participation-projects-inner {
    grid-template-columns: 1fr;
  }

  .participation-opportunity-aside {
    position: static;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0 18px;
    align-items: center;
  }

  .participation-opportunity-aside .participation-icon {
    grid-row: 1 / 3;
    margin-bottom: 0;
  }

  .participation-opportunity-aside .participation-status {
    width: fit-content;
    margin-bottom: 6px;
  }

  .participation-opportunity-aside .participation-date {
    grid-column: 2;
  }

  .vision-story-inner.reverse .vision-story-media {
    order: 0;
  }

  .vision-story-media,
  .vision-story-media img {
    min-height: 440px;
  }

  .poles-site .vision-story-media,
  .poles-site .vision-story-media img,
  .youth-committee-story .vision-story-media,
  .youth-committee-story .vision-story-media img,
  .research-groups-story .vision-story-media,
  .research-groups-story .vision-story-media img {
    min-height: 410px;
  }

  .vision-story h2,
  .vision-method h2,
  .vision-cta h2,
  .committee-review-heading h2,
  .committee-members h2,
  .research-groups-members .section-heading h2,
  .participation-opportunity-copy h2,
  .participation-projects h2 {
    font-size: 38px;
  }

  .vision-method-heading .vision-eyebrow {
    grid-column: auto;
    margin-bottom: -30px;
  }

  .vision-method-panel {
    grid-template-columns: 1fr;
  }

  .vision-method-panel > div + div {
    border-top: 1px solid #cbd9ce;
    border-left: 0;
  }

  .vision-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .committee-principles,
  .committee-member-grid {
    grid-template-columns: 1fr;
  }

  .research-member-grid,
  .research-theme-index {
    grid-template-columns: 1fr;
  }

  .research-theme-index a {
    min-height: 92px;
  }

  .research-groups-members .section-heading {
    margin-bottom: 38px;
    text-align: left;
  }

  .research-group-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .research-group-heading span {
    width: fit-content;
  }

  .participation-profile ul,
  .participation-project-principles {
    grid-template-columns: 1fr;
  }

  .participation-section-actions,
  .participation-action {
    width: 100%;
  }

  .participation-site .vision-hero-copy {
    padding-right: 48px;
  }

  .vision-anchor-nav.committee-anchor-nav {
    grid-template-columns: 1fr;
  }

  .committee-anchor-nav a + a,
  .committee-anchor-nav a:nth-child(3) {
    border-top: 1px solid var(--vision-line);
    border-left: 0;
  }

  .committee-principles article + article {
    border-top: 1px solid var(--committee-line);
    border-left: 0;
  }

  .committee-members .section-heading {
    margin-bottom: 38px;
    text-align: left;
  }

  .committee-member-card {
    min-height: 0;
  }

  .vision-hero {
    min-height: 720px;
  }

  .vision-hero-inner {
    padding-top: 62px;
    padding-bottom: 98px;
  }

  .vision-hero h1 {
    font-size: 38px;
  }

  .vision-hero-copy > p:not(.vision-kicker) {
    font-size: 18px;
  }

  .vision-actions,
  .vision-actions .vision-button,
  .vision-cta-actions,
  .vision-cta-actions .vision-button {
    width: 100%;
  }

  .research-groups-site .vision-hero-copy {
    padding-right: 48px;
  }

  .vision-story-media,
  .vision-story-media img {
    min-height: 340px;
  }

  .poles-site .vision-story-media,
  .poles-site .vision-story-media img,
  .youth-committee-story .vision-story-media,
  .youth-committee-story .vision-story-media img,
  .research-groups-story .vision-story-media,
  .research-groups-story .vision-story-media img {
    min-height: 320px;
  }

  .poles-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
  }

  .vision-story h2,
  .vision-method h2,
  .vision-cta h2,
  .committee-review-heading h2,
  .committee-members h2,
  .research-groups-members .section-heading h2,
  .research-group-heading h3,
  .participation-opportunity-copy h2,
  .participation-projects h2 {
    font-size: 33px;
  }

  .vision-story-copy p,
  .vision-method-heading > p:last-child {
    font-size: 16px;
  }

  .vision-story-copy .vision-lead {
    font-size: 18px;
  }

  .vision-method-panel > div {
    min-height: 0;
    padding: 28px 4px;
  }

  .vision-theme-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vision-cta {
    padding: 76px 0;
  }
}

@media (max-width: 620px) {
  .culture-site .economy-hero-inner {
    padding-top: 48px;
    padding-bottom: 82px;
  }

  .culture-site .economy-hero h1 {
    font-size: 34px;
  }
}

.economy-page {
  color: var(--economy-ink);
  overflow: hidden;
}

.economy-page h1,
.economy-page h2,
.economy-page h3,
.economy-page p {
  margin-top: 0;
}

.economy-page h2 {
  max-width: 860px;
  margin-bottom: 24px;
  color: var(--economy-ink);
  font-size: 46px;
  line-height: 1.08;
}

.economy-page h3 {
  color: var(--economy-blue-dark);
  font-size: 22px;
  line-height: 1.25;
}

.economy-page p {
  color: var(--economy-muted);
  font-size: 17px;
  line-height: 1.72;
}

.economy-hero {
  position: relative;
  display: flex;
  min-height: 700px;
  align-items: center;
  overflow: hidden;
  background: var(--economy-blue-dark);
  isolation: isolate;
  scroll-margin-top: 90px;
}

.economy-hero-image,
.economy-hero-overlay {
  /* !important on width/height: see .vision-hero-image above. */
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
}

.economy-hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: center;
}

.economy-hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 17, 69, 0.96) 0%, rgba(17, 25, 88, 0.88) 43%, rgba(17, 25, 88, 0.3) 74%, rgba(17, 25, 88, 0.14) 100%),
    rgba(10, 18, 70, 0.16);
}

.economy-hero-inner {
  width: min(1280px, calc(100% - 40px));
  padding-top: 84px;
  padding-bottom: 112px;
}

.economy-hero-copy {
  max-width: 780px;
}

.economy-kicker,
.economy-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--economy-blue);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.economy-kicker {
  color: #fff;
}

.economy-kicker span {
  display: block;
  width: 30px;
  height: 4px;
  background: var(--economy-cyan);
}

.economy-hero h1 {
  max-width: 760px;
  margin-bottom: 26px;
  color: #fff;
  font-size: 64px;
  line-height: 1.02;
}

.economy-hero p {
  max-width: 710px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.65;
}

.economy-hero .economy-hero-lead {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}

.economy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.economy-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.economy-button:hover {
  transform: translateY(-2px);
}

.economy-button.primary {
  background: var(--economy-cyan);
  color: #07103d;
}

.economy-button.secondary {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.economy-button.text {
  border-color: var(--economy-blue);
  background: #fff;
  color: var(--economy-blue);
}

.economy-anchor-nav {
  position: relative;
  z-index: 4;
  display: grid;
  width: min(920px, calc(100% - 40px));
  min-height: 76px;
  grid-template-columns: repeat(4, 1fr);
  margin: -38px auto 0;
  border: 1px solid var(--economy-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(21, 31, 69, 0.14);
}

.economy-anchor-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 20px;
  color: var(--economy-blue-dark);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.economy-anchor-nav a + a {
  border-left: 1px solid var(--economy-line);
}

.economy-anchor-nav a:hover {
  color: var(--economy-cyan);
}

.economy-page .section {
  padding-top: 108px;
  padding-bottom: 108px;
  scroll-margin-top: 98px;
}

.economy-heading-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}

.economy-heading-grid > div:first-child {
  padding-top: 8px;
  border-top: 4px solid var(--economy-blue);
}

.economy-prose p:last-child {
  margin-bottom: 0;
}

.economy-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 62px;
  border-top: 1px solid var(--economy-line);
  border-bottom: 1px solid var(--economy-line);
}

.economy-principles article {
  padding: 34px;
}

.economy-principles article + article {
  border-left: 1px solid var(--economy-line);
}

.economy-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(36, 44, 134, 0.2);
  border-radius: 6px;
  background: rgba(36, 44, 134, 0.07);
  color: var(--economy-blue);
}

.economy-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.economy-principles h3,
.economy-axis-grid h3,
.economy-resource-grid h3 {
  margin-bottom: 12px;
}

.economy-principles p,
.economy-axis-grid p,
.economy-resource-grid p {
  margin-bottom: 0;
  font-size: 15px;
}

.economy-challenges,
.economy-axes {
  background: var(--economy-soft);
}

.economy-section-heading {
  max-width: 860px;
  margin-bottom: 50px;
}

.economy-section-heading > p:last-child {
  max-width: 760px;
  margin-bottom: 0;
}

.economy-challenge-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #cbd3e2;
}

.economy-challenge-list article {
  display: grid;
  min-height: 220px;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 18px;
  padding: 38px 34px 38px 0;
  border-bottom: 1px solid #cbd3e2;
}

.economy-challenge-list article:nth-child(even) {
  padding-right: 0;
  padding-left: 34px;
  border-left: 1px solid #cbd3e2;
}

.economy-challenge-list article > span {
  color: var(--economy-cyan);
  font-size: 14px;
  font-weight: 800;
}

.economy-challenge-list h3 {
  margin-bottom: 12px;
}

.economy-challenge-list p {
  margin-bottom: 0;
  font-size: 15px;
}

.economy-structure-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
}

.economy-structure figure {
  min-height: 570px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.economy-structure figure img {
  width: 100%;
  height: 100%;
  min-height: 570px;
  object-fit: cover;
}

.economy-structure h2 {
  font-size: 42px;
}

.economy-structure aside {
  margin-top: 32px;
  padding: 24px 26px;
  border-left: 5px solid var(--economy-cyan);
  background: var(--economy-soft);
}

.economy-structure aside strong {
  display: block;
  margin-bottom: 8px;
  color: var(--economy-blue);
}

.economy-structure aside p {
  margin-bottom: 0;
  color: var(--economy-ink);
  font-size: 15px;
}

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

.economy-axis-grid article {
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--economy-line);
  border-top: 4px solid var(--economy-blue);
  border-radius: 8px;
  background: #fff;
  transition: border-color 180ms ease, transform 180ms ease;
}

.economy-axis-grid article:hover {
  border-color: rgba(36, 44, 134, 0.42);
  transform: translateY(-3px);
}

.economy-axis-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  border: 1px solid rgba(36, 44, 134, 0.18);
  border-radius: 6px;
  background: rgba(36, 44, 134, 0.07);
  color: var(--economy-cyan);
  transition: background-color 180ms ease, color 180ms ease;
}

.economy-axis-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.economy-axis-grid article:hover .economy-axis-icon {
  background: var(--economy-blue);
  color: #fff;
}

.economy-impact {
  padding: 98px 0;
  background: var(--economy-blue-dark);
}

.economy-impact h2,
.economy-impact h3,
.economy-impact p {
  color: #fff;
}

.economy-eyebrow.light {
  color: var(--economy-cyan);
}

.economy-impact-heading {
  max-width: 800px;
  margin-bottom: 52px;
}

.economy-impact-heading p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.economy-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.economy-impact-grid article {
  padding: 38px 34px 6px;
}

.economy-impact-grid article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.economy-impact-grid span {
  display: block;
  margin-bottom: 40px;
  color: var(--economy-cyan);
  font-size: 15px;
  font-weight: 800;
}

.economy-impact-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.economy-resources {
  background: var(--economy-soft);
}

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

.economy-resource-grid article {
  overflow: hidden;
  border: 1px solid var(--economy-line);
  border-radius: 8px;
  background: #fff;
}

.economy-resource-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.economy-resource-grid article > div {
  padding: 26px;
}

.economy-resource-grid a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 20px;
  color: var(--economy-blue);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.economy-resource-grid a:hover {
  color: var(--economy-cyan);
}

.economy-cta {
  background: #fff;
}

.economy-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
  padding-top: 62px;
  padding-bottom: 62px;
  border-top: 4px solid var(--economy-blue);
  border-bottom: 1px solid var(--economy-line);
}

.economy-cta h2 {
  font-size: 42px;
}

.economy-cta ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.economy-cta li {
  position: relative;
  padding-left: 28px;
  color: var(--economy-muted);
  font-size: 16px;
  line-height: 1.55;
}

.economy-cta li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 9px;
  height: 9px;
  border: 3px solid var(--economy-cyan);
  border-radius: 50%;
  content: "";
}

@media (max-width: 1120px) {
  .economy-hero h1 {
    font-size: 54px;
  }

  .economy-heading-grid,
  .economy-structure-grid,
  .economy-cta-inner {
    gap: 48px;
  }

  .economy-axis-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .economy-hero {
    min-height: 650px;
  }

  .economy-hero-overlay {
    background: rgba(14, 22, 78, 0.86);
  }

  .economy-hero h1 {
    font-size: 46px;
  }

  .economy-anchor-nav {
    width: calc(100% - 32px);
    grid-template-columns: repeat(2, 1fr);
  }

  .economy-anchor-nav a:nth-child(3),
  .economy-anchor-nav a:nth-child(4) {
    border-top: 1px solid var(--economy-line);
  }

  .economy-anchor-nav a:nth-child(3) {
    border-left: 0;
  }

  .economy-page .section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .economy-page h2,
  .economy-structure h2,
  .economy-cta h2 {
    font-size: 38px;
  }

  .economy-heading-grid,
  .economy-structure-grid,
  .economy-cta-inner {
    grid-template-columns: 1fr;
  }

  .economy-principles,
  .economy-impact-grid {
    grid-template-columns: 1fr;
  }

  .economy-principles article + article,
  .economy-impact-grid article + article {
    border-top: 1px solid var(--economy-line);
    border-left: 0;
  }

  .economy-impact-grid article + article {
    border-color: rgba(255, 255, 255, 0.24);
  }

  .economy-challenge-list {
    grid-template-columns: 1fr;
  }

  .economy-challenge-list article:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .economy-structure figure,
  .economy-structure figure img {
    min-height: 430px;
  }

  .economy-resource-grid {
    grid-template-columns: 1fr;
  }

  .economy-resource-grid article {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  }

  .economy-resource-grid img {
    height: 100%;
    aspect-ratio: auto;
  }
}

@media (max-width: 620px) {
  .economy-hero {
    min-height: 730px;
  }

  .economy-hero-inner {
    padding-top: 62px;
    padding-bottom: 96px;
  }

  .economy-hero h1 {
    font-size: 39px;
  }

  .economy-hero .economy-hero-lead {
    font-size: 18px;
  }

  .economy-actions,
  .economy-actions .economy-button {
    width: 100%;
  }

  .economy-page h2,
  .economy-structure h2,
  .economy-cta h2 {
    font-size: 33px;
  }

  .economy-page p {
    font-size: 16px;
  }

  .economy-principles article {
    padding: 28px 4px;
  }

  .economy-challenge-list article {
    min-height: 0;
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 28px 0;
  }

  .economy-axis-grid {
    grid-template-columns: 1fr;
  }

  .economy-axis-grid article {
    min-height: 0;
  }

  .economy-structure figure,
  .economy-structure figure img {
    min-height: 340px;
  }

  .economy-impact {
    padding: 78px 0;
  }

  .economy-impact-grid article {
    padding: 30px 4px;
  }

  .economy-impact-grid span {
    margin-bottom: 18px;
  }

  .economy-resource-grid article {
    display: block;
  }

  .economy-resource-grid img {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .economy-cta-inner {
    gap: 38px;
    padding-top: 46px;
    padding-bottom: 46px;
  }
}

/* Observatoire: tableau de bord des organismes publics */
.dashboard-site {
  --dashboard-navy: #0c1f63;
  --dashboard-navy-dark: #071542;
  --dashboard-cyan: #08a9d2;
  --dashboard-red: #dc2f32;
  --dashboard-green: #2f9e44;
  --dashboard-yellow: #ffd02f;
  --dashboard-ink: #111827;
  --dashboard-muted: #596579;
  --dashboard-line: #d8e1ea;
  --dashboard-soft: #f3f6f9;
  background: #fff;
}

.observatory-nav-group.publications-current > summary {
  background: #08a9d2;
}

.observatory-nav-group.dashboard-current > summary {
  background: var(--dashboard-red);
}

.dashboard-page {
  overflow: hidden;
  color: var(--dashboard-ink);
}

.dashboard-page h1,
.dashboard-page h2,
.dashboard-page h3,
.dashboard-page p {
  margin-top: 0;
}

.dashboard-hero {
  position: relative;
  display: flex;
  min-height: 720px;
  align-items: center;
  background: var(--dashboard-navy-dark);
  isolation: isolate;
  scroll-margin-top: 90px;
}

.dashboard-hero-image,
.dashboard-hero-overlay {
  /* !important on width/height: see .vision-hero-image above. */
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
}

.dashboard-hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: center;
}

.dashboard-hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 21, 66, 0.98) 0%, rgba(12, 31, 99, 0.92) 48%, rgba(12, 31, 99, 0.42) 76%, rgba(8, 169, 210, 0.14) 100%),
    rgba(7, 21, 66, 0.16);
}

.dashboard-hero-inner {
  width: min(1280px, calc(100% - 40px));
  padding-top: 92px;
  padding-bottom: 126px;
}

.dashboard-hero-copy {
  max-width: 850px;
}

.dashboard-kicker,
.dashboard-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--dashboard-red);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.dashboard-kicker,
.dashboard-eyebrow.light {
  color: #fff;
}

.dashboard-kicker span {
  display: block;
  width: 30px;
  height: 4px;
  background: var(--dashboard-red);
}

.dashboard-hero h1 {
  max-width: 850px;
  margin-bottom: 28px;
  color: #fff;
  font-size: clamp(3.25rem, 5.4vw, 5rem);
  line-height: 0.99;
  letter-spacing: -0.035em;
}

.dashboard-hero-copy > p:not(.dashboard-kicker) {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.65;
}

.dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.dashboard-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.dashboard-button:hover {
  transform: translateY(-2px);
}

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

.dashboard-button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.72);
}

.dashboard-anchor-nav {
  position: relative;
  z-index: 4;
  display: grid;
  width: min(1080px, calc(100% - 40px));
  min-height: 76px;
  grid-template-columns: repeat(5, 1fr);
  margin: -38px auto 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--dashboard-line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(12, 31, 99, 0.14);
}

.dashboard-anchor-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 16px;
  color: var(--dashboard-navy);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease;
}

.dashboard-anchor-nav a + a {
  border-left: 1px solid var(--dashboard-line);
}

.dashboard-anchor-nav a:hover {
  color: var(--dashboard-red);
  background: rgba(220, 47, 50, 0.04);
}

.dashboard-page .section {
  padding-top: 108px;
  padding-bottom: 108px;
  scroll-margin-top: 96px;
}

.dashboard-heading-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.1fr);
  gap: clamp(54px, 7vw, 100px);
  align-items: start;
}

.dashboard-heading-layout > div:first-child,
.dashboard-section-heading {
  padding-top: 8px;
  border-top: 4px solid var(--dashboard-red);
}

.dashboard-heading-layout h2,
.dashboard-section-heading h2,
.dashboard-production-intro h2,
.dashboard-difficulty h2,
.dashboard-indicator-heading h2,
.dashboard-access h2 {
  margin-bottom: 24px;
  color: var(--dashboard-navy);
  font-size: clamp(2.55rem, 4.2vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.dashboard-prose p,
.dashboard-section-heading > p:last-child,
.dashboard-production-intro > p,
.dashboard-difficulty > p,
.dashboard-indicator-heading > p,
.dashboard-access p {
  color: var(--dashboard-muted);
  font-size: 17px;
  line-height: 1.72;
}

.dashboard-prose .dashboard-lead {
  color: #23314a;
  font-size: 20px;
  font-weight: 650;
}

.dashboard-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 72px;
  border-top: 1px solid var(--dashboard-line);
  border-bottom: 1px solid var(--dashboard-line);
}

.dashboard-principles article {
  min-height: 250px;
  padding: 36px 38px;
}

.dashboard-principles article + article {
  border-left: 1px solid var(--dashboard-line);
}

.dashboard-principles span {
  display: block;
  margin-bottom: 38px;
  color: var(--dashboard-cyan);
  font-size: 14px;
  font-weight: 900;
}

.dashboard-principles h3 {
  margin-bottom: 13px;
  color: var(--dashboard-navy);
  font-size: 21px;
}

.dashboard-principles p {
  margin-bottom: 0;
  color: var(--dashboard-muted);
  font-size: 15px;
  line-height: 1.65;
}

.dashboard-numbers {
  padding: 70px 0;
  color: #fff;
  background:
    radial-gradient(circle at 82% 10%, rgba(8, 169, 210, 0.28), transparent 30%),
    var(--dashboard-navy-dark);
}

.dashboard-number-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.dashboard-number-grid > div {
  min-height: 170px;
  padding: 32px 26px;
}

.dashboard-number-grid > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.dashboard-number-grid strong {
  display: block;
  margin-bottom: 14px;
  color: var(--dashboard-yellow);
  font-size: clamp(2.15rem, 3.6vw, 3.25rem);
  line-height: 1;
}

.dashboard-number-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.dashboard-method,
.dashboard-integrity,
.dashboard-reading {
  background: var(--dashboard-soft);
}

.dashboard-section-heading {
  max-width: 880px;
  margin-bottom: 58px;
}

.dashboard-section-heading > p:last-child {
  max-width: 760px;
  margin-bottom: 0;
}

.dashboard-method-grid {
  border-top: 1px solid #cbd6e1;
}

.dashboard-method-grid article {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 26px;
  padding: 34px 0;
  border-bottom: 1px solid #cbd6e1;
}

.dashboard-method-number {
  color: var(--dashboard-red);
  font-size: 14px;
  font-weight: 900;
}

.dashboard-method-grid h3,
.dashboard-response-summary h3,
.dashboard-exclusion-list h3,
.dashboard-integrity-grid h3,
.dashboard-indicator-list h3,
.dashboard-territory-grid h3 {
  margin-bottom: 12px;
  color: var(--dashboard-navy);
  font-size: 22px;
  line-height: 1.25;
}

.dashboard-method-grid p,
.dashboard-response-summary p,
.dashboard-exclusion-list p,
.dashboard-integrity-grid p,
.dashboard-indicator-list p,
.dashboard-territory-grid p,
.dashboard-legal-note p,
.dashboard-dhr-note p {
  margin-bottom: 0;
  color: var(--dashboard-muted);
  font-size: 15px;
  line-height: 1.68;
}

.dashboard-legal-note,
.dashboard-dhr-note {
  display: grid;
  grid-template-columns: minmax(220px, 0.3fr) minmax(0, 1fr);
  gap: 44px;
  margin-top: 48px;
  padding: 30px 34px;
  color: #fff;
  background: var(--dashboard-navy);
  border-left: 6px solid var(--dashboard-cyan);
  border-radius: 6px;
}

.dashboard-legal-note strong,
.dashboard-dhr-note strong {
  font-size: 18px;
}

.dashboard-legal-note p,
.dashboard-dhr-note p {
  color: rgba(255, 255, 255, 0.8);
}

.dashboard-production {
  color: #fff;
  background: var(--dashboard-navy-dark);
}

.dashboard-production-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.25fr);
  gap: clamp(58px, 8vw, 120px);
  align-items: start;
}

.dashboard-production-intro {
  position: sticky;
  top: 112px;
}

.dashboard-production-intro h2,
.dashboard-difficulty h2 {
  color: #fff;
}

.dashboard-production-intro > p,
.dashboard-difficulty > p {
  color: rgba(255, 255, 255, 0.74);
}

.dashboard-production-flow {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.dashboard-production-flow article {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.dashboard-production-flow article > span {
  color: var(--dashboard-yellow);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.dashboard-production-flow h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 21px;
}

.dashboard-production-flow p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.66;
}

.dashboard-response-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.62fr) minmax(0, 1.38fr);
  gap: 72px;
  margin-top: 94px;
  padding-top: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.dashboard-response-summary strong {
  display: block;
  margin-bottom: 16px;
  color: var(--dashboard-yellow);
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 1;
}

.dashboard-response-summary h3 {
  color: #fff;
}

.dashboard-response-summary p {
  color: rgba(255, 255, 255, 0.68);
}

.dashboard-exclusion-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.dashboard-exclusion-list article {
  min-height: 190px;
  padding: 28px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.dashboard-exclusion-list article:nth-child(even) {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.dashboard-exclusion-list h3 {
  color: #fff;
  font-size: 18px;
}

.dashboard-exclusion-list p {
  color: rgba(255, 255, 255, 0.66);
}

.dashboard-difficulty {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 72px;
  margin-top: 92px;
  padding: 54px 0 0;
  border-top: 4px solid var(--dashboard-red);
}

.dashboard-integrity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #cbd6e1;
  border-bottom: 1px solid #cbd6e1;
}

.dashboard-integrity-grid article {
  padding: 38px 36px;
}

.dashboard-integrity-grid article + article {
  border-left: 1px solid #cbd6e1;
}

.dashboard-integrity-grid p + p {
  margin-top: 14px;
}

.dashboard-indicators {
  background: #fff;
}

.dashboard-indicator-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.58fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 58px;
}

.dashboard-indicator-heading > div {
  padding-top: 8px;
  border-top: 4px solid var(--dashboard-red);
}

.dashboard-indicator-heading h2 {
  margin-bottom: 0;
}

.dashboard-indicator-heading > p {
  margin-bottom: 4px;
}

.dashboard-thresholds {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  color: #fff;
  background: var(--dashboard-navy);
  border-radius: 8px;
  overflow: hidden;
}

.dashboard-thresholds > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 18px;
  padding: 34px 38px;
}

.dashboard-thresholds > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.dashboard-thresholds span {
  grid-column: 1 / -1;
  margin-bottom: 14px;
  color: var(--dashboard-yellow);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.dashboard-thresholds strong {
  color: #fff;
  font-size: 2.35rem;
  line-height: 1;
}

.dashboard-thresholds small {
  align-self: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.dashboard-thresholds > p {
  grid-column: 1 / -1;
  margin: 0;
  padding: 22px 38px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.14);
  font-size: 13px;
  line-height: 1.6;
}

.dashboard-indicator-list {
  margin-top: 64px;
  border-top: 1px solid var(--dashboard-line);
}

.dashboard-indicator-list article {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 26px;
  padding: 32px 0;
  border-bottom: 1px solid var(--dashboard-line);
  transition: padding-left 180ms ease, border-color 180ms ease;
}

.dashboard-indicator-list article:hover {
  padding-left: 12px;
  border-color: var(--dashboard-cyan);
}

.dashboard-indicator-list article > span {
  color: var(--dashboard-red);
  font-size: 14px;
  font-weight: 900;
}

.dashboard-dhr-note {
  margin-top: 52px;
  background: var(--dashboard-navy-dark);
  border-left-color: var(--dashboard-yellow);
}

.dashboard-territory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #cbd6e1;
  border-bottom: 1px solid #cbd6e1;
}

.dashboard-territory-grid article {
  padding: 38px 42px;
}

.dashboard-territory-grid article + article {
  border-left: 1px solid #cbd6e1;
}

.dashboard-territory-label {
  margin-bottom: 22px;
  color: var(--dashboard-red) !important;
  font-size: 13px !important;
  font-weight: 900;
  text-transform: uppercase;
}

.dashboard-territory-grid p + p {
  margin-top: 14px;
}

.dashboard-legend {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 58px;
}

.dashboard-legend > div {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 8px 14px;
  align-items: center;
  padding: 24px 0;
  border-top: 3px solid var(--legend-color);
}

.dashboard-legend .below {
  --legend-color: var(--dashboard-red);
}

.dashboard-legend .equal {
  --legend-color: var(--dashboard-navy);
}

.dashboard-legend .above {
  --legend-color: var(--dashboard-green);
}

.dashboard-legend span {
  width: 16px;
  height: 16px;
  background: var(--legend-color);
  border-radius: 50%;
}

.dashboard-legend strong {
  color: var(--dashboard-navy);
}

.dashboard-legend p {
  grid-column: 2;
  margin-bottom: 0;
  color: var(--dashboard-muted);
  font-size: 14px;
  line-height: 1.55;
}

.dashboard-region-list {
  margin-top: 52px;
  background: #fff;
  border: 1px solid var(--dashboard-line);
  border-radius: 7px;
}

.dashboard-region-list summary {
  padding: 20px 24px;
  color: var(--dashboard-navy);
  font-weight: 850;
  cursor: pointer;
}

.dashboard-region-list[open] summary {
  border-bottom: 1px solid var(--dashboard-line);
}

.dashboard-region-list ol {
  columns: 3;
  gap: 42px;
  margin: 0;
  padding: 30px 54px 34px;
}

.dashboard-region-list li {
  margin-bottom: 10px;
  break-inside: avoid;
  color: var(--dashboard-muted);
}

.dashboard-access {
  padding: 88px 0;
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(8, 169, 210, 0.3), transparent 34%),
    var(--dashboard-navy);
}

.dashboard-access-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.42fr);
  gap: 72px;
  align-items: center;
}

.dashboard-access h2 {
  color: #fff;
}

.dashboard-access p {
  max-width: 800px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.dashboard-access-actions {
  display: grid;
  gap: 12px;
}

.dashboard-access .dashboard-button {
  width: 100%;
}

.dashboard-evaluation {
  background: #fff;
}

.dashboard-evaluation-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(54px, 8vw, 112px);
  align-items: start;
}

.dashboard-evaluation-intro {
  padding-top: 8px;
  border-top: 4px solid var(--dashboard-red);
}

.dashboard-evaluation-intro h2 {
  margin-bottom: 20px;
  color: var(--dashboard-navy);
  font-size: clamp(2.45rem, 4vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.dashboard-evaluation-intro > p:last-child {
  margin-bottom: 0;
  color: var(--dashboard-muted);
  font-size: 17px;
  line-height: 1.7;
}

.dashboard-evaluation-form {
  display: grid;
  gap: 28px;
  padding: clamp(28px, 4vw, 46px);
  background: var(--dashboard-soft);
  border-top: 6px solid var(--dashboard-navy);
  border-radius: 7px;
}

.dashboard-evaluation-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.dashboard-evaluation-form legend,
.dashboard-evaluation-comment > span {
  margin-bottom: 14px;
  color: var(--dashboard-navy);
  font-size: 17px;
  font-weight: 850;
  line-height: 1.45;
}

.dashboard-evaluation-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dashboard-evaluation-options label {
  position: relative;
  cursor: pointer;
}

.dashboard-evaluation-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.dashboard-evaluation-options span {
  display: flex;
  min-width: 104px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  color: var(--dashboard-navy);
  background: #fff;
  border: 1px solid #bdc8d5;
  border-radius: 5px;
  font-weight: 850;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.dashboard-evaluation-options input:checked + span {
  color: #fff;
  background: var(--dashboard-navy);
  border-color: var(--dashboard-navy);
}

.dashboard-evaluation-options input:focus-visible + span {
  outline: 3px solid rgba(8, 169, 210, 0.42);
  outline-offset: 3px;
}

.dashboard-evaluation-comment {
  display: grid;
}

.dashboard-evaluation-comment textarea {
  width: 100%;
  min-height: 160px;
  padding: 14px 16px;
  color: var(--dashboard-ink);
  background: #fff;
  border: 1px solid #bdc8d5;
  border-radius: 5px;
  resize: vertical;
}

.dashboard-evaluation-comment textarea:focus {
  border-color: var(--dashboard-cyan);
  box-shadow: 0 0 0 4px rgba(8, 169, 210, 0.12);
  outline: 0;
}

.dashboard-evaluation-note {
  margin: -8px 0 0;
  color: var(--dashboard-muted);
  font-size: 13px;
  line-height: 1.55;
}

.dashboard-evaluation-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.dashboard-evaluation-footer .dashboard-button {
  min-width: 150px;
  cursor: pointer;
}

.dashboard-evaluation-message {
  min-height: 24px;
  margin: 0;
  color: #237a36;
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 1120px) {
  .dashboard-number-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dashboard-number-grid > div:nth-child(4),
  .dashboard-number-grid > div:nth-child(5) {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .dashboard-number-grid > div:nth-child(4) {
    border-left: 0;
  }

  .dashboard-production-layout,
  .dashboard-response-layout,
  .dashboard-difficulty,
  .dashboard-access-inner {
    gap: 48px;
  }
}

@media (max-width: 860px) {
  .dashboard-hero {
    min-height: 680px;
  }

  .dashboard-hero-overlay {
    background: rgba(7, 21, 66, 0.88);
  }

  .dashboard-anchor-nav {
    width: calc(100% - 32px);
    grid-template-columns: repeat(3, 1fr);
  }

  .dashboard-anchor-nav a:nth-child(4),
  .dashboard-anchor-nav a:nth-child(5) {
    border-top: 1px solid var(--dashboard-line);
  }

  .dashboard-anchor-nav a:nth-child(4) {
    border-left: 0;
  }

  .dashboard-page .section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .dashboard-heading-layout,
  .dashboard-production-layout,
  .dashboard-response-layout,
  .dashboard-difficulty,
  .dashboard-indicator-heading,
  .dashboard-access-inner {
    grid-template-columns: 1fr;
  }

  .dashboard-production-intro {
    position: static;
  }

  .dashboard-principles,
  .dashboard-integrity-grid,
  .dashboard-territory-grid,
  .dashboard-legend {
    grid-template-columns: 1fr;
  }

  .dashboard-principles article,
  .dashboard-integrity-grid article,
  .dashboard-territory-grid article {
    min-height: 0;
    padding: 30px 0;
  }

  .dashboard-principles article + article,
  .dashboard-integrity-grid article + article,
  .dashboard-territory-grid article + article {
    border-top: 1px solid #cbd6e1;
    border-left: 0;
  }

  .dashboard-principles span {
    margin-bottom: 18px;
  }

  .dashboard-response-layout {
    margin-top: 72px;
  }

  .dashboard-indicator-heading {
    gap: 20px;
  }

  .dashboard-thresholds {
    grid-template-columns: 1fr;
  }

  .dashboard-thresholds > div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .dashboard-region-list ol {
    columns: 2;
  }
}

@media (max-width: 620px) {
  .dashboard-hero {
    min-height: 740px;
  }

  .dashboard-hero-inner {
    padding-top: 64px;
    padding-bottom: 104px;
  }

  .dashboard-hero h1 {
    font-size: 2.65rem;
  }

  .dashboard-hero-copy > p:not(.dashboard-kicker) {
    font-size: 17px;
  }

  .dashboard-actions,
  .dashboard-actions .dashboard-button {
    width: 100%;
  }

  .dashboard-anchor-nav {
    grid-template-columns: 1fr;
  }

  .dashboard-anchor-nav a + a,
  .dashboard-anchor-nav a:nth-child(4),
  .dashboard-anchor-nav a:nth-child(5) {
    border-top: 1px solid var(--dashboard-line);
    border-left: 0;
  }

  .dashboard-heading-layout h2,
  .dashboard-section-heading h2,
  .dashboard-production-intro h2,
  .dashboard-difficulty h2,
  .dashboard-indicator-heading h2,
  .dashboard-access h2 {
    font-size: 2.2rem;
  }

  .dashboard-number-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-number-grid > div {
    min-height: 0;
    padding: 26px 4px;
  }

  .dashboard-number-grid > div + div,
  .dashboard-number-grid > div:nth-child(4),
  .dashboard-number-grid > div:nth-child(5) {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-left: 0;
  }

  .dashboard-method-grid article,
  .dashboard-indicator-list article {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
  }

  .dashboard-legal-note,
  .dashboard-dhr-note {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 26px 24px;
  }

  .dashboard-production-flow article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .dashboard-exclusion-list {
    grid-template-columns: 1fr;
  }

  .dashboard-exclusion-list article {
    min-height: 0;
    padding: 26px 4px;
  }

  .dashboard-exclusion-list article:nth-child(even) {
    border-left: 0;
  }

  .dashboard-difficulty {
    margin-top: 64px;
  }

  .dashboard-thresholds > div,
  .dashboard-thresholds > p {
    padding: 26px 22px;
  }

  .dashboard-indicator-list article:hover {
    padding-left: 0;
  }

  .dashboard-region-list ol {
    columns: 1;
    padding: 24px 42px 28px;
  }

  .dashboard-access {
    padding: 70px 0;
  }
}

/* Tableau de bord: lecture éditoriale et accordéons */
.dashboard-hero {
  min-height: 610px;
}

.dashboard-hero-inner {
  padding-top: 76px;
  padding-bottom: 108px;
}

.dashboard-hero-copy {
  max-width: 800px;
}

.dashboard-hero h1 {
  max-width: 790px;
  font-size: clamp(3rem, 4.8vw, 4.45rem);
  line-height: 1.02;
}

.dashboard-hero-copy > p:not(.dashboard-kicker) {
  max-width: 690px;
  font-size: 18px;
  line-height: 1.62;
}

.dashboard-anchor-nav {
  width: min(960px, calc(100% - 40px));
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dashboard-page .section {
  padding-top: 94px;
  padding-bottom: 94px;
}

.dashboard-summary {
  background: #fff;
}

.dashboard-summary-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(54px, 8vw, 112px);
  align-items: start;
}

.dashboard-summary-copy {
  padding-top: 8px;
  border-top: 4px solid var(--dashboard-red);
}

.dashboard-summary-copy h2,
.dashboard-chapter-heading h2 {
  margin-bottom: 22px;
  color: var(--dashboard-navy);
  font-size: clamp(2.45rem, 4vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.dashboard-summary-copy > p:last-child,
.dashboard-chapter-heading > p:last-child {
  margin-bottom: 0;
  color: var(--dashboard-muted);
  font-size: 17px;
  line-height: 1.7;
}

.dashboard-summary-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--dashboard-line);
  border-bottom: 1px solid var(--dashboard-line);
}

.dashboard-summary-stats > div {
  min-height: 166px;
  padding: 30px 34px;
}

.dashboard-summary-stats > div:nth-child(even) {
  border-left: 1px solid var(--dashboard-line);
}

.dashboard-summary-stats > div:nth-child(n + 3) {
  border-top: 1px solid var(--dashboard-line);
}

.dashboard-summary-stats strong {
  display: block;
  margin-bottom: 12px;
  color: var(--dashboard-navy);
  font-size: clamp(2.35rem, 4vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.dashboard-summary-stats span {
  display: block;
  max-width: 220px;
  color: var(--dashboard-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.48;
}

.dashboard-content-section {
  background: #fff;
}

.dashboard-content-alt {
  background: var(--dashboard-soft);
}

.dashboard-reading-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1.48fr);
  gap: clamp(56px, 8vw, 112px);
  align-items: start;
}

.dashboard-chapter-heading {
  position: sticky;
  top: 112px;
  padding-top: 8px;
  border-top: 4px solid var(--dashboard-red);
}

.dashboard-chapter-number {
  margin-bottom: 28px;
  color: var(--dashboard-cyan);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.dashboard-chapter-heading .dashboard-eyebrow {
  margin-bottom: 15px;
}

.dashboard-accordion {
  border-top: 1px solid var(--dashboard-line);
}

.dashboard-accordion details {
  border-bottom: 1px solid var(--dashboard-line);
}

.dashboard-accordion summary {
  position: relative;
  display: grid;
  min-height: 88px;
  grid-template-columns: minmax(0, 1fr) 38px;
  gap: 24px;
  align-items: center;
  padding: 22px 4px;
  color: var(--dashboard-navy);
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  font-weight: 850;
  line-height: 1.3;
  list-style: none;
  cursor: pointer;
  transition: color 180ms ease, padding-left 180ms ease;
}

.dashboard-accordion summary::-webkit-details-marker {
  display: none;
}

.dashboard-accordion summary:hover {
  padding-left: 10px;
  color: var(--dashboard-red);
}

.dashboard-accordion summary:focus-visible {
  outline: 3px solid rgba(8, 169, 210, 0.42);
  outline-offset: 4px;
}

.dashboard-accordion summary b {
  display: inline-block;
  width: 34px;
  color: var(--dashboard-red);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.dashboard-accordion summary i {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  border: 1px solid #b9c5d3;
  border-radius: 50%;
  transition: transform 220ms ease, color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.dashboard-accordion summary i::before,
.dashboard-accordion summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  content: "";
  background: currentColor;
  transform: translate(-50%, -50%);
}

.dashboard-accordion summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.dashboard-accordion details[open] > summary {
  color: var(--dashboard-red);
}

.dashboard-accordion details[open] > summary i {
  color: #fff;
  background: var(--dashboard-red);
  border-color: var(--dashboard-red);
  transform: rotate(45deg);
}

.dashboard-accordion-content {
  max-width: 860px;
  padding: 0 62px 38px 4px;
  color: var(--dashboard-muted);
  font-size: 16px;
  line-height: 1.76;
}

.dashboard-accordion-content p {
  margin-bottom: 16px;
}

.dashboard-accordion-content p:last-child {
  margin-bottom: 0;
}

.dashboard-accordion-content h3 {
  margin: 28px 0 12px;
  color: var(--dashboard-navy);
  font-size: 18px;
  line-height: 1.35;
}

.dashboard-accordion-content ul {
  margin: 16px 0 22px;
  padding-left: 22px;
}

.dashboard-accordion-content li {
  margin-bottom: 9px;
}

.dashboard-definition-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 26px 0 10px;
  border-top: 1px solid var(--dashboard-line);
}

.dashboard-definition-list > div {
  padding: 22px 24px 22px 0;
  border-bottom: 1px solid var(--dashboard-line);
}

.dashboard-definition-list > div:nth-child(even) {
  padding-left: 24px;
  border-left: 1px solid var(--dashboard-line);
}

.dashboard-definition-list dt {
  margin-bottom: 7px;
  color: var(--dashboard-red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.dashboard-definition-list dd {
  margin: 0;
  color: var(--dashboard-muted);
  line-height: 1.6;
}

.dashboard-reference-mini {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
  overflow: hidden;
  color: #fff;
  background: var(--dashboard-navy);
  border-radius: 5px;
}

.dashboard-reference-mini > div {
  padding: 24px 20px;
}

.dashboard-reference-mini > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.dashboard-reference-mini span,
.dashboard-reference-mini strong,
.dashboard-reference-mini small {
  display: block;
}

.dashboard-reference-mini span {
  margin-bottom: 16px;
  color: var(--dashboard-yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.dashboard-reference-mini strong {
  margin-top: 9px;
  font-size: 1.6rem;
  line-height: 1;
}

.dashboard-reference-mini small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.dashboard-reference-copy {
  margin-top: 28px;
  padding: 24px 26px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--dashboard-navy);
  border-left: 4px solid var(--dashboard-cyan);
}

.dashboard-reference-copy p {
  color: inherit;
  font-size: 14px;
  line-height: 1.68;
}

.dashboard-color-rules {
  margin-top: 30px;
  border-top: 1px solid var(--dashboard-line);
}

.dashboard-color-rules > div {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--dashboard-line);
}

.dashboard-color-rules span {
  width: 14px;
  height: 14px;
  margin-top: 6px;
  background: var(--rule-color);
  border-radius: 50%;
}

.dashboard-color-rules .below {
  --rule-color: var(--dashboard-red);
}

.dashboard-color-rules .above {
  --rule-color: var(--dashboard-green);
}

.dashboard-color-rules .equal {
  --rule-color: var(--dashboard-navy);
}

.dashboard-color-rules p {
  margin-bottom: 0;
}

.dashboard-region-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
  margin: 28px 0;
  padding: 0;
  list-style-position: inside;
  border-top: 1px solid var(--dashboard-line);
}

.dashboard-region-links li {
  margin: 0;
  padding: 11px 0;
  border-bottom: 1px solid var(--dashboard-line);
  break-inside: avoid;
}

.dashboard-region-links a {
  color: var(--dashboard-navy);
  font-weight: 750;
  text-underline-offset: 3px;
}

.dashboard-region-links a:hover {
  color: var(--dashboard-red);
}

@media (max-width: 980px) {
  .dashboard-summary-grid,
  .dashboard-reading-layout,
  .dashboard-evaluation-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .dashboard-chapter-heading {
    position: static;
    max-width: 720px;
  }

  .dashboard-reference-mini {
    max-width: 520px;
  }
}

@media (max-width: 860px) {
  .dashboard-hero {
    min-height: 590px;
  }

  .dashboard-anchor-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-anchor-nav a:nth-child(3),
  .dashboard-anchor-nav a:nth-child(4) {
    border-top: 1px solid var(--dashboard-line);
  }

  .dashboard-anchor-nav a:nth-child(3) {
    border-left: 0;
  }

  .dashboard-anchor-nav a:nth-child(4) {
    border-left: 1px solid var(--dashboard-line);
  }
}

@media (max-width: 620px) {
  .dashboard-hero {
    min-height: 620px;
  }

  .dashboard-hero-inner {
    padding-top: 52px;
    padding-bottom: 92px;
  }

  .dashboard-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3rem);
  }

  .dashboard-page .section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .dashboard-summary-stats,
  .dashboard-definition-list,
  .dashboard-reference-mini,
  .dashboard-region-links {
    grid-template-columns: 1fr;
  }

  .dashboard-summary-stats > div {
    min-height: 0;
    padding: 25px 4px;
  }

  .dashboard-summary-stats > div:nth-child(even) {
    border-left: 0;
  }

  .dashboard-summary-stats > div:nth-child(n + 2) {
    border-top: 1px solid var(--dashboard-line);
  }

  .dashboard-summary-copy h2,
  .dashboard-chapter-heading h2,
  .dashboard-evaluation-intro h2 {
    font-size: 2.2rem;
  }

  .dashboard-accordion summary {
    min-height: 78px;
    grid-template-columns: minmax(0, 1fr) 34px;
    gap: 16px;
    padding: 18px 0;
  }

  .dashboard-accordion summary:hover {
    padding-left: 0;
  }

  .dashboard-accordion-content {
    padding-right: 0;
    padding-left: 0;
    font-size: 15px;
  }

  .dashboard-definition-list > div,
  .dashboard-definition-list > div:nth-child(even) {
    padding: 20px 0;
    border-left: 0;
  }

  .dashboard-reference-mini > div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .dashboard-reference-copy {
    padding: 22px 20px;
  }

  .dashboard-evaluation-form {
    padding: 26px 20px;
  }

  .dashboard-evaluation-options label,
  .dashboard-evaluation-options span,
  .dashboard-evaluation-footer .dashboard-button {
    width: 100%;
  }

  .dashboard-site .newsletter-fab {
    display: none;
  }
}

/* Observatoire: page Publications */
.publications-site {
  --publications-navy: #0c1f63;
  --publications-navy-dark: #071542;
  --publications-cyan: #08a9d2;
  --publications-red: #dc2f32;
  --publications-yellow: #ffd02f;
  --publications-green: #2f9e44;
  --publications-ink: #101828;
  --publications-muted: #5b6678;
  --publications-line: #d9e2ea;
  --publications-soft: #f4f8fb;
  background: #fff;
}

.publications-page {
  overflow: hidden;
  color: var(--publications-ink);
}

.publications-page h1,
.publications-page h2,
.publications-page h3,
.publications-page p {
  margin-top: 0;
}

.publications-hero {
  position: relative;
  display: flex;
  min-height: 650px;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 83% 17%, rgba(8, 169, 210, 0.28), transparent 30%),
    linear-gradient(120deg, var(--publications-navy-dark), var(--publications-navy));
  isolation: isolate;
}

.publications-hero-accent {
  position: absolute;
  inset: auto 0 0 auto;
  width: min(48vw, 620px);
  height: 58%;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 208, 47, 0.34) 100%);
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.9;
  z-index: -1;
}

.publications-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: clamp(52px, 7vw, 110px);
  align-items: center;
  padding-top: 92px;
  padding-bottom: 108px;
}

.publications-hero-copy {
  max-width: 780px;
}

.publications-kicker,
.publications-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--publications-cyan);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.publications-kicker span {
  display: block;
  width: 30px;
  height: 4px;
  background: var(--publications-red);
}

.publications-eyebrow.light {
  color: #fff;
}

.publications-hero h1 {
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(3.8rem, 8vw, 7.2rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.publications-hero-copy > p:not(.publications-kicker) {
  max-width: 660px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  line-height: 1.62;
}

.publications-button,
.publication-download {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  color: #fff;
  background: var(--publications-red);
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.publications-button:hover,
.publication-download:hover {
  transform: translateY(-2px);
}

.publications-button.light {
  color: var(--publications-navy);
  background: #fff;
}

.publications-hero-covers {
  position: relative;
  display: grid;
  min-height: 470px;
  align-items: center;
}

.publications-hero-covers img {
  width: min(265px, 58vw);
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.publications-hero-covers img:first-child {
  position: relative;
  z-index: 2;
  margin-left: 8%;
  transform: rotate(-4deg);
}

.publications-hero-covers img:last-child {
  position: absolute;
  right: 6%;
  z-index: 1;
  transform: rotate(6deg) translateY(32px);
}

.publications-tabs {
  position: relative;
  z-index: 4;
  display: grid;
  width: min(980px, calc(100% - 40px));
  min-height: 76px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: -38px auto 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--publications-line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(12, 31, 99, 0.14);
  scroll-margin-top: 86px;
}

.publications-tabs button {
  padding: 18px 16px;
  color: var(--publications-navy);
  background: #fff;
  border: 0;
  border-left: 1px solid var(--publications-line);
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease;
}

.publications-tabs button:first-child {
  border-left: 0;
}

.publications-tabs button[aria-selected="true"] {
  color: #fff;
  background: var(--publications-cyan);
}

.publications-tabs button:focus-visible {
  outline: 3px solid rgba(8, 169, 210, 0.42);
  outline-offset: -3px;
}

.publications-panel {
  background: #fff;
  scroll-margin-top: 96px;
}

.publications-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.58fr);
  gap: clamp(44px, 7vw, 92px);
  align-items: end;
  margin-bottom: 62px;
}

.publications-heading > div,
.publications-empty {
  padding-top: 8px;
  border-top: 4px solid var(--publications-cyan);
}

.publications-heading h2,
.publications-empty h2,
.publications-cta h2 {
  margin-bottom: 0;
  color: var(--publications-navy);
  font-size: clamp(2.45rem, 4vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.publications-heading > p {
  margin-bottom: 4px;
  color: var(--publications-muted);
  font-size: 17px;
  line-height: 1.7;
}

.publications-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--publications-line);
}

.publication-item {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 34px 28px 36px;
  border-right: 1px solid var(--publications-line);
  border-bottom: 1px solid var(--publications-line);
}

.publication-item:nth-child(3n) {
  border-right: 0;
}

.publication-cover {
  display: block;
  overflow: hidden;
  background: var(--publications-soft);
  border-radius: 5px;
}

.publication-cover img {
  display: block;
  width: 100%;
  aspect-ratio: 0.69;
  object-fit: cover;
  object-position: top center;
  transition: transform 260ms ease;
}

.publication-item:hover .publication-cover img {
  transform: scale(1.035);
}

.publication-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 24px;
}

.publication-type {
  margin-bottom: 13px;
  color: var(--publications-cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.publication-copy h3 {
  margin-bottom: 14px;
  color: var(--publications-navy);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.018em;
}

.publication-copy p:not(.publication-type) {
  margin-bottom: 26px;
  color: var(--publications-muted);
  font-size: 15px;
  line-height: 1.66;
}

.publication-download {
  width: 100%;
  margin-top: auto;
  background: var(--publications-green);
}

.publications-empty {
  display: grid;
  max-width: 820px;
  min-height: 360px;
  align-content: center;
}

.publications-empty p:last-child {
  max-width: 620px;
  margin-top: 22px;
  margin-bottom: 0;
  color: var(--publications-muted);
  font-size: 17px;
  line-height: 1.7;
}

.publications-cta {
  padding: 82px 0;
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(8, 169, 210, 0.34), transparent 36%),
    var(--publications-navy);
}

.publications-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: center;
}

.publications-cta h2 {
  max-width: 760px;
  color: #fff;
}

@media (max-width: 1040px) {
  .publications-hero-inner,
  .publications-heading,
  .publications-cta-inner {
    grid-template-columns: 1fr;
  }

  .publications-hero-covers {
    min-height: 390px;
    max-width: 620px;
  }

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

  .publication-item,
  .publication-item:nth-child(3n) {
    border-right: 1px solid var(--publications-line);
  }

  .publication-item:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 760px) {
  .publications-hero {
    min-height: auto;
  }

  .publications-hero-inner {
    padding-top: 74px;
    padding-bottom: 92px;
  }

  .publications-hero h1 {
    font-size: clamp(2.75rem, 12.5vw, 3.15rem);
    letter-spacing: -0.045em;
  }

  .publications-kicker {
    align-items: flex-start;
    font-size: 11px;
    line-height: 1.35;
  }

  .publications-hero-copy > p:not(.publications-kicker) {
    font-size: 17px;
  }

  .publications-hero-covers {
    min-height: 330px;
  }

  .publications-hero-covers img {
    width: min(205px, 54vw);
  }

  .publications-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .publications-tabs button:nth-child(3),
  .publications-tabs button:nth-child(4) {
    border-top: 1px solid var(--publications-line);
  }

  .publications-tabs button:nth-child(3) {
    border-left: 0;
  }

  .publications-panel {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .publications-heading {
    margin-bottom: 42px;
  }

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

  .publication-item,
  .publication-item:nth-child(2n),
  .publication-item:nth-child(3n) {
    padding: 30px 0;
    border-right: 0;
  }

  .publication-cover {
    max-width: 360px;
  }

  .publication-download,
  .publications-button {
    width: 100%;
  }

  .publications-cta {
    padding: 68px 0;
  }

  .publications-site .newsletter-fab {
    display: none;
  }
}

/* Page 404 */
.error-site {
  background: #fff;
}

.error-page {
  overflow: hidden;
}

.error-hero {
  position: relative;
  display: flex;
  min-height: calc(100svh - var(--header-top));
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--sdesj-blue);
  isolation: isolate;
}

.error-hero > img,
.error-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.error-hero > img {
  z-index: -2;
  object-fit: cover;
  object-position: 48% center;
  transform: scale(1.02);
}

.error-hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 18, 56, 0.96) 0%, rgba(12, 31, 99, 0.86) 52%, rgba(12, 31, 99, 0.34) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.35));
}

.error-hero-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.48fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  min-height: calc(100svh - var(--header-top));
  padding-top: calc(var(--header-height) + 92px);
  padding-bottom: 92px;
}

.error-code {
  margin: 0;
  color: transparent;
  font-size: clamp(7rem, 18vw, 15rem);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.08em;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.76);
  text-shadow: 0 22px 70px rgba(0, 0, 0, 0.26);
}

.error-hero-copy {
  max-width: 760px;
}

.error-hero-copy h1 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(3rem, 5.8vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.error-hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
  line-height: 1.65;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.error-search-action {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.error-search-action:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.error-destinations {
  background:
    linear-gradient(90deg, rgba(0, 189, 233, 0.05), transparent 38%),
    var(--soft);
}

.error-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.48fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: end;
  margin-bottom: 52px;
}

.error-section-heading h2 {
  margin: 0;
  color: var(--sdesj-blue);
  font-size: clamp(2.45rem, 4vw, 3.45rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.error-section-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.68;
}

.error-route-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.error-route-list a {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 26px;
  gap: 20px;
  align-items: center;
  min-height: 132px;
  padding: 26px 30px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
}

.error-route-list a:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.error-route-list a:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.error-route-list a:hover {
  padding-left: 38px;
  color: var(--sdesj-blue);
  background: rgba(255, 255, 255, 0.68);
}

.error-route-list span {
  color: var(--sdesj-red);
  font-size: 0.8rem;
  font-weight: 900;
}

.error-route-list strong,
.error-route-list small {
  display: block;
}

.error-route-list strong {
  margin-bottom: 8px;
  color: var(--sdesj-blue);
  font-size: 1.24rem;
  line-height: 1.2;
}

.error-route-list small {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.error-route-list i {
  color: var(--sdesj-light-blue);
  font-style: normal;
  font-weight: 900;
}

@media (max-width: 900px) {
  .error-hero-inner,
  .error-section-heading {
    grid-template-columns: 1fr;
  }

  .error-code {
    font-size: clamp(6rem, 28vw, 10rem);
  }

  .error-route-list {
    grid-template-columns: 1fr;
  }

  .error-route-list a,
  .error-route-list a:nth-child(odd),
  .error-route-list a:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .error-route-list a:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  .error-hero-inner {
    position: relative;
    display: block;
    min-height: calc(100svh - var(--header-top));
    padding-top: calc(var(--header-height) + 78px);
    padding-bottom: 78px;
  }

  .error-code {
    position: absolute;
    top: calc(var(--header-height) + 26px);
    right: 0;
    font-size: clamp(5.8rem, 28vw, 7rem);
    opacity: 0.46;
    pointer-events: none;
  }

  .error-hero-copy {
    position: relative;
    z-index: 1;
    padding-top: 80px;
  }

  .error-hero-copy h1 {
    font-size: clamp(2.55rem, 12vw, 3.25rem);
  }

  .error-hero-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .error-actions,
  .error-actions .primary-button,
  .error-search-action {
    width: 100%;
  }

  .error-route-list a {
    grid-template-columns: 42px minmax(0, 1fr) 18px;
    gap: 14px;
    min-height: 112px;
    padding: 22px 0;
  }

  .error-route-list a:hover {
    padding-left: 0;
  }

  .error-site .newsletter-fab {
    display: none;
  }
}

/* Sommet: page Nous joindre */
.contact-hero {
  min-height: 700px;
}

.contact-hero .vision-hero-image {
  object-position: 50% center;
}

.contact-hero .vision-hero-overlay {
  background:
    linear-gradient(270deg, rgba(5, 22, 64, 0.98) 0%, rgba(12, 31, 99, 0.92) 42%, rgba(12, 31, 99, 0.38) 70%, rgba(5, 22, 64, 0.08) 100%),
    rgba(12, 31, 99, 0.12);
}

.contact-hero .vision-hero-copy {
  max-width: 660px;
  margin-left: auto;
}

.contact-hero .vision-kicker span {
  background: var(--sdesj-light-blue);
}

.contact-hero .vision-button.primary,
.contact-form .vision-button.primary,
.contact-map-action .vision-button.primary {
  background: var(--sdesj-red);
}

.contact-anchor-nav {
  grid-template-columns: repeat(3, 1fr);
  width: min(760px, calc(100% - 40px));
}

.contact-overview {
  background: #fff;
}

.contact-overview-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(52px, 7vw, 108px);
  align-items: start;
}

.contact-overview-intro {
  position: sticky;
  top: 132px;
}

.contact-overview-intro h2,
.contact-form-intro h2,
.contact-location-heading h2 {
  margin-bottom: 22px;
  color: var(--vision-ink);
  font-size: clamp(2.4rem, 4vw, 3.45rem);
  line-height: 1.05;
}

.contact-overview-intro > p:last-child,
.contact-form-intro > p,
.contact-location-heading > p,
.contact-map-action p {
  color: var(--vision-muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--vision-line);
  border-bottom: 1px solid var(--vision-line);
}

.contact-detail {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 20px;
  min-height: 210px;
  padding: 34px 30px;
}

.contact-detail:nth-child(even) {
  border-left: 1px solid var(--vision-line);
}

.contact-detail:nth-child(n + 3) {
  border-top: 1px solid var(--vision-line);
}

.contact-detail-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--sdesj-blue);
  background: rgba(0, 189, 233, 0.1);
  border-radius: 50%;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.contact-detail:hover .contact-detail-icon {
  color: #fff;
  background: var(--sdesj-blue);
  transform: translateY(-3px);
}

.contact-detail-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.contact-detail p {
  margin-bottom: 7px;
  color: var(--sdesj-red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-detail h3 {
  margin-bottom: 8px;
  color: var(--sdesj-blue);
  font-size: 1.18rem;
  line-height: 1.3;
}

.contact-detail h3 a {
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.contact-detail h3 a:hover {
  text-decoration: underline;
}

.contact-detail div > span {
  color: var(--vision-muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.contact-social-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 72px;
  padding-top: 28px;
  border-top: 1px solid var(--vision-line);
}

.contact-social-row p {
  max-width: 420px;
  margin: 0;
  color: var(--vision-muted);
  font-weight: 600;
}

.contact-social-row > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.contact-social-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.contact-social-row a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: var(--sdesj-blue);
  border-bottom: 2px solid rgba(12, 31, 99, 0.18);
  font-weight: 800;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.contact-social-row a:hover {
  color: var(--sdesj-red);
  border-color: var(--sdesj-red);
  transform: translateY(-2px);
}

.contact-form-section {
  background:
    linear-gradient(90deg, rgba(0, 189, 233, 0.05), transparent 38%),
    var(--vision-soft);
}

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(54px, 8vw, 120px);
  align-items: start;
}

.contact-form-intro {
  padding-top: 28px;
}

.contact-response-note {
  display: grid;
  gap: 6px;
  margin-top: 42px;
  padding: 22px 0 22px 24px;
  border-left: 4px solid var(--sdesj-light-blue);
}

.contact-response-note strong {
  color: var(--sdesj-blue);
  font-size: 0.9rem;
}

.contact-response-note span {
  color: var(--vision-muted);
  line-height: 1.55;
}

.contact-form {
  display: grid;
  gap: 24px;
  padding: clamp(28px, 4vw, 48px);
  background: #fff;
  border: 1px solid var(--vision-line);
  border-top: 6px solid var(--sdesj-blue);
  border-radius: 8px;
  box-shadow: 0 22px 55px rgba(12, 31, 99, 0.1);
}

.sdesj-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.contact-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--vision-ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form label strong {
  color: var(--sdesj-red);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfd8e5;
  border-radius: 6px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input {
  min-height: 52px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 180px;
  padding: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--sdesj-light-blue);
  box-shadow: 0 0 0 4px rgba(0, 189, 233, 0.12);
  outline: 0;
}

.contact-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contact-form-footer p,
.contact-form-message {
  margin: 0;
}

.contact-form-footer p {
  max-width: 300px;
  color: var(--vision-muted);
  font-size: 0.82rem;
}

.contact-form-message {
  min-height: 24px;
  color: var(--vision-green-dark);
  font-weight: 800;
}

.contact-form-message.is-error {
  color: #c0392b;
}

.contact-location {
  background: #fff;
}

.contact-location-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.52fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 52px;
}

.contact-location-heading h2 {
  margin-bottom: 0;
}

.contact-location-heading > p {
  margin-bottom: 5px;
}

.contact-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.54fr);
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(12, 31, 99, 0.13);
}

.contact-map {
  width: 100%;
  min-height: 560px;
  border: 0;
}

.contact-map-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(34px, 5vw, 62px);
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 189, 233, 0.34), transparent 45%),
    var(--sdesj-blue);
}

.contact-map-action > span {
  margin-bottom: 20px;
  color: var(--sdesj-yellow);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-map-action h3 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 2rem;
  line-height: 1.12;
}

.contact-map-action p {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-map-action .vision-button.primary {
  width: 100%;
}

@media (max-width: 980px) {
  .contact-overview-layout,
  .contact-form-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .contact-overview-intro {
    position: static;
    max-width: 690px;
  }

  .contact-form-intro {
    max-width: 690px;
    padding-top: 0;
  }

  .contact-location-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-location-heading > p {
    max-width: 650px;
  }

  .contact-map-layout {
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  }
}

@media (max-width: 860px) {
  .contact-hero .vision-hero-overlay {
    background: rgba(8, 29, 75, 0.86);
  }

  .contact-hero .vision-hero-copy {
    margin-left: 0;
  }

  .contact-anchor-nav {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-anchor-nav a:nth-child(3) {
    border-top: 0;
    border-left: 1px solid var(--vision-line);
  }

  .contact-social-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-social-row > div {
    justify-content: flex-start;
  }

  .contact-map-layout {
    grid-template-columns: 1fr;
  }

  .contact-map,
  .contact-map-layout {
    min-height: 460px;
  }

  .contact-map-action {
    min-height: 340px;
  }
}

@media (max-width: 620px) {
  .contact-site .newsletter-fab {
    top: auto;
    right: 14px;
    bottom: 14px;
    min-width: 0;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(228, 35, 32, 0.28);
    writing-mode: horizontal-tb;
    transform: none;
  }

  .contact-site .newsletter-fab:hover {
    transform: translateY(-2px);
  }

  .contact-hero {
    min-height: 680px;
  }

  .contact-hero .vision-hero-image {
    object-position: 42% center;
  }

  .contact-anchor-nav {
    grid-template-columns: 1fr;
  }

  .contact-anchor-nav a + a,
  .contact-anchor-nav a:nth-child(3) {
    border-top: 1px solid var(--vision-line);
    border-left: 0;
  }

  .contact-details,
  .contact-field-grid {
    grid-template-columns: 1fr;
  }

  .contact-detail {
    min-height: 0;
    padding: 28px 16px;
  }

  .contact-detail:nth-child(even) {
    border-left: 0;
  }

  .contact-detail:nth-child(n + 2) {
    border-top: 1px solid var(--vision-line);
  }

  .contact-social-row {
    margin-top: 52px;
  }

  .contact-social-row > div,
  .contact-social-row a {
    width: 100%;
  }

  .contact-social-row a {
    justify-content: space-between;
  }

  .contact-form {
    margin-inline: -4px;
    padding: 26px 20px;
  }

  .contact-form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-form-footer .vision-button {
    width: 100%;
  }

  .contact-map,
  .contact-map-layout {
    min-height: 390px;
  }

  .contact-map-action {
    min-height: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .observatory-axis,
  .observatory-axis > img,
  .observatory-axis a::after {
    transition: none;
  }

  .observatory-axis:hover,
  .observatory-axis:hover > img {
    transform: none;
  }
}

.observatory-watch {
  padding: 94px 0;
  color: #fff;
  background: linear-gradient(105deg, var(--sdesj-blue) 0%, #123887 56%, #007c9c 100%);
}

.observatory-watch-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 86px;
  align-items: center;
}

.observatory-watch h2 {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-size: 3.3rem;
  line-height: 1.05;
}

.observatory-watch-layout > div:last-child {
  padding-left: 34px;
  border-left: 3px solid var(--sdesj-yellow);
}

.observatory-watch p:not(.eyebrow) {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  line-height: 1.7;
}

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

.sdesj-events-carousel {
  position: relative;
  overflow: hidden;
}

.sdesj-events-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.sdesj-events-track .observatory-event-card {
  flex-shrink: 0;
}

.sdesj-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 30px;
}

.sdesj-carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  background: rgba(12, 31, 99, 0.18);
  border: 0;
  border-radius: 50%;
  transition: background 0.25s ease, transform 0.25s ease, width 0.25s ease;
}

.sdesj-carousel-dots button:hover {
  background: rgba(12, 31, 99, 0.36);
}

.sdesj-carousel-dots button.is-active {
  width: 22px;
  background: var(--sdesj-blue);
  border-radius: 5px;
}

.observatory-event-card {
  --event-accent: var(--sdesj-blue);
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 680px;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--event-accent) 38%, #dfe5ec);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(12, 31, 99, 0.08);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.observatory-event-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 3;
  height: 4px;
  background: var(--event-accent);
}

.observatory-event-card.event-youth {
  --event-accent: #7a818c;
}

.observatory-event-card.event-economy {
  --event-accent: #242c86;
}

.observatory-event-card.event-multitheme {
  --event-accent: #3a913f;
}

.observatory-event-card.event-multitheme::before {
  background: linear-gradient(90deg, #242c86 0 20%, #dc2f32 20% 40%, #ffd400 40% 60%, #3a913f 60% 80%, #0b8dcc 80%);
}

.observatory-event-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--event-accent) 58%, #dfe5ec);
  box-shadow: 0 22px 48px rgba(12, 31, 99, 0.13);
}

.observatory-event-card:focus-within {
  outline: 3px solid color-mix(in srgb, var(--event-accent) 34%, transparent);
  outline-offset: 3px;
}

.observatory-event-media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f3f6f8;
}

.observatory-event-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.observatory-event-card:hover .observatory-event-media img {
  transform: scale(1.025);
}

.observatory-event-body {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
  padding: 24px;
}

.observatory-event-type {
  width: max-content;
  max-width: 100%;
  margin: 0 0 12px;
  padding: 6px 9px;
  color: var(--event-accent);
  background: color-mix(in srgb, var(--event-accent) 11%, #fff);
  border-radius: 5px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.observatory-event-card h3 {
  margin: 0;
  color: var(--sdesj-blue);
  font-size: 1.45rem;
  line-height: 1.25;
  text-wrap: balance;
}

.observatory-event-meta {
  display: grid;
  gap: 13px;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}

.observatory-event-meta li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: #344054;
  font-size: 0.92rem;
  line-height: 1.45;
}

.observatory-event-meta svg {
  width: 34px;
  height: 34px;
  padding: 8px;
  color: #fff;
  background: var(--event-accent);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.observatory-event-meta time {
  font-weight: 700;
}

.observatory-event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.event-primary-action,
.event-secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 13px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 800;
  transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.event-primary-action {
  color: #fff;
  background: var(--sdesj-red);
  border: 1px solid var(--sdesj-red);
}

.event-secondary-action {
  color: var(--sdesj-blue);
  background: #fff;
  border: 1px solid var(--sdesj-blue);
}

.event-primary-action span,
.event-secondary-action span {
  margin-left: 7px;
  transition: transform 0.25s ease;
}

.event-primary-action:hover,
.event-secondary-action:hover {
  transform: translateY(-2px);
}

.event-secondary-action:hover {
  color: #fff;
  background: var(--sdesj-blue);
}

.event-primary-action:hover span,
.event-secondary-action:hover span {
  transform: translateX(3px);
}

.observatory-final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 80px;
  padding-top: 52px;
  border-top: 1px solid var(--border);
}

.observatory-final-cta h2 {
  max-width: 720px;
  margin: 0;
  color: var(--sdesj-blue);
  font-size: 2.55rem;
  line-height: 1.1;
}

.observatory-final-actions {
  display: grid;
  justify-items: end;
  gap: 20px;
  min-width: 230px;
}

.observatory-parent-brand img {
  width: 190px;
  height: 72px;
  object-fit: contain;
}

@media (max-width: 1440px) {
  .observatory-hero h1 {
    max-width: 650px;
    font-size: 3.8rem;
  }

  .observatory-news-grid,
  .observatory-axis-list {
    grid-template-columns: 1fr;
  }

  .observatory-news-card {
    grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1fr);
  }
}

/*
 * Hamburger menu: tablette et mobile seulement (≤1024px). Au-delà, la
 * navigation complète (menus déroulants) reste affichée en ligne.
 */
@media (max-width: 1024px) {
  .observatory-header-inner {
    justify-content: space-between;
    min-height: 72px;
  }

  .observatory-header-brand img {
    width: 170px;
  }

  .observatory-menu-toggle {
    display: inline-flex;
  }

  .observatory-main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    align-content: start;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    height: calc(100svh - 72px);
    max-height: none;
    margin: 0;
    padding: 20px max(16px, calc((100% - 720px) / 2)) 34px;
    overflow-y: auto;
    background: #fff;
    border-top: 1px solid #e6e9ee;
    box-shadow: 0 22px 44px rgba(12, 31, 99, 0.13);
  }

  .observatory-main-nav.is-open {
    display: grid;
  }

  .observatory-nav-group {
    width: 100%;
  }

  .observatory-nav-group summary,
  .observatory-contact-link {
    width: 100%;
    min-height: 50px;
    border-radius: 6px;
  }

  .observatory-nav-group summary {
    justify-content: flex-start;
  }

  .observatory-chevron {
    margin-left: auto;
    margin-right: 3px;
  }

  .observatory-submenu {
    position: static;
    min-width: 0;
    margin-top: 6px;
    padding: 6px 0 6px 18px;
    border: 0;
    border-left: 3px solid #dfe5ef;
    border-radius: 0;
    box-shadow: none;
  }

  .observatory-submenu::before {
    display: none;
  }

  .observatory-submenu a {
    padding: 11px 12px;
  }

  .observatory-nav-utilities {
    justify-content: space-between;
    margin: 8px 0 0;
    padding-top: 18px;
    border-top: 1px solid #e6e9ee;
  }

  .observatory-nav-utilities .observatory-summit-link {
    min-height: 46px;
    padding-inline: 18px;
    border-radius: 6px;
  }
}

@media (max-width: 1120px) {
  .observatory-event-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .observatory-event-card:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc((100% - 20px) / 2);
  }
}

@media (max-width: 860px) {
  .observatory-hero {
    min-height: 700px;
  }

  .observatory-hero::before {
    background:
      linear-gradient(90deg, rgba(4, 16, 59, 0.96), rgba(6, 27, 84, 0.9) 68%, rgba(7, 36, 94, 0.75)),
      rgba(5, 28, 82, 0.34);
  }

  .observatory-hero-inner {
    min-height: 700px;
  }

  .observatory-hero h1 {
    max-width: 620px;
    font-size: 3.2rem;
  }

  .observatory-section-heading,
  .observatory-watch-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .observatory-watch-layout > div:last-child {
    padding: 0;
    border-left: 0;
  }

  .observatory-event-grid {
    grid-template-columns: 1fr;
  }

  .observatory-event-card,
  .observatory-event-card:last-child {
    grid-column: auto;
    justify-self: stretch;
    width: auto;
    min-height: 0;
  }

  .observatory-event-media {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 620px) {
  .observatory-header-inner {
    width: min(100% - 24px, 1320px);
  }

  .observatory-header-brand img {
    width: 150px;
  }

  .observatory-menu-toggle {
    min-height: 42px;
    padding: 0 12px;
  }

  .observatory-hero {
    min-height: 670px;
  }

  .observatory-hero-inner {
    width: min(100% - 28px, 1280px);
    min-height: 670px;
    padding: 122px 0 74px;
  }

  .observatory-hero-copy {
    padding-right: 0;
  }

  .observatory-hero h1 {
    font-size: 2.55rem;
  }

  .observatory-hero-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .observatory-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 340px);
  }

  .observatory-hero-actions a {
    width: 100%;
  }

  .observatory-motif {
    display: none;
  }

  .observatory-anchor-nav {
    position: relative;
    top: auto;
    justify-content: stretch;
    margin-top: 0;
  }

  .observatory-anchor-nav a {
    flex: 1 1 100%;
  }

  .observatory-news,
  .observatory-events {
    padding-top: 84px;
  }

  .observatory-section-heading h2,
  .observatory-watch h2 {
    font-size: 2.45rem;
  }

  .observatory-news-card,
  .observatory-axis {
    grid-template-columns: 1fr;
  }

  .observatory-news-card > img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .observatory-axis > img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .observatory-watch {
    padding: 72px 0;
  }

  .observatory-event-body {
    padding: 22px;
  }

  .observatory-event-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .event-primary-action,
  .event-secondary-action {
    width: 100%;
  }

  .observatory-final-cta {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 58px;
  }

  .observatory-final-actions {
    justify-items: start;
  }

  .observatory-final-cta h2 {
    font-size: 2.1rem;
  }
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--sdesj-blue);
}

.footer-bg {
  position: absolute;
  inset: 0;
}

.footer-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(12, 31, 99, 0.98), rgba(12, 31, 99, 0.9) 48%, rgba(0, 189, 233, 0.74));
}

.footer-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(560px, 1.1fr);
  grid-template-areas:
    "brand nav"
    "brand secondary";
  gap: 28px;
  align-items: start;
  width: min(1440px, calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0 44px;
}

.footer-brand,
.footer-nav,
.footer-card {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.footer-secondary {
  grid-area: secondary;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  align-items: stretch;
  gap: 24px;
}

.footer-brand {
  grid-area: brand;
  padding: 34px;
}

.footer-brand img {
  width: 190px;
  margin-bottom: 30px;
  padding: 8px 12px;
  background: #fff;
  border-radius: 7px;
  box-shadow: 0 8px 24px rgba(5, 22, 64, 0.2);
  filter: none;
}

.footer-brand h2,
.footer-brand p {
  margin: 0 0 16px;
}

.footer-brand h2 {
  font-size: 1.6rem;
  line-height: 1.18;
}

.footer-brand p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

.footer-nav {
  grid-area: nav;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 58px;
  align-items: center;
  min-height: 188px;
  padding: 34px 46px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.25;
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.footer-nav a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-contact {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 22px;
  padding: 28px 28px 26px;
  font-style: normal;
}

.footer-contact h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--sdesj-yellow);
  font-size: 1.35rem;
  line-height: 1.2;
}

.footer-contact-list {
  display: grid;
  gap: 18px;
}

.footer-contact-row {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.footer-contact-row small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  font-weight: 700;
}

.footer-contact a {
  color: #fff;
}

.footer-contact-icon,
.footer-line-icon {
  display: inline-grid;
  place-items: center;
  color: var(--sdesj-green);
}

.footer-contact-icon {
  color: var(--sdesj-yellow);
}

.footer-contact-icon svg,
.footer-line-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.footer-map {
  width: 100%;
  height: 210px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  border: 0;
  border-radius: 8px;
}

.footer-socials {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 22px;
  padding: 28px;
}

.footer-socials strong {
  color: var(--sdesj-yellow);
  font-size: 1.35rem;
  line-height: 1.2;
}

.footer-socials-list {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-socials-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.footer-socials-list a svg {
  flex: none;
  width: 20px;
  height: 20px;
}

.footer-socials-list a:hover {
  color: var(--sdesj-blue-dark, #0c1f63);
  background: #fff;
  border-color: #fff;
  transform: translateX(4px);
}

.footer-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.76);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.88rem;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

.js-reveal-ready .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal,
.js-reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .mission-feature-inner {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .mission-feature-media {
    justify-self: start;
    width: min(100%, 620px);
  }

  .mission-feature-actions {
    grid-template-columns: max-content max-content max-content;
  }

  .event-card {
    flex-basis: calc((100% - 24px) / 2);
  }

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

  .footer-inner {
    grid-template-columns: minmax(260px, 0.75fr) minmax(460px, 1.1fr);
  }

  .footer-nav {
    gap: 26px 34px;
    padding: 30px 34px;
  }

  .footer-secondary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 60px;
  }

  /* "Espace membre" is dropped on mobile to save space, but the Observatoire
     CTA (.header-pill-primary) stays — shown compact, icon+label. */
  .header-pill:not(.header-pill-primary) {
    display: none;
  }

  .header-pill-primary {
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .header-inner {
    width: min(100% - 24px, 1280px);
  }

  .hero-content {
    justify-content: center;
    text-align: center;
  }

  .hero .eyebrow {
    justify-content: center;
  }

  .hero h1 {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 3rem;
  }

  .hero-copy {
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    justify-content: center;
    width: min(340px, 100%);
    margin: 0 auto;
  }

  .hero-actions a {
    width: 100%;
  }

  .hero-arrow {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 22px;
  }

  .stats-grid div:nth-child(3n+1) {
    padding-left: 0;
    border-left: 0;
  }

  .section.mission-feature {
    padding: 78px 0;
  }

  .split-layout,
  .mission-feature-inner,
  .program-grid,
  .news-layout,
  .involvement-layout,
  .sommet-cta {
    grid-template-columns: 1fr;
  }

  /* Mobile: the bento mosaic flattens into a simple stacked card list —
     white cards, image on top (16:9), text below. Colors switch back to the
     standard blue-on-white card palette; when a tile has no image the
     white background keeps the text readable either way. */
  .news-layout {
    grid-auto-rows: auto;
  }

  .featured-news,
  .news-list article,
  .news-list article:nth-child(3n+1) {
    grid-column: span 1;
    grid-row: span 1;
    background: #fff;
    border: 1px solid rgba(12, 31, 99, 0.08);
    box-shadow: 0 16px 40px rgba(12, 31, 99, 0.08);
  }

  .featured-news img,
  .news-list img {
    position: static;
    aspect-ratio: 16 / 9;
  }

  .featured-news div,
  .news-list div {
    position: static;
    height: auto;
    padding: 20px 22px 22px;
    justify-content: flex-start;
    background: none;
  }

  .featured-news h3,
  .news-list h3,
  .featured-news a,
  .news-list a {
    color: var(--sdesj-blue);
  }

  .featured-news p,
  .news-list p,
  .featured-news .meta,
  .news-list .meta {
    color: var(--muted);
  }

  .mission-feature-media {
    justify-self: start;
    width: min(100%, 620px);
  }

  .mission-feature .mission-feature-copy h2 {
    font-size: 2.75rem;
  }

  .subpage-hero {
    min-height: 560px;
  }

  .subpage-hero h1 {
    font-size: 3.3rem;
  }

  .subpage-hero p:not(.eyebrow) {
    font-size: 1.08rem;
  }

  .sommet-lead {
    padding-left: 18px;
  }

  .declaration-panel {
    grid-template-columns: 1fr;
  }

  .declaration-kicker strong {
    max-width: none;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "nav"
      "secondary";
  }

  .footer-secondary {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
  }

  .section {
    padding: 64px 0;
  }

  .section h2 {
    font-size: 2.25rem;
  }

  .event-card {
    flex-basis: 100%;
  }

  .slider-arrow {
    display: none;
  }

  .footer-map {
    height: 180px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .accessibility-inner {
    justify-content: center;
    width: calc(100% - 12px);
    gap: 4px;
  }

  .top-socials {
    gap: 3px;
  }

  .top-socials a {
    width: 23px;
    height: 23px;
  }

  .language-control select {
    padding-inline: 6px;
    font-size: 0.78rem;
  }

  .menu-trigger span:last-child {
    display: none;
  }

  .brand img {
    width: 90px;
  }

  .hero-content {
    width: min(100% - 28px, 920px);
    padding-top: 112px;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .section.mission-feature {
    padding: 64px 0;
  }

  .mission-feature .mission-feature-copy h2 {
    font-size: 2.35rem;
  }

  .mission-feature-actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mission-feature-button {
    width: 100%;
    min-height: 48px;
  }

  .subpage-hero-content {
    width: min(100% - 28px, 980px);
    padding-top: 124px;
  }

  .subpage-hero h1 {
    font-size: 2.65rem;
  }

  .sommet-anchor-nav {
    position: relative;
    top: auto;
    justify-content: stretch;
    margin-top: 0;
  }

  .sommet-anchor-nav a {
    flex: 1 1 100%;
    text-align: center;
  }

  .declaration-kicker,
  .declaration-body {
    padding: 24px;
  }

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

  .mandate-heading {
    margin-bottom: 36px;
  }

  .mandate-card {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 16px;
    min-height: 0;
    padding: 24px;
  }

  .mandate-icon {
    width: 32px;
    height: 32px;
  }

  .hero-dots {
    top: 100px;
  }

  .stats-band {
    margin-top: 0;
    padding-top: 18px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }

  .stats-grid div:nth-child(3n+1) {
    padding-left: 22px;
    border-left: 1px solid rgba(12, 31, 99, 0.1);
  }

  .stats-grid div:nth-child(2n+1) {
    padding-left: 0;
    border-left: 0;
  }

  .stats-card {
    padding: 28px 24px;
  }

  .program-card-body,
  .featured-news div,
  .news-list div,
  .event-card div {
    padding: 20px;
  }

  .footer-brand,
  .footer-nav,
  .footer-card {
    padding: 24px;
  }

  .footer-brand img {
    width: 150px;
  }

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

  .involvement-layout {
    padding: 24px;
  }

  .involvement-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

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

/* Sommet Jeunes Afro: Rapports annuels */
.reports-main {
  overflow: hidden;
  background: #fff;
}

.reports-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 640px;
  overflow: hidden;
  color: #fff;
  background: var(--sdesj-blue);
}

.reports-hero > img,
.reports-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.reports-hero > img {
  object-fit: cover;
  object-position: center 38%;
}

.reports-hero-overlay {
  background:
    linear-gradient(95deg, rgba(7, 21, 66, 0.97) 0%, rgba(12, 31, 99, 0.86) 46%, rgba(12, 31, 99, 0.32) 82%, rgba(0, 189, 233, 0.14) 100%);
}

.reports-hero-content {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: 160px 0 80px;
}

.reports-hero-content h1 {
  max-width: 780px;
  margin: 0 0 20px;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.reports-hero-content > p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  line-height: 1.65;
}

.reports-button {
  gap: 10px;
}

.reports-button span,
.report-card-link span {
  font-size: 1.1em;
  transition: transform 0.25s ease;
}

.reports-button:hover span,
.report-card-link:hover span {
  transform: translate(2px, -2px);
}

.reports-intro {
  background: #fff;
}

.reports-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 90px;
  align-items: start;
}

.reports-page .eyebrow:not(.light) {
  color: var(--sdesj-blue);
}

.reports-intro-layout h2 {
  max-width: 620px;
}

.reports-intro-copy {
  padding-left: 28px;
  border-left: 3px solid var(--sdesj-light-blue);
}

.reports-intro-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.reports-intro-copy p:last-child {
  margin-bottom: 0;
}

/* ── Rapport mis en avant — carte "produit" moderne ──────────── */
.reports-featured-section {
  background: var(--soft);
}

.reports-featured {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(380px, 1fr);
  gap: 56px;
  align-items: center;
}

.reports-featured-media {
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border-radius: 20px;
  box-shadow:
    0 1px 2px rgba(12, 31, 99, 0.05),
    0 30px 60px rgba(12, 31, 99, 0.16);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s ease;
}

.reports-featured-media::after {
  content: "PDF";
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 11px;
  color: #fff;
  background: var(--sdesj-red);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.reports-featured:hover .reports-featured-media {
  transform: translateY(-6px);
  box-shadow:
    0 2px 4px rgba(12, 31, 99, 0.06),
    0 40px 70px rgba(12, 31, 99, 0.22);
}

.reports-featured-media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
}

.reports-year {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 5px 12px;
  color: var(--sdesj-blue);
  background: color-mix(in srgb, var(--sdesj-blue) 10%, white);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.reports-featured-content h2 {
  margin-bottom: 16px;
  color: var(--sdesj-blue);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.01em;
}

.reports-featured-content > p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.65;
}

.reports-highlights {
  display: grid;
  gap: 12px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.reports-highlights li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #303a4a;
  font-weight: 600;
  font-size: 0.96rem;
}

.reports-highlights li::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background:
    color-mix(in srgb, var(--sdesj-green) 16%, white)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2318794e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 11px no-repeat;
  border-radius: 50%;
}

/* ── Boutons avec vraies icônes SVG ───────────────────────────── */
.reports-button,
.report-card-link {
  position: relative;
}

.reports-icon,
.report-card-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Archives — grille de cartes "React component" ────────────── */
.reports-archive-section {
  background: #fff;
}

.reports-archive-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 72px;
  align-items: end;
  max-width: none;
  margin: 0 0 44px;
  text-align: left;
}

.reports-archive-heading > p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.reports-archive-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.report-card {
  --report-accent: var(--sdesj-blue);
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(12, 31, 99, 0.08);
  border-radius: 18px;
  box-shadow:
    0 1px 2px rgba(12, 31, 99, 0.04),
    0 12px 30px rgba(12, 31, 99, 0.07);
  transition: box-shadow 0.35s cubic-bezier(.2,.8,.2,1), transform 0.35s cubic-bezier(.2,.8,.2,1), border-color 0.3s ease;
}

.report-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  height: 4px;
  background: linear-gradient(90deg, var(--report-accent), color-mix(in srgb, var(--report-accent) 40%, transparent));
  border-radius: 18px 18px 0 0;
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: left;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.report-card:nth-child(2) {
  --report-accent: var(--sdesj-light-blue);
}

.report-card:nth-child(3) {
  --report-accent: var(--sdesj-green);
}

.report-card:nth-child(4) {
  --report-accent: var(--sdesj-red);
}

.report-card:hover {
  border-color: color-mix(in srgb, var(--report-accent) 30%, transparent);
  box-shadow:
    0 2px 4px rgba(12, 31, 99, 0.05),
    0 24px 48px rgba(12, 31, 99, 0.14);
  transform: translateY(-6px);
}

.report-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.report-card-media {
  position: relative;
  display: block;
  aspect-ratio: 3 / 3.6;
  overflow: hidden;
  background: #eef3f9;
}

.report-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(12, 31, 99, 0.18) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.report-card:hover .report-card-media::after {
  opacity: 1;
}

.report-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
}

.report-card:hover .report-card-media img {
  transform: scale(1.045);
}

.report-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 20px 20px;
}

.report-card-content h3 {
  margin: 0 0 8px;
  color: var(--sdesj-blue);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.report-card-content p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.report-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 8px 14px;
  color: var(--report-accent);
  background: color-mix(in srgb, var(--report-accent) 9%, white);
  border: 1px solid color-mix(in srgb, var(--report-accent) 22%, transparent);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.report-card-link:hover {
  color: #fff;
  background: var(--report-accent);
  border-color: var(--report-accent);
}

/* ── Citation ──────────────────────────────────────────────────── */
.reports-quote-section {
  position: relative;
  padding: 84px 0;
  color: #fff;
  background: linear-gradient(112deg, var(--sdesj-blue) 0%, #123a87 62%, #087ea5 100%);
  overflow: hidden;
}

.reports-quote-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(520px 400px at 6% 20%, rgba(255, 255, 255, 0.08), transparent 60%),
    radial-gradient(460px 360px at 94% 84%, rgba(0, 189, 233, 0.16), transparent 60%);
  pointer-events: none;
}

.reports-quote {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 80px minmax(0, 980px);
  gap: 28px;
  align-items: start;
  justify-content: center;
}

.reports-quote-mark {
  color: var(--sdesj-yellow);
  font-size: 5.5rem;
  line-height: 0.7;
  font-weight: 800;
}

.reports-quote blockquote {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ── CTA ───────────────────────────────────────────────────────── */
.reports-cta-section {
  color: #fff;
  background: linear-gradient(108deg, #101f5e, var(--sdesj-blue) 60%, #0b86ae);
}

.reports-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 52px;
  align-items: center;
}

.reports-cta h2 {
  max-width: 720px;
  color: #fff;
}

.reports-cta p:not(.eyebrow) {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.06rem;
  line-height: 1.7;
}

@media (max-width: 1200px) {
  .reports-archive-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 1050px) {
  .reports-hero {
    min-height: 590px;
  }

  .reports-intro-layout,
  .reports-featured {
    gap: 44px;
  }

  .reports-featured {
    grid-template-columns: minmax(0, 0.5fr) minmax(0, 1fr);
  }

  .reports-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 780px) {
  .reports-hero {
    min-height: 560px;
  }

  .reports-hero > img {
    object-position: 63% center;
  }

  .reports-hero-overlay {
    background: rgba(7, 21, 66, 0.82);
  }

  .reports-hero-content {
    padding: 140px 0 64px;
  }

  .reports-intro-layout,
  .reports-featured,
  .reports-archive-heading,
  .reports-cta {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .reports-intro-copy {
    padding-left: 20px;
  }

  .reports-featured-media {
    max-width: 320px;
  }

  .reports-archive-heading {
    align-items: start;
  }

  .reports-quote {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 16px;
  }

  .reports-quote-mark {
    font-size: 4rem;
  }

  .reports-quote blockquote {
    font-size: 1.4rem;
  }
}

@media (max-width: 560px) {
  .reports-hero-content {
    width: min(100% - 28px, 1280px);
    padding-top: 128px;
  }

  .reports-hero-content h1 {
    font-size: 2.4rem;
  }

  .reports-hero-content > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .reports-hero .hero-actions {
    align-items: stretch;
    width: 100%;
  }

  .reports-hero .hero-actions a {
    width: 100%;
  }

  .reports-archive-grid {
    grid-template-columns: 1fr !important;
  }

  .reports-quote-section {
    padding: 60px 0;
  }

  .reports-quote {
    grid-template-columns: 1fr;
  }

  .reports-quote-mark {
    height: 34px;
    font-size: 3.6rem;
  }

  .reports-quote blockquote {
    font-size: 1.28rem;
  }

  .reports-cta .involvement-actions {
    width: 100%;
  }
}

/**
 * SDJ Job cards (.sdj-job-card) — used on the carrière page widget and
 * in the [sdj_jobs] shortcode output.
 */
.sdj-job-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid rgba(12, 31, 99, 0.08);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(12, 31, 99, 0.04);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.sdj-job-card:hover {
  background: #fafbff;
  box-shadow: 0 6px 24px rgba(12, 31, 99, 0.1);
}

.sdj-job-card.is-closed {
  opacity: 0.65;
}

.sdj-job-card-body {
  flex: 1;
  min-width: 0;
  display: grid;
  gap: 8px;
}

.sdj-job-org {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sdj-job-card-body h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--ink);
}

.sdj-job-card-body h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.sdj-job-card-body h3 a:hover {
  color: var(--sdesj-blue);
}

.sdj-job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.sdj-job-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  background: rgba(12, 31, 99, 0.05);
  border-radius: 20px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.sdj-job-tag svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.sdj-job-tag.deadline { color: #c05418; background: rgba(192, 84, 24, 0.08); }
.sdj-job-tag.closed   { color: #fff; background: var(--muted); }
.sdj-job-tag.stage-type { color: var(--sdesj-green); background: rgba(54, 180, 72, 0.1); }
.sdj-job-tag.poste-type { color: var(--sdesj-blue); background: rgba(12, 31, 99, 0.08); }

/* Lien invisible couvrant toute la carte — rend la carte cliquable */
.sdj-job-card-overlay-link {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 0;
}

.sdj-job-card-actions {
  display: flex;
  flex-direction: row;    /* boutons côte à côte */
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.sdj-job-detail-link {
  position: relative;     /* passe au-dessus de l'overlay */
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  background: transparent;
  border: 1px solid rgba(12, 31, 99, 0.18);
  border-radius: 8px;
  color: var(--sdesj-blue);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.22s ease, border-color 0.22s ease;
}

.sdj-job-detail-link:hover {
  background: rgba(12, 31, 99, 0.05);
  border-color: var(--sdesj-blue);
}

.sdj-job-apply-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--sdesj-blue);
  border-radius: 8px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.22s ease;
}

.sdj-job-apply-btn:hover {
  background: #081640;
}

.sdj-job-closed-badge {
  display: inline-flex;
  padding: 8px 14px;
  background: rgba(12, 31, 99, 0.06);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

@media (max-width: 720px) {
  .sdj-job-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .sdj-job-card-actions {
    flex-direction: row;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
  }

  .sdj-job-detail-link,
  .sdj-job-apply-btn {
    flex: 1;
    justify-content: center;
  }
}

/**
 * Single job page (single-sdj_job.php)
 */
.single-job-header {
  background: var(--soft);
}

.single-job-header-inner {
  width: min(900px, calc(100% - 40px));
  padding: calc(var(--header-height) + 64px) 0 40px;
}

/* Single event — categories/tags chips + "add to calendar" buttons */
.single-event-taxonomies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.single-event-tax-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  color: var(--sdesj-blue);
  background: color-mix(in srgb, var(--sdesj-blue) 8%, white);
  border: 1px solid color-mix(in srgb, var(--sdesj-blue) 18%, transparent);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.single-event-tax-chip.is-tag {
  color: #5d687b;
  background: rgba(93, 104, 123, 0.08);
  border-color: rgba(93, 104, 123, 0.2);
}

.single-event-tax-chip:hover {
  color: #fff;
  background: var(--sdesj-blue);
  border-color: var(--sdesj-blue);
}

.single-event-calendar-links {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(12, 31, 99, 0.1);
}

.single-event-calendar-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.single-event-cal-btn {
  width: auto;
  height: auto;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 700;
}

.single-event-cal-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.single-job-meta-top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.single-job-title {
  margin: 0 0 8px;
  font-size: 2.2rem;
  line-height: 1.15;
}

.single-job-org {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.single-job-body {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
  padding: 48px 0 64px;
}

.single-job-content {
  min-width: 0;
}

/* Sidebar */
.single-job-sidebar-card {
  position: sticky;
  top: calc(var(--header-top) + var(--header-height) + 24px);
  padding: 26px;
  background: #fff;
  border: 1px solid rgba(12, 31, 99, 0.08);
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(12, 31, 99, 0.07);
  display: grid;
  gap: 20px;
}

.single-job-sidebar-title {
  margin: 0;
  color: var(--sdesj-blue);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.single-job-details {
  display: grid;
  gap: 14px;
  margin: 0;
}

.single-job-details > div {
  display: grid;
  gap: 3px;
}

.single-job-details dt {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.single-job-details dt svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.single-job-details dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
}

.single-job-apply-btn {
  display: flex;
  justify-content: center;
  padding: 14px 20px;
  background: var(--sdesj-blue);
  border-radius: 10px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.22s ease;
}

.single-job-apply-btn:hover {
  background: #081640;
}

.single-job-apply-hint {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.single-job-apply-hint a {
  color: var(--sdesj-blue);
}

.single-job-closed-notice {
  margin: 0;
  padding: 12px 16px;
  background: rgba(12, 31, 99, 0.05);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.single-job-back-btn {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: color 0.2s ease;
}

.single-job-back-btn:hover {
  color: var(--sdesj-blue);
}

@media (max-width: 860px) {
  .single-job-body {
    grid-template-columns: 1fr;
  }

  .single-job-sidebar-card {
    position: static;
    order: -1;
  }

  .single-job-title {
    font-size: 1.7rem;
  }
}

/**
 * Single success story page (single-sdj_success_story.php)
 */
.single-story-media {
  width: min(1100px, calc(100% - 40px));
  margin: -20px auto 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(12, 31, 99, 0.14);
}

.single-story-media img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.single-story-body {
  width: min(760px, calc(100% - 40px));
  padding: 56px 0 24px;
}

.single-story-body p {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.75;
}

.single-story-body h2,
.single-story-body h3 {
  margin: 36px 0 14px;
  color: var(--sdesj-blue);
}

.single-story-footer {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 12px 0 72px;
  border-top: 1px solid rgba(12, 31, 99, 0.1);
}

.single-story-footer .single-job-back-btn {
  margin-top: 20px;
  text-align: left;
}

.single-story-website {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 18px;
  background: var(--sdesj-blue);
  border-radius: 10px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.22s ease;
}

.single-story-website svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.single-story-website:hover {
  background: #081640;
}

/* Single actualité de l'Observatoire (single-obs_actualite.php) */
.single-actualite-meta-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.single-actualite-date {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.single-actualite-lead {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.55;
}

@media (max-width: 860px) {
  .single-story-media {
    margin-top: -12px;
  }

  .single-story-media img {
    max-height: 320px;
  }
}
