

:root {
  
  --mh-drop-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2L18.5 13A7 7 0 1 1 5.5 13Z'/%3E%3C/svg%3E");
}


.mh4-drop {
  display: inline-block;
  width: var(--drop-size, 1.15rem);
  height: var(--drop-size, 1.15rem);
  background: #FF0000;
  -webkit-mask: var(--mh-drop-mask) center / contain no-repeat;
  mask: var(--mh-drop-mask) center / contain no-repeat;
  flex-shrink: 0;
}

.mh4-drop--empty { opacity: 0.2; }


.mh4-picto-row .mh4-drop:not(.mh4-drop--empty) {
  opacity: 0;
  transform: translateY(-6px) scale(0.8);
}
.mh4-picto-row.visible .mh4-drop:not(.mh4-drop--empty) {
  animation: mh4DropIn 0.42s cubic-bezier(0.34, 1.32, 0.64, 1) forwards;
  animation-delay: calc(var(--i, 0) * 70ms);
}
@keyframes mh4DropIn {
  from { opacity: 0; transform: translateY(-6px) scale(0.8); }
  60%  { transform: translateY(1px) scale(1.06); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}


.mh4-stack-seg { transform: scaleX(0); transform-origin: left; transition: transform 0.75s cubic-bezier(0.25, 0.8, 0.25, 1); }
.mh4-stack.visible .mh4-stack-seg { transform: scaleX(1); }
.mh4-stack.visible .mh4-stack-seg:nth-child(2) { transition-delay: 0.18s; }
.mh4-stack.visible .mh4-stack-seg:nth-child(3) { transition-delay: 0.36s; }

.mh4-versus-fill { width: 0; transition: width 0.95s cubic-bezier(0.25, 0.8, 0.25, 1); }
.mh4-versus.visible .mh4-versus-fill { width: var(--w); }
.mh4-versus.visible .mh4-versus-row:nth-child(2) .mh4-versus-fill { transition-delay: 0.16s; }

@media (prefers-reduced-motion: reduce) {
  .mh4-picto-row .mh4-drop:not(.mh4-drop--empty) { opacity: 1; transform: none; animation: none; }
  .mh4-stack-seg { transform: scaleX(1); transition: none; }
  .mh4-versus-fill { width: var(--w); transition: none; }
}




.mh5-hairline {
  position: relative;
  height: 1px;
  background: var(--carbon-20);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.05s cubic-bezier(0.22, 0.75, 0.3, 1);
}
.mh5-hairline.visible { transform: scaleX(1); }

.mh5-hairline::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 46px;
  height: 5px;
  background: var(--unfpa-orange);
}
.mh3-maroon-section .mh5-hairline { background: rgba(255, 255, 255, 0.16); }


.mh5-rings {
  position: absolute;
  pointer-events: none;
  aspect-ratio: 1;
  width: clamp(300px, 38vw, 640px);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 500' fill='none' stroke='%23993366' stroke-width='1.4'%3E%3Ccircle cx='250' cy='250' r='46'/%3E%3Ccircle cx='250' cy='250' r='92'/%3E%3Ccircle cx='250' cy='250' r='138'/%3E%3Ccircle cx='250' cy='250' r='184'/%3E%3Ccircle cx='250' cy='250' r='230'/%3E%3C/svg%3E");
  opacity: 0.16;
}

.mh3-maroon-section .mh5-rings,
.mh5-rings--onDark {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 500' fill='none' stroke='%23ffffff' stroke-width='1.4'%3E%3Ccircle cx='250' cy='250' r='46'/%3E%3Ccircle cx='250' cy='250' r='92'/%3E%3Ccircle cx='250' cy='250' r='138'/%3E%3Ccircle cx='250' cy='250' r='184'/%3E%3Ccircle cx='250' cy='250' r='230'/%3E%3C/svg%3E");
  opacity: 0.13;
}
.mh5-rings--tr { top: -14%; right: -12%; }
.mh5-rings--bl { bottom: -18%; left: -14%; }
.mh5-rings--br { bottom: -20%; right: -12%; }
.mh5-rings--tl { top: -16%; left: -14%; }


.mh5-rings--spin { animation: mh5-ring-spin 90s linear infinite; }
@keyframes mh5-ring-spin { to { transform: rotate(360deg); } }


