/* ==========================================================================
   PAGE PROGRAMME — Pixel-perfect CSS extracted from Figma
   File: fSrrUtbUjjA0jfmV2tUZrw  •  Page: PAGE MOCKUPS FR
   ========================================================================== */

/* --------------------------------------------------------------------------
   Design tokens (mirror theme.json palette / typography / spacing)
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --page-primary: #005a88;
  --page-primary-dark: #1a4a70;
  --page-accent: #e1b84a;
  --page-text-title: #171616;
  --page-button-base: #1a1a1a;
  --page-bg-white: #ffffff;
  --page-bg-light: #f2f5f7;
  --page-bg-grey: #f5f5f5;
  --page-bg-overlay: #d9d9d9;
  --page-bg-overlay-2: #dfdfdf;
  --page-divider: rgba(122, 122, 122, 0.12);
  --page-text-on-button: rgba(14, 33, 33, 0.8);

  /* Typography */
  --page-font-heading: "Montserrat", sans-serif;
  --page-font-body: "Montserrat", sans-serif;

  /* Spacing */
  --page-section-margin: 135px;     /* horizontal padding */
  --page-section-pad: 112px;        /* vertical padding (most sections) */
  --page-section-pad-lg: 150px;     /* vertical padding (hero / large sections) */
  --page-radius-m: 16px;
  --page-radius-button: 10px;
  --page-radius-pill: 999px;

  /* Layout */
  --page-content-max: 1172px;
  --page-card-w: 570px;
  --page-card-w-narrow: 470px;
  --page-card-w-quarter: 270px;
  --page-card-w-third: 370px;
}

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  background: #f5f5f5;
  width: 100%;
  box-shadow: 0 1px 0 rgba(122,122,122,0.12);
  position: sticky;
  top: 0;
  z-index: 999;
}

.site-header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 36px;
  min-height: 97px;
  gap: 20px;
}

.site-header__mtedd-logo { flex-shrink: 0; }
.site-header__mtedd-img { display: block; width: 220px; height: auto; max-height: 90px; object-fit: contain; }

.site-header__page-logo { flex-shrink: 0; }
.site-header__page-img { display: block; width: 220px; height: auto; max-height: 42px; object-fit: contain; }