.mh5-dots {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: clamp(220px, 26vw, 420px);
  height: clamp(160px, 18vw, 300px);
  background-image: radial-gradient(var(--mh-maroon) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.14;
}
.mh3-maroon-section .mh5-dots { background-image: radial-gradient(#fff 1px, transparent 1px); opacity: 0.16; }
.mh5-dots--tr { top: 8%;  right: 4%; }
.mh5-dots--bl { bottom: 8%; left: 4%; }
.mh5-dots--pulse { animation: mh5-dot-pulse 4.5s ease-in-out infinite; }
@keyframes mh5-dot-pulse {
  0%, 100% { opacity: 0.14; }
  50%      { opacity: 0.28; }
}
.mh3-maroon-section .mh5-dots--pulse { animation-name: mh5-dot-pulse-dark; }
@keyframes mh5-dot-pulse-dark {
  0%, 100% { opacity: 0.16; }
  50%      { opacity: 0.30; }
}

@media (prefers-reduced-motion: reduce) {
  .mh5-rings--spin, .mh5-dots--pulse { animation: none; }
}


.mh5-hatch {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: clamp(180px, 20vw, 320px);
  height: clamp(120px, 14vw, 220px);
  background-image: repeating-linear-gradient(
    -45deg,
    var(--mh-maroon) 0 1px,
    transparent 1px 9px
  );
  opacity: 0.12;
}
.mh3-maroon-section .mh5-hatch {
  background-image: repeating-linear-gradient(-45deg, #fff 0 1px, transparent 1px 9px);
  opacity: 0.14;
}
.mh5-hatch--tr { top: 10%; right: 5%; }
.mh5-hatch--bl { bottom: 10%; left: 5%; }


.mh5-corner {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: clamp(48px, 6vw, 96px);
  height: clamp(48px, 6vw, 96px);
  border: 0 solid var(--carbon-30);
}
.mh3-maroon-section .mh5-corner { border-color: rgba(255, 255, 255, 0.3); }
.mh5-corner--tl { top: 26px; left: 26px; border-top-width: 1px; border-left-width: 1px; }
.mh5-corner--br { bottom: 26px; right: 26px; border-bottom-width: 1px; border-right-width: 1px; }

@media (max-width: 991px) {
  .mh5-dots, .mh5-hatch, .mh5-corner { display: none; }
}


.mh5-host { position: relative; overflow: hidden; }


.mh2-section, .mh3-editorial, .mh3-split, .mh3-cta-row-section { position: relative; }
.mh2-section > .container,
.mh3-split > .container,
.mh3-cta-row-section > .container,
.mh5-host > .container { position: relative; z-index: 1; }

@media (max-width: 767px) {
  
  .mh5-rings { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .mh5-hairline { transform: scaleX(1); transition: none; }
}


.mh9-title {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--carbon-black);
  margin: 0 0 clamp(2rem, 4vw, 3rem);
}
.mh9-title em { font-style: normal; font-weight: 600; color: var(--unfpa-orange-text); }

.mh9-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--carbon-20);
}
.mh9-col {
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.25rem, 2.4vw, 2rem);
  border-left: 1px solid var(--carbon-20);
  transition: background-color 0.3s ease;
}
.mh9-col:first-child { border-left: none; padding-left: 0; }
.mh9-col:hover { background: var(--carbon-10); }
.mh9-col:hover .mh9-num { transform: translateX(6px); }

.mh9-num {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--c, var(--unfpa-orange-text));
  margin-bottom: 1.1rem;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mh9-body {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.7;
  color: var(--carbon-70);
  margin: 0;
}
.mh9-body strong { color: var(--carbon-black); font-weight: 600; }


.mh9-col.animate-slide-left,
.mh9-col.animate-slide-right,
.mh9-col.animate-scale-in {
  transition-duration: 0.9s;
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}
.mh9-col.animate-slide-left  { transform: translateX(-180px) rotate(-6deg); }
.mh9-col.animate-slide-right { transform: translateX(180px) rotate(6deg); }
.mh9-col.animate-scale-in    { transform: translateY(60px) scale(0.7); }

.mh9-col.animate-slide-left.visible,
.mh9-col.animate-slide-right.visible,
.mh9-col.animate-scale-in.visible {
  transform: translate(0, 0) rotate(0deg) scale(1);
}

@media (max-width: 860px) {
  
  .mh9-cols { grid-template-columns: 1fr; }
  .mh9-col { border-left: none; border-top: 1px solid var(--carbon-20); padding-left: 0; padding-right: 0; }
  .mh9-col:first-child { border-top: none; }
}

@media (max-width: 420px) {
  
  .mh9-col.animate-slide-left,
  .mh9-col.animate-slide-right { transform: translateY(50px) rotate(0deg); }
}


.mh7-blobs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1.25rem, 2.4vw, 2.25rem);
  align-items: start;
}
.mh7-blob {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: clamp(2rem, 3.4vw, 2.9rem) clamp(1.5rem, 2.4vw, 2rem);
  aspect-ratio: 1 / 0.94;
  color: #fff;
  background: var(--blob, var(--mh-maroon));
  
  border-radius: 62% 38% 46% 54% / 54% 46% 62% 38%;
}
.mh7-blob:nth-child(2) { border-radius: 40% 60% 58% 42% / 47% 58% 42% 53%; }
.mh7-blob:nth-child(3) { border-radius: 55% 45% 38% 62% / 61% 41% 59% 39%; }
.mh7-blob:nth-child(4) { border-radius: 46% 54% 63% 37% / 39% 57% 43% 61%; }