.site-header__lang { display: flex; gap: 16px; flex-shrink: 0; }
.site-header__lang-link { font-family: 'Montserrat', sans-serif; font-weight: 500; font-size: 16px; line-height: 26.4px; color: #005a88; text-decoration: none; }
.site-header__lang-link--active { font-weight: 700; }

.site-header__nav { background: white; border-top: 1px solid rgba(122,122,122,0.12); }
.site-header__nav-inner { display: flex; align-items: center; gap: 2px; padding: 14px 36px; max-width: 1442px; margin: 0 auto; }

.site-header__nav-item { position: relative; }
.site-header__nav-link { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 12px; line-height: 20px; color: #002b5b; text-decoration: none; white-space: nowrap; padding: 14px 5px; display: block; position: relative; }
.site-header__nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: #e1b84a; opacity: 0; transition: opacity 0.15s; }
.site-header__nav-link:hover::after { opacity: 1; }
.site-header__nav-home { margin-right: 4px; }
.site-header__nav-arrow { font-size: 8px; margin-left: 2px; }

.site-header__dropdown { display: none; position: absolute; top: 100%; left: 0; background: white; box-shadow: 0 4px 12px rgba(0,0,0,0.1); min-width: 200px; list-style: none; padding: 8px 0; margin: 0; z-index: 200; border-radius: 0 0 8px 8px; }
.site-header__nav-item--has-dropdown:hover .site-header__dropdown { display: block; }
.site-header__dropdown a { display: block; padding: 8px 16px; font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 600; color: #002b5b; text-decoration: none; }
.site-header__dropdown a:hover { background: #f5f5f5; color: #005a88; }

.site-header__search { display: flex; align-items: center; margin-left: auto; border-bottom: 1px solid #38619d; gap: 4px; }
.site-header__search-input { border: none; background: transparent; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 12px; color: rgba(14,33,33,0.8); width: 130px; padding: 8px 4px; outline: none; }
.site-header__search-input::placeholder { color: rgba(14,33,33,0.6); }
.site-header__search-btn { background: transparent; border: none; padding: 4px; cursor: pointer; color: #002b5b; display: flex; align-items: center; }

@media (max-width: 1024px) {
  .site-header__top { padding: 7px 20px; }
  .site-header__mtedd-img { width: 160px; }
  .site-header__page-img { width: 160px; }
  .site-header__nav-inner { padding: 10px 20px; gap: 1px; overflow-x: auto; }
  .site-header__search-input { width: 80px; }
}

@media (max-width: 768px) {
  .site-header__page-logo { display: block; }
  .site-header__page-img { width: 100px; }
  .site-header__lang { display: none; }
  .site-header__nav-inner { flex-wrap: wrap; }
}

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
  background: #ffffff;
  width: 100%;
  padding-top: 40px;
}

.site-footer__inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 60px; max-width: 1380px; margin: 0 auto; padding: 20px 36px 40px; }

.site-footer__logos { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.site-footer__mtedd-logo { display: block; width: 240px; height: auto; max-height: 72px; object-fit: contain; }
.site-footer__page-logo { display: block; width: 200px; height: auto; max-height: 60px; object-fit: contain; }

.site-footer__links { display: flex; flex-direction: column; gap: 6px; min-width: 200px; }
.site-footer__links-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13.5px; color: #1c244b; margin: 0 0 8px; }
.site-footer__link { display: block; font-family: 'Poppins', sans-serif; font-weight: 300; font-size: 12px; line-height: 18px; color: #324a6d; text-decoration: none; }
.site-footer__link:hover { color: #005a88; }
.site-footer__link svg { vertical-align: middle; }
.site-footer__link--home { display: flex; align-items: center; gap: 6px; font-weight: 500; }

.site-footer__social { display: flex; align-items: center; justify-content: center; gap: 20px; padding: 16px 36px; max-width: 1380px; margin: 0 auto; border-top: 1px solid rgba(0,0,0,0.08); }
.site-footer__social-link { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; color: #324a6d; transition: color 0.2s ease; border-radius: 50%; }
.site-footer__social-link:hover { color: #005a88; }

.site-footer__copyright { border-top: 1px solid rgba(0,0,0,0.1); padding: 14px 36px; max-width: 1380px; margin: 0 auto; }
.site-footer__copyright p { font-family: 'Montserrat', sans-serif; font-size: 12px; color: #6b7280; margin: 0; }

@media (max-width: 768px) {
  .site-footer__inner { flex-direction: column; gap: 30px; padding: 20px; }
  .site-footer__logos { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ============================================================
   HERO — PAGE PROGRAMME (replaces old page-hero-programme)
   ============================================================ */
.page-hero-wrapper {
  background: #ffffff;
  padding-bottom: 30px;
  width: 100%;
}

.page-hero-card {
  background: #005a88 !important;
  border-radius: 16px !important;
  min-height: 702px;
  display: flex;
  align-items: flex-start;
  padding: 160px 70px !important;
  max-width: 1380px;
  margin: 0 auto;
}

.page-hero-card .wp-block-post-title {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 800 !important;
  font-size: 48px !important;
  line-height: 56px !important;
  letter-spacing: -0.13px !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  max-width: 639px;
  margin: 0 0 40px 0;
}

.page-hero-card .wp-block-post-excerpt { color: #ffffff; margin-bottom: 8px; }
.page-hero-card .wp-block-post-excerpt__excerpt { font-family: 'Montserrat', sans-serif; font-weight: 500; font-size: 16px; line-height: 1.5; color: #ffffff; margin: 0; }
.page-hero-card .wp-block-post-excerpt__more-link { display: none; }

.page-hero-cta {
  background: #e1b84a !important;
  color: #ffffff !important;
  border-radius: 10px !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  padding: 12px 32px !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

@media (max-width: 1024px) {
  .page-hero-card { padding: 80px 40px !important; min-height: 500px; }
  .page-hero-card .wp-block-post-title { font-size: 36px !important; line-height: 44px !important; }
}

@media (max-width: 768px) {
  .page-hero-card { padding: 60px 24px !important; min-height: 400px; border-radius: 0 !important; }
  .page-hero-card .wp-block-post-title { font-size: 28px !important; line-height: 36px !important; max-width: 100%; }
}

/* --------------------------------------------------------------------------
   Base section frame: every PAGE section sits in this container
   -------------------------------------------------------------------------- */
.page-section {
  background-color: var(--page-bg-white);
  padding: var(--page-section-pad) var(--page-section-margin);
  width: 100%;
  box-sizing: border-box;
}

.page-section--lg-pad {
  padding: var(--page-section-pad-lg) var(--page-section-margin);
}

.page-section--bg-light {
  background-color: var(--page-bg-light);
}

.page-section__inner {
  max-width: var(--page-content-max);
  margin: 0 auto;
  width: 100%;
}

/* --------------------------------------------------------------------------
   Reusable button (Figma "Button — accent")
   -------------------------------------------------------------------------- */
.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background-color: var(--page-accent);
  color: var(--page-bg-white);
  font-family: var(--page-font-heading);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  border-radius: var(--page-radius-button);
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.page-btn:hover,
.page-btn:focus {
  background-color: var(--page-primary);
  color: var(--page-bg-white);
}

.page-btn--small {
  padding: 12px 32px;
  gap: 4px;
}

.page-btn__arrow {
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 1;
}

/* --------------------------------------------------------------------------
   1. HERO PROGRAMME (Figma: Hero 14 / Hero 12 / Hero 13 / Hero 15 / Hero 8)
   Full-width navy block with subtitle, h1, button.
   -------------------------------------------------------------------------- */
.page-hero-programme {
  background-color: var(--page-bg-white);
  padding: 0 31px 30px;
  width: 100%;
  box-sizing: border-box;
}

.page-hero-programme__container {
  position: relative;
  background-color: var(--page-primary);
  border-radius: var(--page-radius-m);
  width: 100%;
  min-height: 702px;
  padding: 160px 70px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  box-sizing: border-box;
}

.page-hero-programme__container--with-image {
  background-color: transparent;
  background-size: cover;
  background-position: center;
}

.page-hero-programme__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--page-radius-m);
  z-index: 0;
  pointer-events: none;
}

.page-hero-programme__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 90, 136, 0.85) 0%,
    rgba(0, 90, 136, 0.55) 60%,
    rgba(0, 90, 136, 0.35) 100%
  );
  border-radius: var(--page-radius-m);
  z-index: 1;
}

.page-hero-programme__inner {
  position: relative;
  z-index: 2;
  max-width: 654px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-hero-programme__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-hero-programme__tag {
  font-family: var(--page-font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: var(--page-bg-white);
  margin: 0;
}

.page-hero-programme__title {
  font-family: var(--page-font-heading);
  font-weight: 800;
  font-size: 48px;
  line-height: 56px;
  letter-spacing: -0.1344px;
  text-transform: uppercase;
  color: var(--page-bg-white);
  margin: 0;
}

.page-hero-programme__cta-row {
  display: flex;
  gap: 16px;
}

/* --------------------------------------------------------------------------
   2. STATS GRID (Figma: Metrics 02 — page-timeline)
   Two rows of three metrics with top divider lines.
   -------------------------------------------------------------------------- */
.page-stats-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
}

.page-stats-grid__row {
  display: flex;
  gap: 30px;
  width: 100%;
  align-items: flex-start;
}

.page-stats-grid__item {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1 1 var(--page-card-w-third);
  min-width: 0;
  max-width: var(--page-card-w-third);
}

.page-stats-grid__divider {
  height: 1px;
  width: 100%;
  background-color: var(--page-button-base);
}

.page-stats-grid__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: var(--page-card-w-quarter);
}

.page-stats-grid__value {
  font-family: var(--page-font-heading);
  font-weight: 700;
  font-size: 100px;
  line-height: 112px;
  letter-spacing: -1px;
  color: var(--page-accent);
  text-transform: uppercase;
  margin: 0;
}

.page-stats-grid__label {
  font-family: var(--page-font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 26.4px;
  color: var(--page-primary);
  margin: 0;
}

/* --------------------------------------------------------------------------
   3. TIMELINE PHASES (Figma: Timeline 03)
   Tag bar with 4 phases + 4 article cards.
   -------------------------------------------------------------------------- */
.page-timeline-phases {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}

.page-timeline-phases__title {
  font-family: var(--page-font-heading);
  font-weight: 800;
  font-size: 36px;
  line-height: 36px;
  text-transform: uppercase;
  color: var(--page-primary);
  margin: 0;
}

.page-timeline-phases__bar {
  position: relative;
  width: 100%;
  display: flex;
  gap: 30px;
  align-items: center;
  height: 28px;
}

.page-timeline-phases__bar::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  background-color: var(--page-button-base);
}

.page-timeline-phases__bar-slot {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
  min-width: 0;
}

.page-timeline-phases__bar-slot--last {
  justify-content: space-between;
}

.page-timeline-phases__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 10px;
  background-color: var(--page-accent);
  border: 1px solid var(--page-primary);
  border-radius: var(--page-radius-pill);
  font-family: var(--page-font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--page-bg-white);
  white-space: nowrap;
  flex-shrink: 0;
}

.page-timeline-phases__articles {
  display: flex;
  gap: 30px;
  width: 100%;
  align-items: flex-start;
}

.page-timeline-phases__article {
  flex: 1 1 var(--page-card-w-quarter);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.page-timeline-phases__media {
  position: relative;
  height: 170px;
  width: 100%;
  border-radius: var(--page-radius-m);
  overflow: hidden;
  background-color: #808080;
}

.page-timeline-phases__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-timeline-phases__article-title {
  font-family: var(--page-font-heading);
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  text-transform: uppercase;
  color: var(--page-primary);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-timeline-phases__media-img--top {
  object-position: center top;
}

.page-timeline-phases__article-text {
  font-family: var(--page-font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 26.4px;
  color: var(--page-primary);
  margin: 0;
}

/* --------------------------------------------------------------------------
   4. STRATEGIC PILLARS (Figma: Card 01 — page-programme)
   2x2 grid of pillar cards, each with image + text.
   -------------------------------------------------------------------------- */
.page-pillars {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.page-pillars__title {
  max-width: 771px;
  font-family: var(--page-font-heading);
  font-weight: 800;
  font-size: 36px;
  line-height: 36px;
  text-align: center;
  text-transform: uppercase;
  color: var(--page-primary);
  margin: 0;
}

.page-pillars__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
}

.page-pillars__card {
  background-color: var(--page-bg-light);
  border-radius: var(--page-radius-m);
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 32px;
  padding-right: 32px;
  min-height: 262px;
}

.page-pillars__card-media {
  flex: 0 0 220px;
  height: 262px;
  background-color: var(--page-bg-white);
  overflow: hidden;
  position: relative;
}

.page-pillars__card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-pillars__card-text {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--page-primary);
  padding: 24px 0;
  min-width: 0;
}

.page-pillars__card-title {
  font-family: var(--page-font-heading);
  font-weight: 700;
  font-size: 18px;
  line-height: 23.1px;
  text-transform: uppercase;
  margin: 0;
}

.page-pillars__card-body {
  font-family: var(--page-font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 26.4px;
  margin: 0;
}

/* --------------------------------------------------------------------------
   5. GREEN CROSSROADS (Figma: Content 20 + Rich Content 06)
   Title + body text with optional image right.
   -------------------------------------------------------------------------- */
.page-green-crossroads {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}

.page-green-crossroads--with-image {
  display: grid;
  grid-template-columns: 469px 1fr;
  gap: 60px;
  align-items: center;
}

.page-green-crossroads__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 469px;
}

.page-green-crossroads__title {
  font-family: var(--page-font-heading);
  font-weight: 800;
  font-size: 36px;
  line-height: 36px;
  text-transform: uppercase;
  color: var(--page-primary);
  margin: 0;
}

.page-green-crossroads__title--center {
  text-align: center;
  max-width: none;
}

.page-green-crossroads__body {
  font-family: var(--page-font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 26.4px;
  color: var(--page-primary);
}

.page-green-crossroads__body p {
  margin: 0 0 26.4px 0;
}

.page-green-crossroads__body p:last-child {
  margin-bottom: 0;
}

.page-green-crossroads__body strong {
  font-weight: 700;
}

.page-green-crossroads__image {
  width: 620px;
  height: 580px;
  border-radius: var(--page-radius-m);
  overflow: hidden;
  position: relative;
}

.page-green-crossroads__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-green-crossroads__intro {
  font-family: var(--page-font-body);
  font-weight: 500;
  font-size: 20px;
  line-height: 36px;
  color: var(--page-primary);
  text-align: center;
  max-width: var(--page-content-max);
  margin: 0 auto;
}

.page-green-crossroads__intro p {
  margin: 0 0 36px 0;
}

.page-green-crossroads__intro p:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   6. STAKEHOLDERS GRID (Figma: Icon 01)
   Header + 1 large card on left + 4 small cards on right.
   -------------------------------------------------------------------------- */
.page-stakeholders {
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: center;
  width: 100%;
}

.page-stakeholders__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  width: 100%;
}

.page-stakeholders__title {
  max-width: 771px;
  font-family: var(--page-font-heading);
  font-weight: 800;
  font-size: 36px;
  line-height: 36px;
  text-align: center;
  text-transform: uppercase;
  color: var(--page-primary);
  margin: 0;
}

.page-stakeholders__layout {
  display: grid;
  grid-template-columns: 570px 570px;
  gap: 30px;
  width: 100%;
  justify-content: center;
}

.page-stakeholders__feature {
  border: 1px solid var(--page-button-base);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  height: 100%;
  box-sizing: border-box;
}

.page-stakeholders__feature-image {
  background-color: var(--page-bg-white);
  border-radius: var(--page-radius-m);
  height: 404px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.page-stakeholders__feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-stakeholders__feature-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 379px;
  color: var(--page-primary);
}

.page-stakeholders__feature-title {
  font-family: var(--page-font-heading);
  font-weight: 700;
  font-size: 18px;
  line-height: 23.1px;
  text-transform: uppercase;
  margin: 0;
}

.page-stakeholders__feature-body {
  font-family: var(--page-font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 26.4px;
  margin: 0;
}

.page-stakeholders__cards {
  display: grid;
  grid-template-columns: repeat(2, 270px);
  gap: 30px;
  align-content: center;
}

.page-stakeholders__card {
  border: 1px solid var(--page-button-base);
  padding: 24px;
  height: 324px;
  width: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  overflow: hidden;
}

.page-stakeholders__card-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.page-stakeholders__card-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--page-primary);
}

.page-stakeholders__card-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--page-primary);
}

.page-stakeholders__card-title {
  font-family: var(--page-font-heading);
  font-weight: 700;
  font-size: 18px;
  line-height: 23.1px;
  text-transform: uppercase;
  margin: 0;
}

.page-stakeholders__card-body {
  font-family: var(--page-font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 26.4px;
  margin: 0;
}

/* --------------------------------------------------------------------------
   7. GOVERNANCE TABS (Figma: Tab 5 / Tab 6 + Content 18 / Content 19)
   Tabbed image + description block.
   -------------------------------------------------------------------------- */
.page-governance {
  display: flex;
  flex-direction: column;
  gap: 64px;
  width: 100%;
}

.page-governance__tabs {
  display: flex;
  gap: 24px;
  border-bottom: 1px solid rgba(0, 90, 136, 0.2);
}

.page-governance__tab {
  background: transparent;
  border: 0;
  padding: 12px 24px;
  font-family: var(--page-font-heading);
  font-weight: 700;
  font-size: 18px;
  line-height: 23.1px;
  text-transform: uppercase;
  color: var(--page-primary);
  cursor: pointer;
  border-bottom: 3px solid transparent;
}

.page-governance__tab--active {
  border-bottom-color: var(--page-accent);
}

.page-governance__panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.page-governance__panel-image {
  width: 1063px;
  max-width: 100%;
  height: auto;
  border-radius: var(--page-radius-m);
  overflow: hidden;
}

.page-governance__panel-image img {
  width: 100%;
  height: auto;
  display: block;
}

.page-governance__panel-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: var(--page-primary);
}

.page-governance__panel-title {
  font-family: var(--page-font-heading);
  font-weight: 800;
  font-size: 36px;
  line-height: 36px;
  text-transform: uppercase;
  margin: 0;
}

.page-governance__panel-body {
  font-family: var(--page-font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 26.4px;
  margin: 0;
}

/* --------------------------------------------------------------------------
   8. ACCOMPLISHMENTS CARDS (Figma: Card 01 — page-accomplishments)
   2x2 grid of horizontal image+text cards with outline border.
   -------------------------------------------------------------------------- */
.page-accomplishments {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.page-accomplishments__title {
  max-width: 771px;
  font-family: var(--page-font-heading);
  font-weight: 800;
  font-size: 36px;
  line-height: 36px;
  text-align: center;
  text-transform: uppercase;
  color: var(--page-primary);
  margin: 0;
}

.page-accomplishments__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
}

.page-accomplishments__card {
  border: 1px solid var(--page-button-base);
  display: flex;
  align-items: center;
  gap: 32px;
  padding-right: 32px;
  min-height: 262px;
  overflow: hidden;
  background-color: var(--page-bg-white);
}

.page-accomplishments__card-media {
  flex: 0 0 220px;
  height: 262px;
  background-color: var(--page-bg-white);
  overflow: hidden;
  position: relative;
}

.page-accomplishments__card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-accomplishments__card-text {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--page-primary);
  padding: 24px 0;
  min-width: 0;
}

.page-accomplishments__card-title {
  font-family: var(--page-font-heading);
  font-weight: 700;
  font-size: 18px;
  line-height: 23.1px;
  text-transform: uppercase;
  margin: 0;
}

.page-accomplishments__card-body {
  font-family: var(--page-font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 26.4px;
  margin: 0;
}

/* --------------------------------------------------------------------------
   9. PARTNERSHIP TIMELINE (Figma: Timeline 02)
   Title + button on left, vertical line with 4 highlighted milestones.
   -------------------------------------------------------------------------- */
.page-partnership-timeline {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 158px;
  width: 100%;
  align-items: flex-start;
}

.page-partnership-timeline__intro {
  display: flex;
  flex-direction: column;
  gap: 32px;
  color: var(--page-primary);
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

.page-partnership-timeline__title {
  font-family: var(--page-font-heading);
  font-weight: 800;
  font-size: 36px;
  line-height: 36px;
  text-transform: uppercase;
  margin: 0;
}

.page-partnership-timeline__lead {
  font-family: var(--page-font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 26.4px;
  margin: 0;
}

.page-partnership-timeline__events {
  display: grid;
  grid-template-columns: 20px 1fr;
  column-gap: 22px;
  width: 512px;
  max-width: 100%;
}

.page-partnership-timeline__rail {
  position: relative;
  width: 20px;
}

.page-partnership-timeline__rail::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: var(--page-primary);
}

.page-partnership-timeline__dot {
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--page-accent);
  border: 2px solid var(--page-primary);
}

.page-partnership-timeline__dot--1 { top: 91px; }
.page-partnership-timeline__dot--2 { top: 273px; }
.page-partnership-timeline__dot--3 { top: 457px; }
.page-partnership-timeline__dot--4 { top: 638px; }

.page-partnership-timeline__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 470px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-partnership-timeline__item {
  background-color: var(--page-bg-light);
  border-radius: var(--page-radius-m);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--page-primary);
}

.page-partnership-timeline__item-head {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
}

.page-partnership-timeline__item-year {
  font-family: var(--page-font-heading);
  font-weight: 700;
  font-size: 24px;
  line-height: 23.1px;
  text-transform: uppercase;
  margin: 0;
  flex-shrink: 0;
}

.page-partnership-timeline__item-headline {
  font-family: var(--page-font-heading);
  font-weight: 700;
  font-size: 18px;
  line-height: 23.1px;
  margin: 0;
}

.page-partnership-timeline__item-body {
  font-family: var(--page-font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}

/* --------------------------------------------------------------------------
   10. PUBLICATIONS LIBRARY (Figma: Tab 04)
   Header title + tagline column + image + text blocks.
   -------------------------------------------------------------------------- */
.page-publications {
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.page-publications__title {
  max-width: 890px;
  font-family: var(--page-font-heading);
  font-weight: 800;
  font-size: 36px;
  line-height: 36px;
  text-align: center;
  text-transform: uppercase;
  color: var(--page-primary);
  margin: 0;
}

.page-publications__layout {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 100px;
  width: 100%;
  align-items: flex-start;
}

.page-publications__taglines {
  display: flex;
  flex-direction: column;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-publications__tagline {
  font-family: var(--page-font-heading);
  font-weight: 800;
  font-size: 36px;
  line-height: 36px;
  text-transform: uppercase;
  color: var(--page-primary);
  white-space: nowrap;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
  text-align: left;
}

.page-publications__tagline--muted {
  color: var(--page-text-title);
  font-size: 32px;
  line-height: 40px;
}

.page-publications__main {
  display: flex;
  gap: 48px;
  align-items: center;
  flex: 1 1 0;
  min-width: 0;
}

.page-publications__cover {
  flex: 0 0 382px;
  height: 420px;
  border-radius: var(--page-radius-m);
  overflow: hidden;
  background-color: var(--page-bg-light);
  position: relative;
}

.page-publications__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-publications__details {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.page-publications__detail-title {
  max-width: 367px;
  font-family: var(--page-font-heading);
  font-weight: 800;
  font-size: 36px;
  line-height: 36px;
  text-transform: uppercase;
  color: var(--page-primary);
  margin: 0;
}

.page-publications__detail-body {
  font-family: var(--page-font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 26.4px;
  color: var(--page-primary);
  margin: 0;
}

.page-publications__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-publications__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--page-font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 26.4px;
  color: var(--page-primary);
}

.page-publications__feature-icon {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  color: var(--page-accent);
}

/* --------------------------------------------------------------------------
   Responsive (≤ 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  :root {
    --page-section-margin: 64px;
  }

  .page-green-crossroads--with-image {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .page-green-crossroads__image {
    width: 100%;
    height: auto;
    aspect-ratio: 620 / 580;
  }

  .page-stakeholders__layout {
    grid-template-columns: 1fr;
  }

  .page-stakeholders__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-pillars__grid,
  .page-accomplishments__grid {
    grid-template-columns: 1fr;
  }

  .page-partnership-timeline {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .page-partnership-timeline__intro {
    position: static;
  }

  .page-publications__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --page-section-margin: 24px;
    --page-section-pad: 64px;
    --page-section-pad-lg: 80px;
  }

  .page-hero-programme {
    padding: 0 16px 16px;
  }

  .page-hero-programme__container {
    padding: 80px 32px;
    min-height: 480px;
  }

  .page-hero-programme__title {
    font-size: 32px;
    line-height: 38px;
  }

  .page-stats-grid__row,
  .page-timeline-phases__articles {
    flex-direction: column;
  }

  .page-stats-grid__item {
    max-width: none;
  }

  .page-stats-grid__value {
    font-size: 64px;
    line-height: 72px;
  }

  .page-stakeholders__cards {
    grid-template-columns: 1fr;
  }

  .page-stakeholders__card {
    width: 100%;
    height: auto;
    min-height: 240px;
  }

  .page-pillars__card,
  .page-accomplishments__card {
    flex-direction: column;
    padding-right: 0;
    align-items: stretch;
  }

  .page-pillars__card-media,
  .page-accomplishments__card-media {
    flex: 0 0 auto;
    width: 100%;
    height: 200px;
  }

  .page-pillars__card-text,
  .page-accomplishments__card-text {
    padding: 16px 24px 24px;
  }

  .page-green-crossroads__title,
  .page-pillars__title,
  .page-stakeholders__title,
  .page-accomplishments__title,
  .page-partnership-timeline__title,
  .page-publications__title,
  .page-publications__detail-title,
  .page-publications__tagline,
  .page-timeline-phases__title,
  .page-governance__panel-title {
    font-size: 28px;
    line-height: 32px;
  }

  .page-green-crossroads__intro {
    font-size: 16px;
    line-height: 28px;
  }

  .page-timeline-phases__bar {
    display: none;
  }

  .page-publications__main,
  .page-governance__panel {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .page-publications__cover {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    aspect-ratio: 382 / 420;
  }
}

/* ==========================================================================
   PAGE BUILDS — 11 PAGES PIXEL-PERFECT REBUILD (added 2026-05-11)
   ========================================================================== */

/* --- 2-Column Image/Text Layout --- */
.page-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  width: 100%;
}
.page-2col--reverse > .page-2col__image { order: 2; }
.page-2col--reverse > .page-2col__content { order: 1; }
.page-2col__image {
  border-radius: 16px;
  overflow: hidden;
  height: 470px;
  width: 100%;
}
.page-2col__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-2col__content { display: flex; flex-direction: column; gap: 24px; }
.page-2col__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 1.1;
  text-transform: uppercase;
  color: #005a88;
  margin: 0;
  letter-spacing: -0.5px;
}
.page-2col__body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.65;
  color: #005a88;
}
.page-2col__body p { margin: 0 0 16px; }
.page-2col__body p:last-child { margin-bottom: 0; }
.page-2col__actions { margin-top: 8px; }

/* --- 3-Card Grid --- */
.page-3cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}
.page-3cards__card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,90,136,0.08);
}
.page-3cards--on-light .page-3cards__card { background: #f2f5f7; border: none; }
.page-3cards__card-image { height: 220px; overflow: hidden; }
.page-3cards__card-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-3cards__card-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.page-3cards__card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  color: #005a88;
  margin: 0;
  letter-spacing: -0.2px;
}
.page-3cards__card-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6;
  color: #005a88;
  margin: 0;
}

/* --- 4-Card Grid 2x2 --- */
.page-4cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
}
.page-4cards__card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,90,136,0.08);
}
.page-4cards__card-image { height: 240px; overflow: hidden; }
.page-4cards__card-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-4cards__card-body { padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.page-4cards__card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  color: #005a88;
  margin: 0;
  letter-spacing: -0.3px;
}
.page-4cards__card-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6;
  color: #005a88;
  margin: 0;
}

/* --- Quote/Highlight Section --- */
.page-quote {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}
.page-quote__text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 28px;
  line-height: 1.3;
  text-transform: uppercase;
  color: #005a88;
  letter-spacing: -0.5px;
  margin: 0;
}