.mh7-blob-num {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(2.1rem, 3.6vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 0.6rem;
  color: #fff;
}
.mh7-blob-num small { font-size: 0.4em; font-weight: 600; opacity: 0.8; margin: 0 0.12rem; }
.mh7-blob-label {
  font-size: 0.86rem;
  line-height: 1.5;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  max-width: 22ch;
  align-self: center;
}


.mh7-venn {
  position: relative;
  width: min(620px, 100%);
  margin: 0 auto;
  aspect-ratio: 1 / 0.94;
  
  isolation: isolate;
  background: var(--venn-bg, var(--carbon-10));
}
.mh7-venn-circle {
  position: absolute;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  mix-blend-mode: multiply;
}

.mh7-venn-circle--a { top: 0;    left: 20%;  background: var(--mh-maroon); }
.mh7-venn-circle--b { bottom: 0; left: 0;    background: var(--naya-pink-dark); }
.mh7-venn-circle--c { bottom: 0; right: 0;   background: var(--unfpa-orange-text); }

.mh7-venn-label {
  position: absolute;
  z-index: 2;
  text-align: center;
  color: #fff;
  font-size: clamp(0.74rem, 1.05vw, 0.9rem);
  font-weight: 600;
  line-height: 1.4;
  width: 30%;
}
.mh7-venn-label b {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.66em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  opacity: 0.8;
  margin-bottom: 0.3rem;
}
.mh7-venn-label--a { top: 11%;  left: 35%; }
.mh7-venn-label--b { bottom: 15%; left: 8%; }
.mh7-venn-label--c { bottom: 15%; right: 8%; }

.mh7-venn-centre {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 56%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 30%;
  color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(0.64rem, 0.86vw, 0.76rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.45;
}

@media (max-width: 620px) {
  
  .mh7-venn { aspect-ratio: auto; display: flex; flex-direction: column; gap: 0.75rem; }
  .mh7-venn-circle { display: none; }
  .mh7-venn-label,
  .mh7-venn-centre {
    position: static; transform: none; width: 100%; text-align: left;
    padding: 1rem 1.15rem; font-size: 0.9rem;
  }
  
  .mh7-venn-label--a { background: var(--mh-maroon); }
  .mh7-venn-label--b { background: var(--naya-pink-dark); }
  .mh7-venn-label--c { background: var(--unfpa-orange-text); }
  .mh7-venn-centre  { background: var(--mh-ink); }
}


.mh6-campaign {
  position: relative;
  overflow: hidden;
  min-height: clamp(300px, 34vw, 460px);
  display: flex;
  align-items: center;
  background: var(--mh-ink);
}
.mh6-campaign-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.mh6-campaign::before,
.mh6-campaign::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.mh6-campaign::before {
  background: var(--partnership-gradient);
  opacity: 0.72;
  mix-blend-mode: multiply;
}
.mh6-campaign::after {
  background: linear-gradient(100deg, rgba(51, 16, 31, 0.92) 0%, rgba(51, 16, 31, 0.66) 46%, rgba(51, 16, 31, 0.28) 100%);
}
.mh6-campaign > .container { position: relative; z-index: 2; }

.mh6-campaign-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.1rem;
}
.mh6-campaign-eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--unfpa-orange);
}
.mh6-campaign-title {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1.9rem, 4.2vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 1rem;
  max-width: 16ch;
}
.mh6-campaign-title em { font-style: normal; color: var(--unfpa-orange); }
.mh6-campaign-sub {
  font-size: clamp(0.98rem, 1.2vw, 1.15rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  max-width: 46ch;
  margin: 0 0 1.75rem;
}

@media (max-width: 767px) {
  .mh6-campaign::after {
    background: linear-gradient(180deg, rgba(51, 16, 31, 0.78) 0%, rgba(51, 16, 31, 0.94) 100%);
  }
  .mh6-campaign-title { max-width: 100%; }
}


.mh8-mini { margin: 0 0 1rem; }
.mh8-cap {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.4rem;
}


.mh8-track {
  display: flex;
  height: 12px;
  width: 100%;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}
.mh8-seg { height: 100%; width: var(--w); background: var(--c, #fff); }


.mh8-seg--fair { background: rgba(255, 255, 255, 0.5); }


.mh8-units { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; }
.mh8-unit { height: 12px; background: var(--unfpa-orange); }


.mh8-rows { display: flex; flex-direction: column; gap: 6px; }
.mh8-row { display: flex; align-items: center; gap: 0.5rem; }
.mh8-row-key {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.8);
  width: 62px;
  flex-shrink: 0;
}
.mh8-row-track { flex: 1; height: 12px; background: rgba(255, 255, 255, 0.14); }
.mh8-row-fill { display: block; height: 100%; width: var(--w); min-width: 3px; background: var(--c, #fff); }


.mh8-timeline { position: relative; height: 16px; }
.mh8-timeline-track {
  position: absolute; top: 7px; left: 0; right: 0;
  height: 2px; background: rgba(255, 255, 255, 0.22);
}
.mh8-tick {
  position: absolute;
  top: 1px;
  left: var(--at);
  transform: translateX(-50%);
  width: 14px; height: 14px;
  background: var(--c, var(--unfpa-orange));
  border-radius: 50%;
}

@media (max-width: 900px) {
  
  .mh8-row-key { width: 54px; }
}


.mh10-seam { border-top: 1px solid var(--carbon-20); }
.mh10-seam.mh3-maroon-section,
.mh3-maroon-section.mh10-seam { border-top-color: rgba(255, 255, 255, 0.14); }


.mh5-motif {
  position: absolute;
  right: -10px;
  bottom: -14px;
  width: clamp(96px, 9vw, 132px);
  height: clamp(96px, 9vw, 132px);
  pointer-events: none;
  z-index: 0;
  background: #fff;
  opacity: 0.13;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center;  mask-position: center;
  -webkit-mask-size: contain;     mask-size: contain;
}


.mh5-motif--price {
  -webkit-mask-image: var(--m); mask-image: var(--m);
  --m: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 90 90' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 78h70'/%3E%3Crect x='16' y='58' width='14' height='20'/%3E%3Crect x='36' y='44' width='14' height='34'/%3E%3Crect x='56' y='26' width='14' height='52'/%3E%3Cpath d='M60 16h14v14'/%3E%3Cpath d='M74 16 52 38'/%3E%3C/svg%3E");
}


.mh5-motif--findings {
  -webkit-mask-image: var(--m); mask-image: var(--m);
  --m: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 90 90' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 10h30l16 16v54H22z'/%3E%3Cpath d='M52 10v16h16'/%3E%3Cpath d='M32 44h26M32 56h26M32 68h16'/%3E%3Cpath d='M30 32h14'/%3E%3C/svg%3E");
}


.mh5-motif--pad {
  -webkit-mask-image: var(--m); mask-image: var(--m);
  --m: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 90 90' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M45 9c-10 0-14 8-14 18v36c0 10 4 18 14 18s14-8 14-18V27c0-10-4-18-14-18z'/%3E%3Cpath d='M31 31 13 36c-7 2-7 16 0 18l18 5'/%3E%3Cpath d='M59 31l18 5c7 2 7 16 0 18l-18 5'/%3E%3Cpath d='M39 30v30M51 30v30'/%3E%3C/svg%3E");
}


.mh5-motif--time {
  -webkit-mask-image: var(--m); mask-image: var(--m);
  --m: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 90 90' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='45' cy='47' r='32'/%3E%3Cpath d='M45 27v20l14 9'/%3E%3Cpath d='M45 15v-6M45 85v-6M77 47h6M13 47H7'/%3E%3C/svg%3E");
}

@media (max-width: 900px) {
  
  .mh5-motif { display: none; }
}


.floating-bg span {
  -webkit-mask: var(--mh-drop-mask) center / contain no-repeat;
  mask: var(--mh-drop-mask) center / contain no-repeat;
  border-radius: 0;
  opacity: 0.07;
  animation: mh4Drift 16s ease-in-out infinite;
}
.floating-bg span:nth-child(2) { animation-duration: 21s; animation-delay: -6s; }
.floating-bg span:nth-child(3) { animation-duration: 26s; animation-delay: -12s; }
@keyframes mh4Drift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-4deg); }
  50%      { transform: translate3d(0, -22px, 0) rotate(4deg); }
}
@media (prefers-reduced-motion: reduce) {
  .floating-bg span { animation: none; }
}


.mh4-picto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
}
.mh4-picto-item {
  padding: clamp(1.5rem, 2.5vw, 2rem);
  border-left: 1px solid var(--carbon-20);
  display: flex;
  flex-direction: column;
}
.mh4-picto-item:first-child { border-left: none; }