/* --- Partner Logos Grid --- */
.page-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.page-logos__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.page-logos__item img {
  width: 120px;
  height: auto;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: all 0.2s ease;
}
.page-logos__item img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* --- Context Timeline (vertical with dots) --- */
.page-context-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 40px;
  max-width: 760px;
  margin: 0 auto;
}
.page-context-timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #005a88;
}
.page-context-timeline__item {
  position: relative;
  padding-bottom: 40px;
  padding-left: 24px;
}
.page-context-timeline__item:last-child { padding-bottom: 0; }
.page-context-timeline__item::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 8px;
  width: 16px;
  height: 16px;
  background: #e1b84a;
  border-radius: 50%;
  border: 3px solid #005a88;
  box-sizing: border-box;
}
.page-context-timeline__year {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: #e1b84a;
  margin: 0 0 8px;
  letter-spacing: -0.3px;
}
.page-context-timeline__text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: #005a88;
  margin: 0;
}

/* --- Actor Cards (page 10) --- */
.page-actors {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  width: 100%;
}
.page-actors__card {
  background: #ffffff;
  border: 1px solid rgba(0,90,136,0.15);
  border-radius: 16px;
  padding: 32px 24px;
  flex: 1 1 200px;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.page-actors__icon {
  width: 48px;
  height: 48px;
  background: #005a88;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 20px;
}
.page-actors__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: #005a88;
  margin: 0;
  letter-spacing: -0.2px;
}
.page-actors__text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
  color: #005a88;
  margin: 0;
}

/* --- Contact Form (page 11) --- */
.page-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 70px;
  width: 100%;
}
.page-contact-persons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.page-contact-person {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(0,90,136,0.1);
}
.page-contact-person__name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #005a88;
  margin: 0 0 4px;
}
.page-contact-person__role {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #005a88;
  margin: 0 0 12px;
  opacity: 0.85;
}
.page-contact-person__email a {
  color: #e1b84a;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
}
.page-contact-person__email a:hover { text-decoration: underline; }
.page-contact-form { display: flex; flex-direction: column; gap: 16px; }
.page-contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.page-contact-form .form-field { display: flex; flex-direction: column; }
.page-contact-form label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #005a88;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.page-contact-form input,
.page-contact-form textarea,
.page-contact-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0,90,136,0.3);
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #005a88;
  background: #ffffff;
  box-sizing: border-box;
}
.page-contact-form textarea { min-height: 140px; resize: vertical; }
.page-contact-form input:focus,
.page-contact-form textarea:focus {
  outline: none;
  border-color: #005a88;
  box-shadow: 0 0 0 3px rgba(0,90,136,0.1);
}
.page-contact-form__submit {
  margin-top: 8px;
  align-self: flex-start;
}
.page-contact-heading { text-align: center; padding-bottom: 32px; }
.page-contact-heading h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 80px;
  line-height: 1;
  color: #005a88;
  margin: 0 0 24px;
  letter-spacing: -2px;
  text-transform: uppercase;
}
.page-contact-heading p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: #005a88;
  max-width: 700px;
  margin: 0 auto;
}

/* --- Section Title Centered --- */
.page-section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 1.1;
  text-transform: uppercase;
  color: #005a88;
  margin: 0 0 48px;
  text-align: center;
  letter-spacing: -0.5px;
}
.page-section-intro {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.65;
  color: #005a88;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
}

/* --- Impact Cards (page 6) --- */
.page-impact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}
.page-impact-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,90,136,0.06);
}
.page-impact-card__image { height: 220px; overflow: hidden; }
.page-impact-card__image img { width: 100%; height: 100%; object-fit: cover; }
.page-impact-card__body { padding: 28px; }
.page-impact-card__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  color: #005a88;
  margin: 0 0 12px;
  letter-spacing: -0.2px;
}
.page-impact-card__text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6;
  color: #005a88;
  margin: 0;
}

/* --- FAQ Accordion --- */
.page-faq {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.page-faq__item {
  border-bottom: 1px solid rgba(0,90,136,0.15);
}
.page-faq__item:first-child { border-top: 1px solid rgba(0,90,136,0.15); }
.page-faq__question {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #005a88;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  list-style: none;
}
.page-faq__question::-webkit-details-marker { display: none; }
.page-faq__question::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: #e1b84a;
  margin-left: 16px;
}
.page-faq__item[open] .page-faq__question::after { content: '\2212'; }
.page-faq__answer {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.65;
  color: #005a88;
  padding: 0 0 20px;
  margin: 0;
}

/* --- Publications --- */
.page-pub-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid rgba(0,90,136,0.15);
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.page-pub-tab {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  color: #005a88;
  padding: 16px 28px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  background: none;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  letter-spacing: 1px;
}
.page-pub-tab.active {
  border-bottom-color: #e1b84a;
  color: #e1b84a;
}
.page-pub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.page-pub-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.2s;
}
.page-pub-card:hover { box-shadow: 0 8px 32px rgba(0,90,136,0.12); }
.page-pub-card__cover {
  height: 240px;
  overflow: hidden;
  position: relative;
  background: #f2f5f7;
}
.page-pub-card__cover img { width: 100%; height: 100%; object-fit: cover; }
.page-pub-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #005a88;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  letter-spacing: 1px;
}
.page-pub-card__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.page-pub-card__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #005a88;
  line-height: 1.4;
  margin: 0;
}
.page-pub-card__download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #e1b84a;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
}
.page-pub-card__download:hover { text-decoration: underline; }

/* --- Hero with background image (page 4 etc) --- */
.page-hero-bg {
  position: relative;
  width: 100%;
  padding: 30px 0;
  background: #ffffff;
}
.page-hero-bg__inner {
  position: relative;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 20px;
}
.page-hero-bg__card {
  position: relative;
  width: 100%;
  min-height: 702px;
  border-radius: 16px;
  overflow: hidden;
  background: #005a88;
  display: flex;
  align-items: center;
  padding: 70px;
  box-sizing: border-box;
}
.page-hero-bg__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-hero-bg__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,90,136,0.85) 0%, rgba(0,90,136,0.55) 60%, rgba(0,90,136,0.3) 100%);
  z-index: 1;
}
.page-hero-bg__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  color: #ffffff;
}
.page-hero-bg__tag {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  margin: 0 0 8px;
  text-transform: none;
}
.page-hero-bg__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 1.167;
  letter-spacing: -0.13px;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 40px;
}

/* --- Big context page heading (page 3) --- */
.page-context-hero {
  padding: 112px 135px;
  background: #ffffff;
  width: 100%;
  box-sizing: border-box;
}
.page-context-hero__inner {
  max-width: 1172px;
  margin: 0 auto;
}
.page-context-hero__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 46px;
  line-height: 1.15;
  text-transform: uppercase;
  color: #005a88;
  margin: 0 0 60px;
  text-align: center;
  letter-spacing: -0.8px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.page-context-hero__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}
.page-context-hero__col p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.65;
  color: #005a88;
  margin: 0;
}
.page-context-hero__image {
  width: 100%;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
}
.page-context-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Full-width diagram image --- */
.page-diagram {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
}
.page-diagram img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Ministry grid (page 8) --- */
.page-ministry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.page-ministry-card {
  background: #ffffff;
  border: 1px solid rgba(0,90,136,0.1);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  min-height: 180px;
  justify-content: center;
}
.page-ministry-card__logo {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-ministry-card__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.page-ministry-card__abbrev {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: #005a88;
  margin: 0;
  letter-spacing: -0.3px;
}
.page-ministry-card__name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: #005a88;
  margin: 0;
}