.mh4-picto-value {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--carbon-black);
  margin: 0 0 1rem;
}
.mh4-picto-value small {
  font-size: 0.3em;
  font-weight: 600;
  color: var(--carbon-60);
  margin: 0 0.2rem;
  vertical-align: middle;
}


.mh4-picto-row {
  display: grid;
  grid-template-columns: repeat(5, auto);
  justify-content: start;
  gap: 0.34rem;
  color: var(--picto-color, var(--mh-maroon));
  margin-bottom: 1rem;
}

.mh4-picto-label {
  font-size: 0.9rem;
  color: var(--carbon-70);
  line-height: 1.55;
  margin: 0;
}
.mh4-picto-label strong { color: var(--carbon-black); font-weight: 600; }

.mh4-picto-key {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--carbon-60);
  margin: 1.5rem 0 0;
  padding-left: clamp(1.5rem, 2.5vw, 2rem);
}
.mh4-picto-key .mh4-drop { --drop-size: 0.85rem; color: var(--mh-maroon); }

@media (max-width: 767px) {
  .mh4-picto-item { border-left: none; border-top: 1px solid var(--carbon-20); }
  .mh4-picto-item:first-child { border-top: none; }
  .mh4-picto-key { padding-left: clamp(1.5rem, 2.5vw, 2rem); }
}


.mh4-stack { display: flex; width: 100%; height: 26px; margin: 0.25rem 0 0.75rem; }
.mh4-stack-seg {
  height: 100%;
  width: var(--w);
  background: var(--c, var(--unfpa-orange));
}

.mh4-stack-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.9rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--carbon-60);
}
.mh4-stack-legend span { display: inline-flex; align-items: center; gap: 0.35rem; }
.mh4-stack-legend i {
  width: 9px; height: 9px;
  background: var(--c);
  display: inline-block;
  font-style: normal;
  flex-shrink: 0;
}


.mh4-chart-wrap { position: relative; }
.mh4-delta {
  display: block;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--naya-pink);
  margin-top: 0.3rem;
}
.mh4-delta--none { color: rgba(255, 255, 255, 0.6); }


.mh4-versus { display: flex; flex-direction: column; gap: 0.75rem; margin: 0.25rem 0 0.75rem; }
.mh4-versus-row { display: flex; align-items: center; gap: 0.6rem; }
.mh4-versus-name {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--carbon-60);
  width: 74px;
  flex-shrink: 0;
}
.mh4-versus-track { flex: 1; height: 22px; background: var(--carbon-10); position: relative; }

.mh4-versus-fill {
  display: block;
  height: 100%;
  width: var(--w);
  background: var(--c, var(--unfpa-orange));
  transition: width 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mh4-versus-val {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--carbon-black);
  width: 46px;
  text-align: right;
  flex-shrink: 0;
}


.mh3-maroon-section .mh4-picto-item { border-left-color: rgba(255, 255, 255, 0.14); }
.mh3-maroon-section .mh4-picto-value { color: #fff; }
.mh3-maroon-section .mh4-picto-value small { color: rgba(255, 255, 255, 0.55); }
.mh3-maroon-section .mh4-picto-label { color: rgba(255, 255, 255, 0.68); }
.mh3-maroon-section .mh4-picto-label strong { color: #fff; }
.mh3-maroon-section .mh4-picto-key { color: rgba(255, 255, 255, 0.6); }

.mh3-maroon-section .mh4-picto-key .mh4-drop { color: var(--mh-maroon); }
.mh3-maroon-section .mh4-picto-row { color: var(--picto-color, var(--mh-maroon)); }
.mh3-maroon-section .mh4-drop--empty { opacity: 0.28; }

.mh3-maroon-section .mh4-stack-legend { color: rgba(255, 255, 255, 0.6); }
.mh3-maroon-section .mh4-versus-name { color: rgba(255, 255, 255, 0.6); }
.mh3-maroon-section .mh4-versus-track { background: rgba(255, 255, 255, 0.12); }
.mh3-maroon-section .mh4-versus-val { color: #fff; }

@media (max-width: 767px) {
  .mh3-maroon-section .mh4-picto-item { border-left: none; border-top-color: rgba(255, 255, 255, 0.14); }
}