/* --- Responsive: <= 980px --- */
@media (max-width: 980px) {
  .page-2col,
  .page-3cards,
  .page-4cards,
  .page-impact-cards,
  .page-pub-grid,
  .page-ministry-grid,
  .page-contact-grid,
  .page-context-hero__cols {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .page-2col__image { height: 320px; }
  .page-2col__title,
  .page-section-title { font-size: 28px; }
  .page-contact-heading h1 { font-size: 48px; letter-spacing: -1px; }
  .page-context-hero__title { font-size: 32px; }
  .page-context-hero { padding: 60px 24px; }
  .page-hero-bg__card { padding: 40px 24px; min-height: 480px; }
  .page-hero-bg__title { font-size: 32px; }
  .page-quote__text { font-size: 20px; }
  .page-contact-form .form-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   PAGE 1 — Vision et Mission de PAGE (front page rebuild)
   ========================================================================== */

/* Header green topbar */
.site-header__topbar {
  height: 41px;
  background-color: #62974d;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 36px;
  box-sizing: border-box;
}

.site-header__social {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header__social-link {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.88;
  transition: opacity 0.15s ease;
  text-decoration: none;
}

.site-header__social-link:hover,
.site-header__social-link:focus {
  opacity: 1;
}

.site-header__social-link svg {
  display: block;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   p1-context — Section 2: UN CONTEXTE MONDIAL EN MUTATION
   Image left, text + secondary image right
   -------------------------------------------------------------------------- */
.p1-context {
  padding: 112px 135px;
  background: #ffffff;
  box-sizing: border-box;
  width: 100%;
}

.p1-context__inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  max-width: 1172px;
  margin: 0 auto;
}

.p1-context__left {
  width: 550px;
  flex-shrink: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  border-radius: 16px;
  background: #F0EEE9;
  overflow: hidden;
}

.p1-context__img-main {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  flex: 1;
}

.p1-context__right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.p1-context__title {
  align-self: stretch;
  color: #005A88;
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 36px;
  text-transform: capitalize;
  margin: 0;
}

.p1-context__body {
  align-self: stretch;
  color: #005A88;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26.4px;
  margin: 0;
}

.p1-context__img-sub {
  width: 100%;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   p1-trajectory — Section 3: LA TRAJECTOIRE DU MAROC
   Text left, image right
   -------------------------------------------------------------------------- */
.p1-trajectory {
  padding: 112px 135px;
  background: #f2f5f7;
  box-sizing: border-box;
  width: 100%;
}

.p1-trajectory__inner {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  max-width: 1172px;
  margin: 0 auto;
}

.p1-trajectory__text {
  flex: 0 0 55%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p1-trajectory__text h2 {
  align-self: stretch;
  color: #005A88;
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 36px;
  text-transform: capitalize;
  margin: 0;
}

.p1-trajectory__text p {
  align-self: stretch;
  color: #005A88;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26.4px;
  margin: 0;
}

.p1-trajectory__image {
  flex: 1;
  min-width: 0;
}

.p1-trajectory__image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  display: block;
}

/* --------------------------------------------------------------------------
   p1-pillars — Section 4: 3 icon cards
   -------------------------------------------------------------------------- */
.p1-pillars {
  padding: 112px 135px;
  background: #ffffff;
  box-sizing: border-box;
  width: 100%;
}

.p1-pillars__inner {
  max-width: 1172px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.p1-pillars__title {
  align-self: stretch;
  color: #005A88;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 36px;
  text-transform: capitalize;
  margin: 0;
}

.p1-pillars__grid {
  width: 1170px;
  height: 384px;
  display: flex;
  align-items: center;
  gap: 30px;
  align-self: stretch;
}

.p1-pillars__card {
  width: 370px;
  height: 384px;
  flex-shrink: 0;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  border-radius: 16px;
  background: #F2F5F7;
  box-sizing: border-box;
  overflow: hidden;
}

.p1-pillars__card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  flex-shrink: 0;
}

.p1-pillars__card-icon {
  width: 63px;
  height: 63px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.p1-pillars__card-icon svg {
  width: 63px;
  height: 63px;
  display: block;
}

.p1-pillars__card-badge {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: block;
}

.p1-pillars__card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  color: #005a88;
  margin: 0;
  line-height: 1.2;
}

.p1-pillars__card-body {
  align-self: stretch;
  color: #005A88;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26.4px;
  margin: 0;
}

/* --------------------------------------------------------------------------
   p1-cta-text — Text-only CTA section after 3 cards
   -------------------------------------------------------------------------- */
.p1-cta-text {
  padding: 80px 135px;
  background: #f2f5f7;
  box-sizing: border-box;
  width: 100%;
}

.p1-cta-text__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.p1-cta-text__title {
  align-self: stretch;
  color: #005A88;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 36px;
  text-transform: uppercase;
  margin: 0;
}

.p1-cta-text__subtitle {
  align-self: stretch;
  color: #005A88;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26.4px;
  margin: 0;
}

/* --------------------------------------------------------------------------
   p1-logos — Partners rows (UN agencies + funding partners)
   -------------------------------------------------------------------------- */
.p1-logos {
  padding: 64px 135px;
  box-sizing: border-box;
  width: 100%;
}

.p1-logos--white {
  background: #ffffff;
}

.p1-logos--grey {
  background: #f2f5f7;
}

.p1-logos__inner {
  max-width: 1172px;
  margin: 0 auto;
  text-align: center;
}

.p1-logos__label {
  width: 584px;
  color: #005A88;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 800;
  line-height: 36px;
  text-transform: uppercase;
  margin: 0 auto 64px;
}

.p1-logos__row {
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 24px;
}

/* Financial partners: 7 logos → 7 equal columns */
.p1-logos--grey .p1-logos__row {
  grid-template-columns: repeat(7, 1fr);
}

/* UN partner agencies: 5 logos → 5 equal columns, centered */
.p1-logos--white .p1-logos__row {
  grid-template-columns: repeat(5, 1fr);
}

.p1-logos__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  width: 100%;
}

.p1-logos__row img {
  display: block;
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.p1-logos__row img:hover {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   Responsive breakpoints for p1-* sections
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
  .p1-context,
  .p1-trajectory,
  .p1-pillars,
  .p1-cta-text,
  .p1-logos {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media (max-width: 1024px) {
  .p1-context,
  .p1-trajectory,
  .p1-pillars,
  .p1-cta-text,
  .p1-logos {
    padding-left: 40px;
    padding-right: 40px;
  }

  .p1-context__title,
  .p1-trajectory__text h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .p1-context,
  .p1-trajectory,
  .p1-pillars,
  .p1-cta-text,
  .p1-logos {
    padding: 60px 20px;
  }

  .p1-context__inner,
  .p1-trajectory__inner {
    flex-direction: column;
    gap: 32px;
  }

  .p1-context__left {
    flex: none;
    width: 100%;
  }

  .p1-pillars__grid {
    flex-direction: column;
  }

  .p1-cta-text__title {
    font-size: 22px;
  }

  .p1-logos--grey .p1-logos__row {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .p1-logos--white .p1-logos__row {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .p1-logos__item {
    height: 60px;
  }

  .p1-logos__row img {
    max-height: 60px;
  }
}

/* ==========================================================================
   P1 HERO — Figma nodes 334:965 (Header) + 334:966 (Shape gradient)
   White section with 135px side padding / 60px top-bottom.
   Card: rounded corners, overflow hidden.
   Photo: slightly oversized + offset (Figma exact).
   Gradient overlay: left=blue → right=transparent, top-left 73% × 71% of card.
   ========================================================================== */
.p1-hero {
  background: #ffffff;
  padding: 60px 135px;
  width: 100%;
  box-sizing: border-box;
}

.p1-hero__card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  max-width: 1240px;
  width: 100%;
  height: 561px;
  margin: 0 auto;
}

/* Background photo — object-fit cover fills card cleanly at all sizes */
.p1-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  pointer-events: none;
  display: block;
}

/* Gradient Shape — covers left 905px (73%) × full 561px height of card.
   Direction: -90deg = right→left: transparent on right, #005A88 80% on left.
   589px gradient height exceeds 561px card so full height is covered. */
.p1-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 73%;
  height: 100%;
  background: linear-gradient(
    -90deg,
    rgba(255, 255, 255, 0.00) 0%,
    rgba(0, 90, 136, 0.80) 97.021%
  );
  z-index: 1;
  pointer-events: none;
}

/* Text content positioned at Figma values: 73px from left, 121px from top */
.p1-hero__inner {
  position: relative;
  z-index: 2;
  padding: 121px 0 40px 73px;
  max-width: 529px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.p1-hero__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p1-hero__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 56px;
  letter-spacing: -0.1344px;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
}

.p1-hero__tag {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 26.4px;
  color: #ffffff;
  margin: 0;
}

.p1-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #e1b84a;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  padding: 12px 32px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s ease;
}

.p1-hero__btn:hover,
.p1-hero__btn:focus {
  opacity: 0.88;
  color: #ffffff;
}

/* P9 hero — solid blue card, no image, no overlay */
.p1-hero__card--blue {
  background-color: #005a88;
}

/* P9 hero — card pushed close to all three edges, taller vertically */
.p1-hero--governance {
  padding: 16px 16px 60px;
}
.p1-hero--governance .p1-hero__card {
  width: 100%;
  max-width: 100%;
  height: 720px;
}
.p1-hero--governance .p1-hero__inner {
  padding-left: 160px;
  padding-top: 200px;
}

/* Responsive — scale card down on smaller viewports */
@media (max-width: 1340px) {
  .p1-hero {
    padding: 40px 24px;
  }
  .p1-hero__card {
    width: 100%;
    height: auto;
    min-height: 440px;
  }
}

@media (max-width: 768px) {
  .p1-hero {
    padding: 24px 16px;
  }
  .p1-hero__card {
    border-radius: 12px;
    min-height: 380px;
  }
  .p1-hero__overlay {
    width: 100%;
  }
  .p1-hero__inner {
    padding: 50px 24px 32px;
    max-width: 100%;
  }
  .p1-hero__title {
    font-size: 32px;
    line-height: 40px;
  }
}

/* ==========================================================================
   PAGE 2 — SECTION 2: CONTEXT (p2-context)
   Figma node 334:1309 — white section, image left 641×569, text right 469px
   ========================================================================== */
.p2-context {
  background: #ffffff;
  padding: 112px 135px;
  width: 100%;
  box-sizing: border-box;
}

.p2-context__inner {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 1172px;
  margin: 0 auto;
}

.p2-context__image {
  width: 641px;
  height: 569px;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
}

.p2-context__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.p2-context__text {
  width: 469px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.p2-context__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 36px;
  color: #005A88;
  text-transform: capitalize;
  margin: 0;
}

.p2-context__body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 26.4px;
  color: #005A88;
}

.p2-context__body p {
  margin: 0;
}

.p2-context__body p + p {
  margin-top: 26.4px;
}

/* ==========================================================================
   PAGE 2 — SECTION 3: APPROACH (p2-approach)
   Figma node 334:1310 — white, centered title + CTA, then infographic 1170×600
   ========================================================================== */
.p2-approach {
  background: #F2F5F7;
  padding: 112px 135px;
  width: 100%;
  box-sizing: border-box;
}

.p2-approach__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 1172px;
  margin: 0 auto;
}

.p2-approach__text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 865px;
}

.p2-approach__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 36px;
  color: #005A88;
  text-align: center;
  text-transform: capitalize;
  margin: 0;
}

.p2-approach__action {
  display: flex;
  justify-content: center;
}

/* ==========================================================================
   PAGE 2 — SECTION 3b: DIAGRAM (p2-diagram)
   Infographic only, white background
   ========================================================================== */
.p2-diagram {
  background: #ffffff;
  padding: 112px 135px;
  width: 100%;
  box-sizing: border-box;
}

.p2-diagram__inner {
  max-width: 1172px;
  margin: 0 auto;
}

.p2-diagram__image {
  width: 100%;
  max-width: 1170px;
  border-radius: 16px;
  overflow: hidden;
}

.p2-diagram__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   PAGE 2 — SECTION 4: ALIGNMENT (p2-alignment)
   Figma node 334:1312 — three 370px columns: text+img, img+text, dark card
   ========================================================================== */
.p2-alignment {
  background: #ffffff;
  padding: 112px 135px;
  width: 100%;
  box-sizing: border-box;
}

.p2-alignment__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  max-width: 1172px;
  margin: 0 auto;
}

.p2-alignment__title-block {
  width: 644px;
  text-align: center;
}

.p2-alignment__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 0;
  color: #005A88;
  text-align: center;
  text-transform: capitalize;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p2-alignment__title-line {
  display: block;
  white-space: nowrap;
  line-height: 36px;
}

.p2-alignment__grid {
  display: flex;
  gap: 30px;
  align-items: center;
  width: 100%;
}

.p2-alignment__col {
  width: 370px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Text card (light grey) */
.p2-alignment__text-card {
  height: 264px;
  background: #F2F5F7;
  border-radius: 16px;
  padding: 48px 32px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}

.p2-alignment__card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 23.1px;
  color: #005A88;
  text-transform: capitalize;
  margin: 0;
  width: 231px;
}

.p2-alignment__card-body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 26.4px;
  color: #005A88;
  margin: 0;
}

/* Image wrapper */
.p2-alignment__img-wrapper {
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.p2-alignment__img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Two stacked images (column 2) */
.p2-alignment__img-wrapper--stacked {
  position: relative;
}

.p2-alignment__img-wrapper--stacked .p2-alignment__img-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark blue card (column 3) */
.p2-alignment__col--dark {
  background: #005A88;
  height: 656px;
  border-radius: 16px;
  padding: 48px 32px;
  box-sizing: border-box;
  justify-content: center;
  gap: 24px;
}

.p2-alignment__dark-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 23.1px;
  color: #ffffff;
  text-transform: capitalize;
  margin: 0;
}

.p2-alignment__dark-body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 26.4px;
  color: #ffffff;
}

.p2-alignment__dark-body p {
  margin: 0;
}

.p2-alignment__dark-body p + p {
  margin-top: 24px;
}

/* ==========================================================================
   PAGE 2 — SECTION 5: MOTORS (p2-motors)
   Figma node 334:1311 — 2×2 grid of horizontal cards, image left + text right
   ========================================================================== */
.p2-motors {
  background: #ffffff;
  padding: 112px 135px;
  width: 100%;
  box-sizing: border-box;
}

.p2-motors__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  max-width: 1172px;
  margin: 0 auto;
}

.p2-motors__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 36px;
  color: #005A88;
  text-align: center;
  text-transform: capitalize;
  width: 771px;
  margin: 0;
}

.p2-motors__grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.p2-motors__row {
  display: flex;
  gap: 30px;
}

/* Individual card */
.p2-motors__card {
  width: 570px;
  flex-shrink: 0;
  background: #F2F5F7;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 32px;
  padding-right: 32px;
}

/* Left image panel */
.p2-motors__img-container {
  width: 220px;
  height: 262px;
  flex-shrink: 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.p2-motors__img-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Right text panel */
.p2-motors__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #005A88;
}

.p2-motors__card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 23.1px;
  color: #005A88;
  text-transform: capitalize;
  margin: 0;
}

.p2-motors__card-body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 26.4px;
  color: #005A88;
  margin: 0;
}

/* ==========================================================================
   PAGE 2 — SECTION 6: CTA (p2-cta)
   Figma node 334:1313 — white, narrow centered text + subtitle + gold button
   ========================================================================== */
.p2-cta {
  background: #F2F5F7;
  padding: 60px 135px;
  width: 100%;
  box-sizing: border-box;
}

.p2-cta__inner {
  max-width: 585px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.p2-cta__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  width: 100%;
}

.p2-cta__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 36px;
  color: #005A88;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
}

.p2-cta__subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 26.4px;
  color: #005A88;
  text-align: center;
  margin: 0;
}

.p2-cta__action {
  display: flex;
  justify-content: center;
}

/* ==========================================================================
   PAGE 3 — CONTEXT (p3-context)
   Figma node 334:1525 — white, title 46px, three-column text/image/text
   ========================================================================== */
.p3-context {
  background: #ffffff;
  padding: 112px 135px;
  width: 100%;
  box-sizing: border-box;
}

.p3-context__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  max-width: 1172px;
  margin: 0 auto;
}

.p3-context__title {
  width: 836px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 46px;
  line-height: 56px;
  color: #005A88;
  text-align: center;
  text-transform: capitalize;
  margin: 0;
}

.p3-context__content {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  width: 100%;
}

/* Text columns */
.p3-context__text {
  width: 370px;
  flex-shrink: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 26.4px;
  color: #005A88;
}

.p3-context__text p {
  margin: 0;
}

.p3-context__text p + p {
  margin-top: 26.4px;
}

/* Image frame */
.p3-context__image-frame {
  width: 370px;
  height: 539px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.p3-context__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* ==========================================================================
   PAGE 3 — TIMELINE (p3-timeline)
   Figma node 334:1579 — white bg, left text column + right vertical timeline
   ========================================================================== */
.p3-timeline {
  background: #ffffff;
  padding: 112px 135px;
  width: 100%;
  box-sizing: border-box;
}

.p3-timeline__inner {
  display: flex;
  gap: 158px;
  align-items: flex-start;
  max-width: 1172px;
  margin: 0 auto;
}

/* Left column */
.p3-timeline__left {
  width: 500px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.p3-timeline__left-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p3-timeline__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 36px;
  color: #005A88;
  text-transform: uppercase;
  margin: 0;
}

.p3-timeline__subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 26.4px;
  color: #005A88;
  margin: 0;
}

/* Right column */
.p3-timeline__right {
  flex: 1;
}

/* Cards column — left padding creates space for the line + dots */
.p3-timeline__cards {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 44px; /* 20px track + 24px gap to cards */
}

/* Vertical line spanning all cards — sits in the padding-left track, behind cards */
.p3-timeline__cards::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(15, 44, 36, 0.16);
  z-index: 0;
}

.p3-timeline__card {
  background: #F2F5F7;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p3-timeline__card-header {
  position: relative; /* anchor for the dot */
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Dot — positioned absolutely inside card-header so top:50% = center of year row */
.p3-timeline__dot {
  position: absolute;
  /* center of dot lands on line (x=10 from cards-container):
     cards padding-left(44) + card padding-left(24) = 68px from cards-container
     → dot center must be 68-10=58px left of header left → left edge at -68px */
  left: -68px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #E1B84A;
  z-index: 1; /* above the line */
  flex-shrink: 0;
}

/* Inner mint dot — pearl necklace centre highlight */
.p3-timeline__dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #EAFCED;
}

.p3-timeline__year {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: #62974d;
  flex-shrink: 0;
}

.p3-timeline__card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: #005A88;
}

.p3-timeline__card-body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  margin: 0;
}

/* ==========================================================================
   PAGE 4 — HERO (p4-hero)
   Figma: 1442×830px, flex column, align-items flex-start, gap 10px
   ========================================================================== */
.p4-hero {
  position: relative;
  width: 100%;
  height: 830px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.p4-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.p4-hero__overlay {
  position: absolute;
  inset: 0;
  /* Figma node 334-1850: right transparent → left #005A88 at 80% */
  background: linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, rgba(0, 90, 136, 0.8) 97%);
  z-index: 1;
}

/* Content container (Figma node 334-1852):
   flex-col, align-items flex-start, gap 40px (text→btn), inner text gap 24px */
.p4-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  padding-left: 135px;
  max-width: 855px;
}

.p4-hero__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.p4-hero__title {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 48px;
  line-height: 56px;
  letter-spacing: -0.134px;
  text-transform: capitalize;
  margin: 0;
}

.p4-hero__sub {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 26.4px;
  margin: 0;
}

.p4-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #e1b84a;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  padding: 12px 32px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s ease;
}

.p4-hero__btn:hover,
.p4-hero__btn:focus {
  opacity: 0.88;
  color: #ffffff;
}

.p4-hero__btn svg {
  display: block;
  flex-shrink: 0;
}

/* ==========================================================================
   PAGE 4 — CONTRIBUTIONS (p4-contributions)
   Figma node 334:1791 — white, 2×2 card grid, bordered horizontal cards
   ========================================================================== */
.p4-contributions {
  background: #ffffff;
  padding: 112px 135px;
  width: 100%;
  box-sizing: border-box;
}

.p4-contributions__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  max-width: 1172px;
  margin: 0 auto;
}

/* Header (I.A.a) */
.p4-contributions__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.p4-contributions__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 36px;
  color: #005A88;
  text-transform: uppercase;
  text-align: center;
  width: 771px;
  margin: 0;
}

/* Content (I.A.b) — two rows */
.p4-contributions__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

/* Each row: 2 cards side by side */
.p4-contributions__row {
  display: flex;
  flex-direction: row;
  gap: 30px;
  width: 100%;
}

/* Individual card: 570px, 1px solid border, horizontal layout */
.p4-contributions__card {
  width: 570px;
  flex-shrink: 0;
  border: 1px solid #1A1A1A;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  padding-right: 32px;
  box-sizing: border-box;
}

/* Image container: 220×262px, clips image */
.p4-contributions__card-image {
  width: 220px;
  height: 262px;
  flex-shrink: 0;
  overflow: hidden;
}

.p4-contributions__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Text column */
.p4-contributions__card-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p4-contributions__card-title {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 23.1px;
  color: #005a88;
  text-transform: capitalize;
  margin: 0;
}

.p4-contributions__card-desc {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 26.4px;
  color: #005a88;
  margin: 0;
}

/* ==========================================================================
   PAGE 4 — IMAGE-TEXT SECTIONS (p4-sections)
   Figma node 334-1873 — white, 150px v-pad, 135px h-pad, 200px gap between sections
   ========================================================================== */
.p4-sections {
  background: #ffffff;
  padding: 150px 135px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 200px;
}

/* Each sub-section: image + text, 130px gap, vertically centered */
.p4-sections__section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 130px;
  width: 100%;
  max-width: 1172px;
  margin: 0 auto;
}

/* Reversed layout: text left, image right */
/* Image: 470×650px, border-radius 16px, center-center so subjects stay in frame */
.p4-sections__image-wrap {
  width: 470px;
  height: 650px;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
}

.p4-sections__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.p4-sections:nth-of-type(2) .p4-sections__section:nth-child(1) .p4-sections__image {
  object-position: right center;
}

/* Text column: flex-1, flex-col, 24px gap (title → body-wrap) */
.p4-sections__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.p4-sections__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 36px;
  color: #005A88;
  text-transform: uppercase;
  margin: 0;
}

/* Body wrapper: 40px gap between paragraph and button */
.p4-sections__body-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.p4-sections__body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 26.4px;
  color: #005A88;
  margin: 0;
}

/* CTA button: auto-width (not full-width), gold, white text */
.p4-sections__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #e1b84a;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  align-self: flex-start;
  transition: opacity 0.15s ease;
}

.p4-sections__btn:hover,
.p4-sections__btn:focus {
  opacity: 0.88;
  color: #ffffff;
}

.p4-sections__btn svg {
  display: block;
  flex-shrink: 0;
}

/* ============================================================
   PAGE 4 — CTA SECTION (p4-cta)
   ============================================================ */
.p4-cta {
  background-color: #f2f5f7;
  width: 100%;
  padding: 112px 135px;
  box-sizing: border-box;
}

.p4-cta__inner {
  max-width: 1172px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.p4-cta__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.p4-cta__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 36px;
  text-align: center;
  text-transform: uppercase;
  color: #005a88;
  max-width: 868px;
  margin: 0;
}

.p4-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #e1b84a;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 10px;
  align-self: center;
  transition: opacity 0.15s ease;
}

.p4-cta__btn:hover,
.p4-cta__btn:focus {
  opacity: 0.88;
  color: #ffffff;
}

.p4-cta__btn svg {
  display: block;
  flex-shrink: 0;
}

/* ============================================================
   PAGE 4 — SLIDER (p4-slider)
   ============================================================ */
.p4-slider {
  background-color: #ffffff;
  width: 100%;
  padding: 112px 135px;
  box-sizing: border-box;
}

.p4-slider__inner {
  max-width: 1172px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.p4-slider__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 110px;
}

.p4-slider__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 36px;
  color: #005a88;
  text-transform: uppercase;
  margin: 0;
}

.p4-slider__nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.p4-slider__nav-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  cursor: pointer;
  transition: opacity 0.15s ease;
  flex-shrink: 0;
  padding: 0;
}

.p4-slider__nav-btn--prev {
  background: transparent;
  border: 1px solid #005a88;
}

.p4-slider__nav-btn--next {
  background: #e1b84a;
  border: none;
}

.p4-slider__nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.p4-slider__nav-btn svg {
  display: block;
  flex-shrink: 0;
}

.p4-slider__viewport {
  overflow: hidden;
  width: 100%;
}

.p4-slider__track {
  display: flex;
  gap: 30px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.p4-slider__card {
  width: 370px;
  flex-shrink: 0;
  border: 1px solid #005a88;
  padding: 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.p4-slider__card-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
  border-radius: 16px;
  flex-shrink: 0;
  width: 100%;
}

.p4-slider__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.p4-slider__card-img--top {
  object-position: center top;
}

.p4-slider__card-desc {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
}

.p4-slider__card-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.p4-slider__card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: #005a88;
  margin: 0;
}

.p4-slider__card-body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: #555f6e;
  margin: 0 0 24px;
  margin-top: auto;
}

.p4-slider__card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #005a88;
  align-self: flex-start;
  transition: opacity 0.15s ease;
}

.p4-slider__card-btn:hover,
.p4-slider__card-btn:focus {
  opacity: 0.8;
  color: #005a88;
}

.p4-slider__card-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e1b84a;
  border-radius: 999px;
  padding: 4.5px;
  flex-shrink: 0;
}

.p4-slider__card-btn-icon svg {
  display: block;
  flex-shrink: 0;
}

/* Slider CMS additions */
.p4-slider__card-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8f4f8 0%, #c6dde8 100%);
}
.p4-slider__card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #e1b84a;
  color: #1c244b;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
  pointer-events: none;
}
.p4-slider__card-date {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #6b7280;
  margin: 0;
}
.p4-slider__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 4px;
  flex-wrap: wrap;
}
.p4-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c9d4db;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}
.p4-slider__dot.is-active {
  background: #005a88;
  transform: scale(1.4);
}

/* ============================================================
   PAGE 6 — IMPACTS STRUCTURELS (p6-impacts)
   ============================================================ */
.p6-impacts {
  background-color: #ffffff;
  width: 100%;
  padding: 150px 135px;
  box-sizing: border-box;
}

.p6-impacts__inner {
  max-width: 1172px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.p6-impacts__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 36px;
  color: #005a88;
  text-transform: uppercase;
  margin: 0;
}

.p6-impacts__content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  width: 100%;
}

.p6-impacts__image-wrap {
  width: 740px;
  height: 534px;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  background-color: #ffffff;
}

.p6-impacts__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.p6-impacts__text-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}

.p6-impacts__text {
  display: flex;
  flex-direction: column;
  gap: 26.4px;
  width: 100%;
}

.p6-impacts__body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 26.4px;
  color: #005a88;
  margin: 0;
}

.p6-impacts__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #e1b84a;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 10px;
  align-self: flex-start;
  white-space: nowrap;
  transition: opacity 0.15s ease;
}

.p6-impacts__btn:hover,
.p6-impacts__btn:focus {
  opacity: 0.88;
  color: #ffffff;
}

.p6-impacts__btn svg {
  display: block;
  flex-shrink: 0;
}

/* ============================================================
   PAGE 9 — HERO GOUVERNANCE (p9-hero)
   ============================================================ */
.p9-hero {
  background-color: #005a88;
  width: 100%;
  padding: 160px 70px;
  box-sizing: border-box;
}

.p9-hero__content {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}

.p9-hero__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p9-hero__sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
  margin: 0;
}

.p9-hero__title {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 48px;
  line-height: 56px;
  letter-spacing: -0.1344px;
  color: #ffffff;
  text-transform: uppercase;
  max-width: 639px;
  margin: 0;
}

.p9-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background-color: #e1b84a;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  padding: 12px 32px;
  border-radius: 10px;
  transition: opacity 0.15s ease;
  white-space: nowrap;
}

.p9-hero__btn:hover,
.p9-hero__btn:focus {
  opacity: 0.88;
  color: #ffffff;
}

.p9-hero__btn svg {
  display: block;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   P9 — Section 2: Politique de gouvernance intro
   -------------------------------------------------------------------------- */
.p9-governance-intro {
  background: #ffffff;
  padding: 80px 135px;
}

.p9-governance-intro__inner {
  max-width: 1172px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.p9-governance-intro__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 1;
  color: #005a88;
  text-transform: uppercase;
  margin: 0;
}

.p9-governance-intro__desc {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.p9-governance-intro__body {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.65;
  color: #005a88;
  margin: 0;
  max-width: 860px;
}

.p9-governance-intro__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: center;
  background-color: #e1b84a;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 10px;
  transition: opacity 0.15s ease;
}

.p9-governance-intro__btn:hover,
.p9-governance-intro__btn:focus {
  opacity: 0.88;
  color: #ffffff;
}

.p9-governance-intro__btn svg {
  display: block;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   P10 — Acteurs clés section
   -------------------------------------------------------------------------- */
.p10-actors {
  background: #ffffff;
  padding: 112px 135px;
}

.p10-actors__inner {
  max-width: 1172px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.p10-actors__header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p10-actors__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 36px;
  color: #005a88;
  text-align: center;
  text-transform: uppercase;
  max-width: 771px;
  margin: 0;
}

.p10-actors__content {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

/* Left panel */
.p10-actors__left {
  flex-shrink: 0;
  width: 570px;
  border: 1px solid #202020;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  box-sizing: border-box;
  overflow: hidden;
}

.p10-actors__photo-wrap {
  height: 404px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}

.p10-actors__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.p10-actors__main-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.p10-actors__main-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 23.1px;
  color: #005a88;
  text-transform: capitalize;
  margin: 0;
}

.p10-actors__main-body {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 26.4px;
  color: #005a88;
  margin: 0;
}

/* Right panel */
.p10-actors__right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 32px;
  flex: 1;
}

.p10-actors__row {
  display: flex;
  gap: 30px;
}

.p10-actors__card {
  width: 270px;
  height: 324px;
  flex-shrink: 0;
  border: 1px solid #202020;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  overflow: hidden;
}

.p10-actors__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: block;
  overflow: visible;
}

.p10-actors__card-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p10-actors__card-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 23.1px;
  color: #005a88;
  text-transform: capitalize;
  margin: 0;
}

.p10-actors__card-body {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 26.4px;
  color: #005a88;
  margin: 0;
}

/* --------------------------------------------------------------------------
   P10 — Green Crossroads description text
   -------------------------------------------------------------------------- */
.p10-gc-description {
  background: #ffffff;
  padding: 112px 135px;
}

.p10-gc-description__inner {
  max-width: 1172px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.p10-gc-description__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 36px;
  color: #005a88;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
}

.p10-gc-description__p {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 36px;
  color: #005a88;
  margin: 0;
}

/* --------------------------------------------------------------------------
   P10 — Full-width conference images
   -------------------------------------------------------------------------- */
.p10-gc-image {
  background: #ffffff;
  padding: 0 135px 80px;
}

.p10-gc-image__inner {
  max-width: 1172px;
  margin: 0 auto;
}

.p10-gc-image__figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  height: 600px;
}

.p10-gc-image__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* --------------------------------------------------------------------------
   P10 — Edition sections (2022, 2023…)
   -------------------------------------------------------------------------- */
.p10-edition {
  background: #ffffff;
  padding: 80px 135px;
}

.p10-edition__inner {
  max-width: 1172px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.p10-edition__year {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 36px;
  color: #005a88;
  text-transform: uppercase;
  margin: 0;
}

.p10-edition__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.p10-edition__text p {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 26.4px;
  color: #005a88;
  margin: 0 0 16px;
}

.p10-edition__text p:last-child {
  margin-bottom: 0;
}

.p10-edition__text strong {
  font-weight: 700;
}

.p10-edition__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  background-color: #e1b84a;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 10px;
  transition: opacity 0.15s ease;
}

.p10-edition__btn:hover,
.p10-edition__btn:focus {
  opacity: 0.88;
  color: #ffffff;
}

.p10-edition__btn svg {
  display: block;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   P10 — Green Nexus Week 2025 section
   -------------------------------------------------------------------------- */
.p10-gnw {
  background: #ffffff;
  padding: 150px 135px;
}

.p10-gnw__inner {
  max-width: 1172px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 200px;
}

.p10-gnw__image-wrap {
  width: 100%;
  height: 638px;
  border-radius: 16px;
  overflow: hidden;
  margin: 0;
}

.p10-gnw__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p10-gnw__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.p10-gnw__year {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 36px;
  color: #005a88;
  text-transform: uppercase;
  margin: 0;
}

.p10-gnw__desc {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.p10-gnw__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 26.4px;
  color: #005a88;
}

.p10-gnw__body p {
  margin: 0;
}

.p10-gnw__body ul {
  margin: 0;
  padding-left: 24px;
  list-style: disc;
}

.p10-gnw__body li {
  line-height: 26.4px;
  margin-bottom: 0;
}

.p10-gnw__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #e1b84a;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 10px;
  align-self: flex-start;
}

.p10-gnw__btn:hover,
.p10-gnw__btn:focus {
  opacity: 0.9;
  color: #ffffff;
}

.p10-gnw__btn svg {
  display: block;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   P7 — Spotlight (En Lumière)
   -------------------------------------------------------------------------- */
.p7-spotlight {
  background: #ffffff;
  padding: 150px 135px;
}

.p7-spotlight__inner {
  max-width: 1172px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.p7-spotlight__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: #005a88;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
}

.p7-spotlight__layout {
  display: flex;
  gap: 100px;
  align-items: flex-start;
}

.p7-spotlight__cats {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex-shrink: 0;
}

.p7-spotlight__cat {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 36px;
  color: #005a88;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 0;
  text-transform: uppercase;
  opacity: 0.3;
  transition: opacity 0.2s ease;
}

.p7-spotlight__cat:hover {
  opacity: 0.6;
}

.p7-spotlight__cat.is-active {
  opacity: 1;
}

.p7-spotlight__panels {
  flex: 1;
  min-width: 0;
}

.p7-spotlight__panel {
  display: none;
  gap: 48px;
  align-items: center;
}

.p7-spotlight__panel.is-active {
  display: flex;
}

.p7-spotlight__image {
  width: 382px;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f2f5f7;
}

.p7-spotlight__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p7-spotlight__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.p7-spotlight__pub-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 1.3;
  color: #005a88;
  text-transform: uppercase;
  margin: 0;
}

.p7-spotlight__pub-desc {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 26.4px;
  color: #005a88;
  margin: 0;
}

/* --------------------------------------------------------------------------
   P7 — Publications & Ressources
   -------------------------------------------------------------------------- */
.p7-publications {
  background: #ffffff;
  padding: 112px 135px;
}

.p7-publications__inner {
  max-width: 1172px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.p7-pub-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.p7-pub-header__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: #005a88;
  text-transform: uppercase;
  margin: 0;
}

.p7-pub-header__desc {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.65;
  color: #005a88;
  margin: 0;
  max-width: 860px;
}

.p7-pub-tabs {
  display: flex;
  border-bottom: 2px solid #e0e0e0;
}

.p7-pub-tab {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #005a88;
  padding: 12px 32px;
  cursor: pointer;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.p7-pub-tab.is-active {
  border-bottom-color: #e1b84a;
  color: #e1b84a;
}

.p7-pub-tab:hover {
  color: #e1b84a;
}

.p7-pub-panel {
  display: none;
}

.p7-pub-panel.is-active {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.p7-pub-empty {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #888;
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 0;
}

.p7-pub-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e0e0e0;
  overflow: hidden;
}

.p7-pub-card__thumb {
  height: 200px;
  overflow: hidden;
  background: #f2f5f7;
  flex-shrink: 0;
}

.p7-pub-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p7-pub-card__body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.p7-pub-card__desc {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: #555f6e;
  margin: 0;
}

.p7-pub-card__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: #005a88;
  margin: 0;
}

.p7-pub-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e1b84a;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  align-self: flex-start;
  margin-top: auto;
  transition: opacity 0.15s ease;
}

.p7-pub-card__btn:hover,
.p7-pub-card__btn:focus {
  opacity: 0.88;
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   P8 — Partenaires Institutionnels
   -------------------------------------------------------------------------- */
.p8-agencies {
  background: #ffffff;
  padding: 150px 135px;
}

.p8-agencies__inner {
  max-width: 1172px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.p8-agencies__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 80px;
  line-height: 1;
  color: #005a88;
  letter-spacing: -2px;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}

.p8-agencies__grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.p8-agencies__row {
  display: flex;
  gap: 30px;
}

.p8-agencies__card {
  width: 370px;
  height: 380px;
  border: 1px solid #0d0c0c;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  overflow: hidden;
  flex-shrink: 0;
}

.p8-agencies__card-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  color: #005a88;
  letter-spacing: -0.24px;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}

.p8-agencies__card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 16px 0;
}

.p8-agencies__card-logo img {
  max-width: 180px;
  max-height: 90px;
  object-fit: contain;
  display: block;
}

.p8-agencies__card-desc {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 26.4px;
  color: #005a88;
  text-align: center;
  margin: 0;
}

/* P8 — Partenaires Ministériels (reuses card classes from p8-agencies) */
.p8-ministries {
  background: #ffffff;
  padding: 150px 135px;
}

.p8-ministries__inner {
  max-width: 1172px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.p8-ministries__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 80px;
  line-height: 1;
  color: #005a88;
  letter-spacing: -2px;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}

/* P8 — Autres Partenaires */
.p8-others {
  background: #ffffff;
  padding: 150px 135px;
}

.p8-others__inner {
  max-width: 1172px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.p8-others__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 80px;
  line-height: 1;
  color: #005a88;
  letter-spacing: -2px;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}

.p8-others__grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 24px;
  width: 100%;
}

.p8-others__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border: 1px solid #e0e0e0;
  aspect-ratio: 1;
  box-sizing: border-box;
}

.p8-others__item img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  display: block;
}

/* --------------------------------------------------------------------------
   P9 — Diagram sections (national + international governance)
   -------------------------------------------------------------------------- */
.p9-diagram-section {
  background: #ffffff;
  padding: 60px 135px;
}

.p9-diagram-section--alt {
  background: #ffffff;
}

.p9-diagram-section__inner {
  max-width: 1172px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.p9-diagram-section__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 1;
  color: #005a88;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}

.p9-diagram-section__figure {
  margin: 0;
}

.p9-diagram-section__figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE OVERRIDES (added 2026-05-21 — v2.93.0)
   Covers tablets (≤1024px), mobile (≤768px), and small mobile (≤480px).
   Applies to all 11 pages — header, footer, heroes, sections, grids, forms.
   ========================================================================== */

/* --------------------------------------------------------------------------
   TABLET (≤ 1024px)
   - Reduce horizontal padding from 135px → 48px
   - Reduce vertical padding from 112px / 150px → 64px
   - Force all *__inner containers to width:100% (no fixed max-width clipping)
   - Stack 3-col / 4-col grids → 2 columns
   - Scale "huge" titles (80px, 64px) → 40px
   - Header nav becomes horizontal scroll
   - Hide page logo + lang in header to save space
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {

  /* Section padding */
  .p1-context,
  .p1-trajectory,
  .p1-pillars,
  .p1-cta-text,
  .p1-logos,
  .p2-context,
  .p2-approach,
  .p2-diagram,
  .p2-alignment,
  .p2-motors,
  .p2-cta,
  .p3-context,
  .p3-timeline,
  .p4-contributions,
  .p4-sections,
  .p4-cta,
  .p4-slider,
  .p6-impacts,
  .p9-hero,
  .p9-governance-intro,
  .p9-diagram-section,
  .p10-actors,
  .p10-gc-description,
  .p10-gc-image,
  .p10-edition,
  .p10-gnw,
  .p7-spotlight,
  .p7-publications,
  .p8-agencies,
  .p8-ministries,
  .p8-others,
  .page-context-hero,
  .page-section {
    padding-left: 48px !important;
    padding-right: 48px !important;
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }

  /* Inner containers — collapse fixed max-width that pushed content offscreen */
  .p1-context__inner,
  .p1-trajectory__inner,
  .p1-pillars__inner,
  .p1-cta-text__inner,
  .p1-logos__inner,
  .p2-context__inner,
  .p2-approach__inner,
  .p2-diagram__inner,
  .p2-alignment__inner,
  .p2-motors__inner,
  .p2-cta__inner,
  .p3-context__inner,
  .p3-timeline__inner,
  .p4-contributions__inner,
  .p4-cta__inner,
  .p4-slider__inner,
  .p6-impacts__inner,
  .p9-governance-intro__inner,
  .p9-diagram-section__inner,
  .p10-actors__inner,
  .p10-gc-description__inner,
  .p10-gc-image__inner,
  .p10-edition__inner,
  .p10-gnw__inner,
  .p7-spotlight__inner,
  .p7-publications__inner,
  .p8-agencies__inner,
  .p8-ministries__inner,
  .p8-others__inner,
  .page-context-hero__inner {
    max-width: 100% !important;
    width: 100% !important;
  }

  /* Fixed-width inner blocks → fluid */
  .p2-approach__text-block,
  .p2-alignment__title-block,
  .p2-motors__title,
  .p4-contributions__title,
  .p1-logos__label,
  .p4-cta__title {
    width: 100% !important;
    max-width: 100%;
    box-sizing: border-box;
  }
  .p2-alignment__title-line {
    white-space: normal;
  }

  /* Pillars grid (4 cols → 2 cols) */
  .p1-pillars__grid {
    width: 100% !important;
    height: auto !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .p1-pillars__card {
    width: 100% !important;
    height: auto !important;
    min-height: 320px;
  }

  /* P2 - alignment grid (3 cols → 2 cols, stack dark col) */
  .p2-alignment__grid {
    flex-wrap: wrap;
    gap: 24px;
  }
  .p2-alignment__col {
    width: calc(50% - 12px);
  }
  .p2-alignment__col--dark {
    width: 100%;
    height: auto;
    min-height: 320px;
  }

  /* P2 - motors row (2 col → 1 col on tablet kept, just shrink card) */
  .p2-motors__row {
    flex-wrap: wrap;
    gap: 24px;
  }
  .p2-motors__card {
    width: calc(50% - 12px);
  }

  /* P2 context image/text */
  .p2-context__inner {
    flex-direction: column;
    gap: 32px;
  }
  .p2-context__image,
  .p2-context__text {
    width: 100% !important;
    flex-shrink: 1;
  }
  .p2-context__image {
    height: auto;
    aspect-ratio: 641 / 569;
  }

  /* P3 context cols → stack image to bottom */
  .p3-context__content {
    flex-wrap: wrap;
    gap: 24px;
  }
  .p3-context__text,
  .p3-context__image-frame {
    width: calc(50% - 12px);
    flex-shrink: 1;
  }
  .p3-context__title {
    width: 100%;
    font-size: 32px;
    line-height: 1.2;
  }
  .p3-context__image-frame {
    height: auto;
    aspect-ratio: 370 / 539;
    min-height: 380px;
  }

  /* P3 timeline — collapse 158px gap */
  .p3-timeline__inner {
    flex-direction: column;
    gap: 48px;
  }
  .p3-timeline__left {
    width: 100%;
  }
  .p3-timeline__right {
    width: 100%;
  }

  /* P4 contributions — 2 cards/row → 2 cards still, but fluid */
  .p4-contributions__row {
    gap: 20px;
  }
  .p4-contributions__card {
    width: calc(50% - 10px);
    min-width: 0;
  }

  /* P4 hero — reduce padding-left from 135px */
  .p4-hero {
    height: 600px;
  }
  .p4-hero__content {
    padding-left: 48px;
    padding-right: 48px;
    max-width: 100%;
  }
  .p4-hero__title {
    font-size: 40px;
    line-height: 48px;
  }

  /* P4 sections — image/text side-by-side, just shrink */
  .p4-sections {
    gap: 80px !important;
  }
  .p4-sections__section {
    gap: 48px;
  }
  .p4-sections__image-wrap {
    width: 380px;
    height: 520px;
  }

  /* P6 impacts */
  .p6-impacts__content {
    flex-direction: column;
    gap: 40px;
  }
  .p6-impacts__image-wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 740 / 534;
  }

  /* P7 spotlight — keep row but tighten */
  .p7-spotlight__layout {
    gap: 48px;
  }
  .p7-spotlight__title {
    font-size: 44px;
  }
  .p7-spotlight__cat {
    font-size: 28px;
  }
  .p7-spotlight__image {
    width: 320px;
    height: 360px;
  }

  /* P7 pub panel 3 col → 2 col */
  .p7-pub-panel.is-active {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .p7-pub-header__title {
    font-size: 44px;
  }

  /* P8 agencies row — 3 cards → wrap to 2 */
  .p8-agencies__row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }
  .p8-agencies__card {
    width: calc(50% - 12px);
    min-width: 0;
    height: 360px;
  }
  .p8-agencies__title,
  .p8-ministries__title,
  .p8-others__title {
    font-size: 48px !important;
    letter-spacing: -1px !important;
  }

  /* P8 others — 8 cols → 4 cols */
  .p8-others__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* P9 hero — reduce big padding */
  .p9-hero {
    padding: 80px 48px !important;
  }
  .p9-hero__title {
    font-size: 40px;
    line-height: 48px;
  }

  /* P10 actors — split layout to stack */
  .p10-actors__content {
    flex-direction: column;
    gap: 24px;
  }
  .p10-actors__left {
    width: 100%;
  }
  .p10-actors__row {
    flex-wrap: wrap;
    gap: 24px;
  }
  .p10-actors__card {
    width: calc(50% - 12px);
    min-width: 0;
    height: 300px;
  }

  /* P10 GNW — reduce huge 200px gap */
  .p10-gnw__inner {
    gap: 80px;
  }
  .p10-gnw__image-wrap {
    height: 460px;
  }

  /* P1 hero — fully fluid */
  .p1-hero {
    padding: 40px 24px !important;
  }
  .p1-hero__card {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 480px;
  }
  .p1-hero__inner {
    padding: 80px 32px 48px 48px;
    max-width: 100%;
  }
  .p1-hero__title {
    font-size: 40px;
    line-height: 48px;
  }
  .p1-hero--governance .p1-hero__card {
    height: auto;
    min-height: 560px;
  }
  .p1-hero--governance .p1-hero__inner {
    padding-left: 48px;
    padding-top: 100px;
  }

  /* All section titles (36-48px) at tablet */
  .p1-context__title,
  .p1-trajectory__text h2,
  .p1-pillars__title,
  .p1-cta-text__title,
  .p1-logos__label,
  .p2-context__title,
  .p2-approach__title,
  .p2-alignment__title-line,
  .p2-motors__title,
  .p2-cta__title,
  .p3-timeline__title,
  .p4-contributions__title,
  .p4-sections__title,
  .p4-cta__title,
  .p4-slider__title,
  .p6-impacts__title,
  .p9-governance-intro__title,
  .p9-diagram-section__title,
  .p10-actors__title,
  .p10-gc-description__title,
  .p10-edition__year,
  .p10-gnw__year {
    font-size: 28px !important;
    line-height: 1.2 !important;
  }

  /* P3 context big title 46px → 32 */
  .p3-context__title {
    font-size: 32px !important;
  }

  /* Context-hero pad fix */
  .page-context-hero {
    padding: 64px 48px !important;
  }

  /* Page-hero-bg */
  .page-hero-bg__card {
    padding: 56px 40px;
    min-height: 520px;
  }
  .page-hero-bg__title {
    font-size: 40px;
    line-height: 1.2;
  }

  /* Contact heading big number */
  .page-contact-heading h1 {
    font-size: 56px;
    letter-spacing: -1px;
  }

  /* Generic grids that hadn't been collapsed yet */
  .page-3cards,
  .page-impact-cards,
  .page-pub-grid,
  .page-context-hero__cols,
  .page-ministry-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .page-4cards {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* P1 trajectory text width 55% feels narrow on tablet */
  .p1-trajectory__inner {
    flex-direction: column;
    gap: 32px;
  }
  .p1-trajectory__text,
  .p1-trajectory__image {
    flex: 1 1 auto;
    width: 100%;
  }

  /* Site header */
  .site-header__top {
    padding: 7px 20px;
    gap: 12px;
  }
  .site-header__mtedd-img {
    width: 180px;
    max-height: 72px;
  }
  .site-header__page-img {
    width: 160px;
  }
  .site-header__nav-inner {
    padding: 10px 20px;
    gap: 1px;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .site-header__nav-inner::-webkit-scrollbar { display: none; }
  .site-header__nav-item {
    flex-shrink: 0;
  }
  .site-header__search {
    margin-left: 8px;
  }
  .site-header__search-input { width: 80px; }
}

/* --------------------------------------------------------------------------
   MOBILE (≤ 768px)
   - Horizontal padding 24px, vertical 48px
   - All multi-column layouts → single column
   - Hide search bar, language switcher, page logo
   - Stack header logos
   - Big titles → 28px, medium → 22px
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {

  /* Section padding */
  .p1-context,
  .p1-trajectory,
  .p1-pillars,
  .p1-cta-text,
  .p1-logos,
  .p2-context,
  .p2-approach,
  .p2-diagram,
  .p2-alignment,
  .p2-motors,
  .p2-cta,
  .p3-context,
  .p3-timeline,
  .p4-contributions,
  .p4-sections,
  .p4-cta,
  .p4-slider,
  .p6-impacts,
  .p9-hero,
  .p9-governance-intro,
  .p9-diagram-section,
  .p10-actors,
  .p10-gc-description,
  .p10-gc-image,
  .p10-edition,
  .p10-gnw,
  .p7-spotlight,
  .p7-publications,
  .p8-agencies,
  .p8-ministries,
  .p8-others,
  .page-context-hero,
  .page-section {
    padding-left: 24px !important;
    padding-right: 24px !important;
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  /* P1 pillars 2x2 → 1 col */
  .p1-pillars__grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .p1-pillars__card {
    height: auto !important;
    min-height: 280px;
  }
  .p1-pillars__card-icon,
  .p1-pillars__card-icon svg {
    width: 48px;
    height: 48px;
  }

  /* P2 alignment 2 cols → 1 col */
  .p2-alignment__title-line {
    white-space: normal;
  }
  .p2-alignment__grid {
    flex-direction: column;
    gap: 16px;
  }
  .p2-alignment__col,
  .p2-alignment__col--dark {
    width: 100% !important;
    height: auto;
  }
  .p2-alignment__text-card,
  .p2-alignment__img-wrapper {
    height: auto;
    min-height: 220px;
  }
  .p2-alignment__img-wrapper {
    min-height: 280px;
  }
  .p2-alignment__card-title {
    width: 100%;
  }

  /* P2 motors 2 cols → 1 col, stack image above text */
  .p2-motors__row {
    flex-direction: column;
    gap: 16px;
  }
  .p2-motors__card {
    width: 100% !important;
    flex-direction: column;
    align-items: stretch;
    padding-right: 0;
    gap: 0;
  }
  .p2-motors__img-container {
    width: 100%;
    height: 220px;
  }
  .p2-motors__text {
    padding: 20px 24px 24px;
  }

  /* P3 context columns → stack */
  .p3-context__content {
    flex-direction: column;
    gap: 24px;
  }
  .p3-context__text,
  .p3-context__image-frame {
    width: 100% !important;
  }
  .p3-context__image-frame {
    height: 320px;
    aspect-ratio: auto;
  }
  .p3-context__title {
    font-size: 24px !important;
    line-height: 1.2 !important;
    width: 100%;
  }

  /* P3 timeline — reduce dot offset */
  .p3-timeline__cards {
    padding-left: 32px;
  }
  .p3-timeline__dot {
    left: -56px;
    width: 16px;
    height: 16px;
  }

  /* P4 hero */
  .p4-hero {
    height: auto;
    min-height: 480px;
    padding: 80px 0;
  }
  .p4-hero__content {
    padding-left: 24px;
    padding-right: 24px;
    gap: 28px;
  }
  .p4-hero__title {
    font-size: 28px !important;
    line-height: 1.2;
  }
  .p4-hero__sub {
    font-size: 14px;
  }
  .p4-hero__btn,
  .p1-hero__btn,
  .p9-hero__btn,
  .p6-impacts__btn,
  .p10-gnw__btn,
  .p10-edition__btn,
  .p4-sections__btn,
  .p4-cta__btn,
  .p9-governance-intro__btn {
    padding: 12px 22px;
    font-size: 14px;
  }

  /* P4 contributions — single column */
  .p4-contributions__row {
    flex-direction: column;
    gap: 16px;
  }
  .p4-contributions__card {
    width: 100% !important;
    flex-direction: column;
    align-items: stretch;
    padding-right: 0;
    gap: 0;
  }
  .p4-contributions__card-image {
    width: 100%;
    height: 220px;
  }
  .p4-contributions__card-text {
    padding: 20px 24px 24px;
  }

  /* P4 sections — stack image/text */
  .p4-sections {
    gap: 60px !important;
  }
  .p4-sections__section {
    flex-direction: column;
    gap: 24px;
  }
  /* Force reversed sections to keep image first on mobile */
  .p4-sections__section--reverse {
    flex-direction: column;
  }
  .p4-sections__image-wrap {
    width: 100%;
    height: 380px;
  }

  /* P4 slider — show 1 card */
  .p4-slider__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    min-height: 0;
  }
  .p4-slider__card {
    width: calc(100vw - 80px);
    max-width: 320px;
  }

  /* P6 impacts already stacked at tablet, just shrink */
  .p6-impacts__image-wrap {
    height: 300px;
  }

  /* P7 spotlight — cats go horizontal scroll, layout stacks */
  .p7-spotlight__layout {
    flex-direction: column;
    gap: 32px;
  }
  .p7-spotlight__cats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    overflow-x: auto;
    width: 100%;
  }
  .p7-spotlight__cat {
    font-size: 18px;
    line-height: 1.2;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .p7-spotlight__title {
    font-size: 30px;
    letter-spacing: -0.5px;
  }
  .p7-spotlight__panel.is-active,
  .p7-spotlight__panel {
    flex-direction: column;
    gap: 24px;
  }
  .p7-spotlight__image {
    width: 100%;
    height: 260px;
  }
  .p7-spotlight__pub-title {
    font-size: 20px;
  }

  /* P7 publications */
  .p7-pub-panel.is-active {
    grid-template-columns: 1fr !important;
  }
  .p7-pub-header__title {
    font-size: 30px;
    letter-spacing: -0.5px;
  }
  .p7-pub-header__desc {
    font-size: 15px;
  }
  .p7-pub-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .p7-pub-tab {
    flex-shrink: 0;
    padding: 12px 20px;
  }

  /* P8 agencies */
  .p8-agencies__row {
    flex-direction: column;
    gap: 16px;
  }
  .p8-agencies__card {
    width: 100% !important;
    height: 340px;
  }
  .p8-agencies__title,
  .p8-ministries__title,
  .p8-others__title {
    font-size: 32px !important;
    letter-spacing: -0.5px !important;
    line-height: 1.1 !important;
  }
  .p8-agencies__inner,
  .p8-ministries__inner,
  .p8-others__inner {
    gap: 48px;
  }

  /* P8 ministries grid (reuses agency row) */
  .p8-ministries__inner > .p8-agencies__grid {
    gap: 16px;
  }

  /* P8 others — 8 cols → 3 cols */
  .p8-others__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  /* P9 hero */
  .p9-hero {
    padding: 60px 24px !important;
  }
  .p9-hero__title {
    font-size: 28px;
    line-height: 1.2;
  }
  .p9-hero__content {
    gap: 28px;
  }

  /* P9 diagram section */
  .p9-diagram-section__title {
    font-size: 22px !important;
  }

  /* P10 actors — already stacks at tablet, finalize */
  .p10-actors__left {
    padding: 16px;
    gap: 32px;
  }
  .p10-actors__photo-wrap {
    height: 280px;
  }
  .p10-actors__row {
    flex-direction: column;
    gap: 16px;
  }
  .p10-actors__card {
    width: 100% !important;
    height: 280px;
  }

  /* P10 gc-description text size */
  .p10-gc-description__p {
    font-size: 16px;
    line-height: 1.6;
  }

  /* P10 gc-image */
  .p10-gc-image__figure {
    height: 320px;
  }

  /* P10 gnw — vertical gap shrink */
  .p10-gnw__inner {
    gap: 48px;
  }
  .p10-gnw__image-wrap {
    height: 280px;
  }

  /* P1 hero */
  .p1-hero {
    padding: 24px 16px !important;
  }
  .p1-hero__card {
    border-radius: 12px;
    height: auto !important;
    min-height: 420px;
  }
  .p1-hero__overlay {
    width: 100%;
  }
  .p1-hero__inner {
    padding: 60px 24px 32px;
    max-width: 100%;
  }
  .p1-hero__title {
    font-size: 28px !important;
    line-height: 1.2;
  }
  .p1-hero--governance .p1-hero__inner {
    padding-left: 24px;
    padding-top: 80px;
  }

  /* P1 context — already stacks, finalize */
  .p1-context__inner {
    flex-direction: column;
    gap: 24px;
  }
  .p1-context__left {
    width: 100% !important;
    height: 320px;
  }

  /* P1 logos */
  .p1-logos--grey .p1-logos__row {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .p1-logos--white .p1-logos__row {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .p1-logos__item {
    height: 52px;
  }
  .p1-logos__row img {
    max-height: 52px;
  }

  /* All major section titles → 28px on mobile, 22px for "medium" */
  .p1-context__title,
  .p1-trajectory__text h2,
  .p1-pillars__title,
  .p1-cta-text__title,
  .p1-logos__label,
  .p2-context__title,
  .p2-approach__title,
  .p2-alignment__title-line,
  .p2-motors__title,
  .p2-cta__title,
  .p3-timeline__title,
  .p4-contributions__title,
  .p4-sections__title,
  .p4-cta__title,
  .p4-slider__title,
  .p6-impacts__title,
  .p9-governance-intro__title,
  .p9-diagram-section__title,
  .p10-actors__title,
  .p10-gc-description__title,
  .p10-edition__year,
  .p10-gnw__year {
    font-size: 22px !important;
    line-height: 1.2 !important;
  }

  /* Sub/lead bodies a touch smaller */
  .p1-context__body,
  .p1-trajectory__text p,
  .p1-cta-text__subtitle,
  .p2-context__body,
  .p2-cta__subtitle,
  .p4-contributions__card-desc,
  .p4-sections__body,
  .p6-impacts__body,
  .p10-gc-description__p,
  .p10-gnw__body,
  .p10-actors__main-body,
  .p10-actors__card-body {
    font-size: 15px;
    line-height: 1.6;
  }

  /* Generic grids → 1 col */
  .page-3cards,
  .page-4cards,
  .page-impact-cards,
  .page-pub-grid,
  .page-context-hero__cols,
  .page-ministry-grid,
  .page-contact-grid,
  .page-2col {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .page-2col {
    gap: 32px !important;
  }
  .page-2col__image {
    height: 280px;
  }
  .page-2col__title {
    font-size: 24px;
  }
  .page-contact-form .form-row {
    grid-template-columns: 1fr;
  }
  .page-contact-heading h1 {
    font-size: 36px !important;
    letter-spacing: -0.5px;
  }
  .page-contact-heading p {
    font-size: 15px;
  }
  .page-context-hero {
    padding: 48px 24px !important;
  }
  .page-context-hero__title {
    font-size: 26px !important;
    margin-bottom: 32px !important;
  }
  .page-hero-bg__card {
    padding: 40px 24px !important;
    min-height: 420px;
    border-radius: 12px;
  }
  .page-hero-bg__title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 24px;
  }

  /* Page Hero Programme */
  .page-hero-programme {
    padding: 0 16px 16px;
  }
  .page-hero-programme__container {
    padding: 60px 24px !important;
    min-height: 420px;
  }
  .page-hero-programme__title {
    font-size: 28px !important;
    line-height: 1.2 !important;
  }
  .page-hero-programme__inner {
    gap: 28px;
  }

  /* Page hero card (top-level fallback) */
  .page-hero-card {
    padding: 60px 24px !important;
    min-height: 360px;
  }

  /* Quote */
  .page-quote__text {
    font-size: 18px;
  }
  .page-section-title {
    font-size: 22px !important;
  }
  .page-section-intro {
    font-size: 15px;
  }

  /* P1 trajectory image */
  .p1-trajectory__image img {
    border-radius: 12px;
  }

  /* P1 logos label width fix */
  .p1-logos__label {
    width: 100% !important;
  }

  /* Header — Mobile */
  .site-header__topbar {
    height: 36px;
    padding: 0 16px;
  }
  .site-header__social {
    gap: 12px;
  }
  .site-header__social-link svg {
    width: 16px;
    height: 16px;
  }

  .site-header__top {
    padding: 8px 16px;
    flex-wrap: wrap;
    gap: 8px;
    min-height: auto;
  }
  .site-header__mtedd-img {
    width: 140px;
    max-height: 56px;
  }
  /* Hide lang selector on mobile; keep PAGE logo visible */
  .site-header__lang {
    display: none !important;
  }
  .site-header__page-logo {
    display: block;
  }
  .site-header__page-img {
    width: 100px;
  }

  /* Hide search bar on mobile */
  .site-header__search {
    display: none !important;
  }

  /* Nav inner — keep horizontal scroll, smaller chip-style links */
  .site-header__nav-inner {
    padding: 6px 12px;
    gap: 0;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .site-header__nav-inner::-webkit-scrollbar { display: none; }
  .site-header__nav-item {
    flex-shrink: 0;
  }
  .site-header__nav-link {
    padding: 12px 10px;
    font-size: 12px;
  }
  /* Disable hover dropdowns on touch — they're triggered on hover which is unreliable */
  .site-header__nav-item--has-dropdown:hover .site-header__dropdown {
    display: none;
  }

  /* Site footer — stack everything */
  .site-footer__inner {
    flex-direction: column;
    gap: 24px;
    padding: 16px 20px 32px;
  }
  .site-footer__logos {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .site-footer__mtedd-logo {
    width: 200px;
    max-height: 56px;
  }
  .site-footer__page-logo {
    width: 160px;
  }
  .site-footer__links {
    min-width: 0;
    width: 100%;
  }
  .site-footer__copyright {
    padding: 12px 20px;
  }
  .site-footer__copyright p {
    font-size: 11px;
  }
}

/* --------------------------------------------------------------------------
   SMALL MOBILE (≤ 480px)
   - Final tightening: even smaller padding, tighter type, force every grid to 1col
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {

  /* Section padding tighter */
  .p1-context,
  .p1-trajectory,
  .p1-pillars,
  .p1-cta-text,
  .p1-logos,
  .p2-context,
  .p2-approach,
  .p2-diagram,
  .p2-alignment,
  .p2-motors,
  .p2-cta,
  .p3-context,
  .p3-timeline,
  .p4-contributions,
  .p4-sections,
  .p4-cta,
  .p4-slider,
  .p6-impacts,
  .p9-hero,
  .p9-governance-intro,
  .p9-diagram-section,
  .p10-actors,
  .p10-gc-description,
  .p10-gc-image,
  .p10-edition,
  .p10-gnw,
  .p7-spotlight,
  .p7-publications,
  .p8-agencies,
  .p8-ministries,
  .p8-others,
  .page-context-hero,
  .page-section {
    padding-left: 16px !important;
    padding-right: 16px !important;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  /* Titles even smaller on phones */
  .p7-spotlight__title,
  .p7-pub-header__title,
  .p8-agencies__title,
  .p8-ministries__title,
  .p8-others__title {
    font-size: 26px !important;
    letter-spacing: -0.3px !important;
  }

  /* Most titles to 20px */
  .p1-context__title,
  .p1-trajectory__text h2,
  .p1-pillars__title,
  .p1-cta-text__title,
  .p1-logos__label,
  .p2-context__title,
  .p2-approach__title,
  .p2-alignment__title-line,
  .p2-motors__title,
  .p2-cta__title,
  .p3-timeline__title,
  .p4-contributions__title,
  .p4-sections__title,
  .p4-cta__title,
  .p4-slider__title,
  .p6-impacts__title,
  .p9-governance-intro__title,
  .p9-diagram-section__title,
  .p10-actors__title,
  .p10-gc-description__title,
  .p10-edition__year,
  .p10-gnw__year,
  .page-section-title,
  .page-2col__title,
  .page-context-hero__title {
    font-size: 20px !important;
    line-height: 1.25 !important;
  }

  /* Hero titles */
  .p4-hero__title,
  .p1-hero__title,
  .p9-hero__title,
  .page-hero-bg__title,
  .page-hero-card .wp-block-post-title,
  .page-hero-programme__title {
    font-size: 24px !important;
    line-height: 1.2 !important;
  }

  /* Contact heading */
  .page-contact-heading h1 {
    font-size: 30px !important;
  }

  /* P3 context image height */
  .p3-context__image-frame {
    height: 240px;
  }

  /* P4 sections image height */
  .p4-sections__image-wrap {
    height: 280px;
  }

  /* P7 spotlight image */
  .p7-spotlight__image {
    height: 220px;
  }
  .p7-spotlight__cat {
    font-size: 16px;
  }

  /* P8 others — 8 cols → 2 cols */
  .p8-others__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .p8-others__item img {
    max-height: 64px;
  }

  /* P8 agencies card height */
  .p8-agencies__card {
    height: 300px;
    padding: 20px;
  }
  .p8-agencies__card-name {
    font-size: 20px;
  }

  /* P10 actors card height */
  .p10-actors__card {
    height: 240px;
    padding: 20px;
  }
  .p10-actors__photo-wrap {
    height: 220px;
  }

  /* P10 GNW image */
  .p10-gnw__image-wrap {
    height: 220px;
  }

  /* P1 pillars card */
  .p1-pillars__card {
    min-height: 240px;
    padding: 24px 20px;
  }
  .p1-pillars__card-body {
    font-size: 16px;
  }

  /* P1 hero card */
  .p1-hero__card {
    min-height: 360px;
  }
  .p1-hero__inner {
    padding: 48px 20px 28px;
    gap: 28px;
  }

  /* P4 hero card padding */
  .p4-hero {
    min-height: 420px;
  }
  .p4-hero__content {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Page hero-bg */
  .page-hero-bg__card {
    padding: 32px 20px !important;
    min-height: 360px;
  }
  .page-hero-bg__inner {
    padding: 0 12px;
  }

  /* Page hero programme */
  .page-hero-programme__container {
    padding: 48px 20px !important;
    min-height: 360px;
  }

  /* P2 motors image */
  .p2-motors__img-container {
    height: 180px;
  }

  /* P4 contributions image */
  .p4-contributions__card-image {
    height: 180px;
  }

  /* P2 alignment dark column */
  .p2-alignment__col--dark {
    min-height: 280px;
    padding: 32px 20px;
  }
  .p2-alignment__text-card {
    padding: 32px 20px;
    min-height: 200px;
  }

  /* Buttons — slightly smaller on tiny screens */
  .p4-hero__btn,
  .p1-hero__btn,
  .p9-hero__btn,
  .p6-impacts__btn,
  .p10-gnw__btn,
  .p10-edition__btn,
  .p4-sections__btn,
  .p4-cta__btn,
  .p9-governance-intro__btn,
  .page-hero-cta,
  .page-btn {
    padding: 10px 18px;
    font-size: 13px;
  }

  /* P1 logos */
  .p1-logos--grey .p1-logos__row {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .p1-logos--white .p1-logos__row {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .p1-logos__item {
    height: 44px;
  }
  .p1-logos__row img {
    max-height: 44px;
  }

  /* Body text */
  .p1-context__body,
  .p1-trajectory__text p,
  .p2-context__body,
  .p4-contributions__card-desc,
  .p4-sections__body,
  .p6-impacts__body,
  .p10-actors__main-body,
  .p10-actors__card-body,
  .p10-gnw__body {
    font-size: 14px;
    line-height: 1.6;
  }

  /* P3 timeline tighter */
  .p3-timeline__cards {
    padding-left: 24px;
  }
  .p3-timeline__dot {
    left: -48px;
    width: 14px;
    height: 14px;
  }
  .p3-timeline__year {
    font-size: 20px;
  }
  .p3-timeline__card {
    padding: 18px;
  }

  /* Site header */
  .site-header__mtedd-img {
    width: 120px;
    max-height: 48px;
  }
  .site-header__topbar {
    padding: 0 12px;
  }
  .site-header__social {
    gap: 10px;
  }
  .site-header__nav-link {
    padding: 10px 8px;
    font-size: 10px;
  }

  /* Footer */
  .site-footer__mtedd-logo {
    width: 160px;
    max-height: 48px;
  }
  .site-footer__page-logo {
    width: 140px;
  }
  .site-footer__inner {
    padding: 12px 16px 24px;
  }
}

/* --------------------------------------------------------------------------
   GLOBAL OVERFLOW SAFETY — never let any fixed-width child cause horizontal scroll
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  html, body {
    overflow-x: hidden;
  }
  img, svg, video {
    max-width: 100%;
    height: auto;
  }
}

/* ============================================================
   SEARCH RESULTS PAGE (p-search)
   ============================================================ */
.p-search {
  background: #f2f5f7;
  min-height: 60vh;
  padding: 80px 135px 112px;
  box-sizing: border-box;
}

.p-search__inner {
  max-width: 1172px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

/* Header */
.p-search__header {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.p-search__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: #171616;
  margin: 0;
  line-height: 1.2;
}

.p-search__query {
  color: #005a88;
}

.p-search__count {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  margin: 0;
}

/* Search form on results page */
.p-search__form {
  display: flex;
  align-items: stretch;
  max-width: 640px;
  margin-top: 4px;
  border: 1.5px solid #c1cdd5;
  border-radius: 10px;
  background: #ffffff;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.p-search__form:focus-within {
  border-color: #005a88;
}

.p-search__input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #171616;
  background: transparent;
  -webkit-appearance: none;
}

.p-search__input::placeholder {
  color: #9ca3af;
}

.p-search__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 22px;
  background: #005a88;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.p-search__btn:hover {
  background: #1a4a70;
}

/* Empty / no-results state */
.p-search__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 80px 0;
  text-align: center;
}

.p-search__empty-icon {
  opacity: 0.6;
  margin-bottom: 8px;
}

.p-search__empty-msg {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #324a6d;
  margin: 0;
}

.p-search__empty-hint {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

.p-search__empty-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #005a88;
  text-decoration: none;
  border-bottom: 1.5px solid #005a88;
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
  margin-top: 8px;
}

.p-search__empty-link:hover {
  color: #e1b84a;
  border-color: #e1b84a;
}

/* Section */
.p-search__section {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.p-search__section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #005a88;
  margin: 0;
  padding-bottom: 16px;
  border-bottom: 2px solid #e1b84a;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.p-search__section-count {
  font-weight: 500;
  font-size: 13px;
  color: #6b7280;
  text-transform: none;
  letter-spacing: 0;
}

/* Publication card grid */
.p-search__pub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.p-search__pub-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.p-search__pub-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.14);
  transform: translateY(-3px);
}

.p-search__pub-img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

.p-search__pub-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-search__pub-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8f4f8 0%, #c6dde8 100%);
}

.p-search__pub-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #e1b84a;
  color: #1c244b;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
  pointer-events: none;
}

.p-search__pub-body {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.p-search__pub-year {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #9ca3af;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.p-search__pub-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #171616;
  margin: 0;
  line-height: 1.4;
}

.p-search__pub-excerpt {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.p-search__pub-cta {
  display: inline-block;
  margin-top: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #005a88;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
}

.p-search__pub-cta:hover {
  color: #e1b84a;
}

/* Page list */
.p-search__page-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.p-search__page-item {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.p-search__page-item:hover {
  box-shadow: 0 2px 14px rgba(0,0,0,0.1);
}

.p-search__page-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 28px;
  text-decoration: none;
}

.p-search__page-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.p-search__page-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #171616;
  margin: 0;
  transition: color 0.2s ease;
}

.p-search__page-link:hover .p-search__page-title {
  color: #005a88;
}

.p-search__page-excerpt {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

.p-search__page-arrow {
  font-size: 20px;
  color: #005a88;
  flex-shrink: 0;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.p-search__page-link:hover .p-search__page-arrow {
  transform: translateX(5px);
}

/* Search results responsive */
@media (max-width: 1024px) {
  .p-search {
    padding: 60px 40px 80px;
  }
  .p-search__pub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-search__title {
    font-size: 28px;
  }
}

@media (max-width: 640px) {
  .p-search {
    padding: 40px 20px 60px;
  }
  .p-search__inner {
    gap: 40px;
  }
  .p-search__title {
    font-size: 22px;
  }
  .p-search__pub-grid {
    grid-template-columns: 1fr;
  }
  .p-search__btn {
    font-size: 0;
    padding: 0 18px;
  }
  .p-search__btn svg {
    font-size: 16px;
  }
  .p-search__page-link {
    padding: 16px 20px;
  }
  .p-search__page-title {
    font-size: 15px;
  }
}

/* ============================================================
   NAV — DROPDOWN BUTTON RESET (matches .site-header__nav-link)
   ============================================================ */
.site-header__nav-dropdown-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 20px;
  color: #002b5b;
  text-decoration: none;
  white-space: nowrap;
  padding: 14px 5px;
  display: block;
  position: relative;
  width: 100%;
  text-align: left;
}
.site-header__nav-dropdown-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #e1b84a;
  opacity: 0;
  transition: opacity 0.15s;
}
.site-header__nav-dropdown-btn:hover::after { opacity: 1; }

/* Keyboard-driven dropdown toggle */
.site-header__nav-item--has-dropdown.is-open > .site-header__dropdown { display: block; }

/* Focus styles — visible for keyboard users */
.site-header__nav-link:focus-visible,
.site-header__nav-dropdown-btn:focus-visible,
.site-header__dropdown a:focus-visible {
  outline: 2px solid #e1b84a;
  outline-offset: 2px;
  border-radius: 2px;
}

/* ============================================================
   HAMBURGER BUTTON
   ============================================================ */
.site-header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  border-radius: 4px;
}
.site-header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #002b5b;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.site-header__hamburger:focus-visible {
  outline: 2px solid #e1b84a;
  outline-offset: 2px;
}
/* Animate hamburger → X when open */
.site-header__nav--open ~ .site-header__top .site-header__hamburger span:nth-child(1),
.site-header__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.site-header__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   MOBILE NAV — HAMBURGER MENU (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  .site-header__hamburger { display: flex; }

  .site-header__nav-inner {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 8px 0 16px;
    overflow-x: visible;
    overflow-y: auto;
    flex-wrap: nowrap;
    gap: 0;
  }
  .site-header__nav--open .site-header__nav-inner { display: flex; }

  .site-header__nav-item { width: 100%; flex-shrink: unset; }
  .site-header__nav-home { margin-right: 0; }

  .site-header__nav-link,
  .site-header__nav-dropdown-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 12px;
    border-bottom: 1px solid rgba(0,43,91,0.06);
    box-sizing: border-box;
  }
  .site-header__nav-link::after,
  .site-header__nav-dropdown-btn::after { display: none; }

  /* Dropdowns are inline (not absolute) on mobile */
  .site-header__dropdown {
    position: static;
    box-shadow: none;
    border-radius: 0;
    background: #f5f8fc;
    padding: 4px 0 4px 16px;
    min-width: 0;
    display: none;
  }
  .site-header__nav-item--has-dropdown.is-open > .site-header__dropdown { display: block; }
  /* Disable hover dropdowns on touch */
  .site-header__nav-item--has-dropdown:hover > .site-header__dropdown { display: none; }
  .site-header__nav-item--has-dropdown.is-open:hover > .site-header__dropdown { display: block; }

  .site-header__dropdown a {
    font-size: 11px;
    padding: 9px 16px;
    border-bottom: 1px solid rgba(0,43,91,0.04);
  }

  .site-header__search {
    display: flex !important;
    margin: 12px 20px 0;
    border-bottom: 1px solid #38619d;
    width: calc(100% - 40px);
  }
  .site-header__search-input { width: 100%; }
}

/* ============================================================
   CONTACT FORM — SENT NOTICE
   ============================================================ */
.p-contact-notice {
  max-width: 1380px;
  margin: 0 auto;
  padding: 16px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  margin-bottom: 0;
}
.p-contact-notice--success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}
.p-contact-notice--error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}
