
@import url('https://fonts.googleapis.com/css2?family=Overpass:ital,wght@0,400;0,500;0,700;0,800;1,400&family=Noto+Sans:ital,wght@0,400;0,700;1,400&display=swap');
@import 'variables.css';

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-noto);
  background: var(--color-white);
  color: var(--color-navy);
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  padding: 12px 16px;
  background: var(--color-navy);
  color: var(--color-white);
  font-weight: 700;
  text-decoration: none;
  z-index: 100;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 20px;
}

.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0;
  background: var(--color-white);
}



.ilo--header.main-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  width: 100%;
}

.ilo--header--utility-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 32px;
  min-height: 32px;
  background: var(--color-ilo-blue);
}

.ilo--header--utility-bar .ilo--container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.ilo--header--language {
  font-family: var(--font-noto);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
  padding: 0 20px;
}

.ilo--header--logo-bar {
  display: flex;
  align-items: center;
  width: 100%;
  height: 96px;
  min-height: 96px;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-footer-border);
}

.ilo--header--logo-bar .ilo--container {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.ilo--header--logo-bar .logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.ilo--header--logo-bar .logo-text {
  font-family: var(--font-overpass);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.1em;
  letter-spacing: -0.04em;
  color: var(--color-navy);
  white-space: pre-line;
}

.ilo--header--tagline {
  font-family: var(--font-noto);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-navy);
  margin: 0;
  line-height: 1.4em;
}

.ilo--header--agency {
  font-family: var(--font-noto);
  font-size: 13px;
  font-weight: 400;
  color: var(--color-footer-gray);
  margin: 0;
  line-height: 1.4em;
}

.ilo--header--navigation {
  display: flex;
  align-items: center;
  width: 100%;
  height: 64px;
  min-height: 64px;
  background: var(--color-navy);
}

.ilo--header--navigation .ilo--container {
  display: flex;
  align-items: center;
}

.ilo--header--inner.ilo--container {
  width: 100%;
  max-width: var(--content-width);
  padding: 0 20px;
  margin: 0 auto;
  box-sizing: border-box;
}

.ilo--nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.ilo--nav-links a {
  display: flex;
  align-items: center;
  padding: 0 16px;
  height: 64px;
  color: var(--color-white);
  font-family: var(--font-overpass);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.266em;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.ilo--nav-links a:hover {
  background: rgba(255, 255, 255, 0.08);
}


.logo-group { display: flex; align-items: center; gap: 12px; }
.logo-text { font-family: var(--font-overpass); font-weight: 700; color: var(--color-navy); white-space: pre-line; }


.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  min-height: var(--hero-height);
  padding: 120px 20px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../assets/hero-bg.png') center/cover no-repeat;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: var(--content-width);
  width: 100%;
}

.hero h1 {
  font-family: var(--font-overpass);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1.03em;
  letter-spacing: -0.04em;
  text-align: center;
  color: var(--color-white);
  margin: 0;
}

.hero .subtitle {
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.36em;
  text-align: center;
  color: var(--color-yellow);
  margin: 0;
}


.map-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  padding: 100px 20px;
  background: var(--color-light-blue);
}

.map-section .section-header.map-header {
  align-items: flex-start;
  padding: 0 20px 60px;
}

.map-section h2 {
  font-family: var(--font-overpass);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.08em;
  letter-spacing: -0.04em;
  color: var(--color-navy);
  margin: 0;
  text-align: left;
  width: 100%;
}

.map-section .map-subtitle {
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.36em;
  text-align: center;
  color: var(--color-ilo-blue);
  margin: 0;
}

.map-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: var(--content-width);
  width: 100%;
}

.map-wrapper img,
.map-wrapper object {
  width: 100%;
  max-width: var(--map-width);
  height: auto;
}

.country-tiles {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px 24px;
  padding-top: 30px;
  width: 100%;
  max-width: var(--map-width);
}

.country-tiles-row {
  display: contents;
}

.country-tile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--color-white);
  border-radius: 4px;
  padding: 10px 12px;
}

.country-tile a {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--color-navy);
  font-family: var(--font-overpass);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.22em;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.country-tile a:hover {
  text-decoration: underline;
}


.browse-source {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  padding: 150px 20px;
  background: var(--color-white);
}

.browse-source .section-header h2 {
  color: var(--color-navy);
}

.browse-source .section-header .subtitle {
  color: var(--color-ilo-blue);
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 20px 60px;
  width: 100%;
  max-width: var(--content-width);
  box-sizing: border-box;
}

.section-header h2 {
  font-family: var(--font-overpass);
  font-weight: 800;
  font-size: 48px;
  line-height: 1.08em;
  letter-spacing: -0.04em;
  color: var(--color-navy);
  margin: 0;
  text-align: left;
  width: 100%;
}

.section-header .subtitle {
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.36em;
  text-align: center;
  color: var(--color-ilo-blue);
  margin: 0;
}

.tiles-row {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: stretch;
  gap: 30px;
  padding: 0 20px;
  width: 100%;
  max-width: var(--content-width);
}

.source-tile {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 280px;
  padding: 24px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0) 100%),
    var(--color-ilo-blue);
  background-size: cover;
  background-position: center;
}

.source-tile:nth-child(1) {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%),
    linear-gradient(135deg, #1E2DBE 0%, #3d4fd4 100%);
}

.source-tile:nth-child(2) {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%),
    linear-gradient(135deg, #0d6b5c 0%, #1a8a78 100%);
}

.source-tile:nth-child(3) {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%),
    linear-gradient(135deg, #5a3d8a 0%, #7b5bab 100%);
}

.source-tile {
  justify-content: flex-end;
  text-align: left;
}

.source-tile h3 {
  font-family: var(--font-overpass);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.11em;
  letter-spacing: -0.02em;
  text-align: left;
  color: var(--color-white);
  margin: 0 0 8px 0;
}

.source-tile .accent {
  height: 6px;
  background: var(--color-green-accent);
  border-radius: 2px;
  margin-top: auto;
  width: 60px;
  align-self: flex-start;
}


.policy-highlights {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  padding: 150px 20px;
  background: var(--color-navy);
}

.policy-highlights .section-header h2,
.policy-highlights .section-header .subtitle {
  color: var(--color-white);
}

.policy-highlights .section-header .subtitle {
  text-align: left;
}

.highlights-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: var(--content-width);
  width: 100%;
}


.highlights-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: start;
  width: 100%;
}


.highlights-grid-2x2 {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
  width: 100%;
}

.highlights-grid-2x2 .policy-card-left {
  min-height: 260px;
}

.highlights-grid-2x2 .policy-card-right {
  min-height: 220px;
}

.policy-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
}


.policy-highlights .policy-card {
  background: var(--color-navy);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.policy-highlights .policy-card .card-image {
  width: 100%;
  height: 160px;
  background: var(--color-navy) center/cover no-repeat;
}

.policy-highlights .policy-card-left .card-image {
  height: 200px;
}

.policy-highlights .policy-card-1 .card-image {
  background-image: url('../assets/policy-south-africa.png');
}

.policy-highlights .policy-card-2 .card-image {
  background-image: url('../assets/policy-chile.png');
}

.policy-highlights .policy-card-3 .card-image {
  background-image: url('../assets/policy-canada.png');
}

.policy-highlights .policy-card-4 .card-image-placeholder,
.policy-highlights .card-image-placeholder {
  background: rgba(255,255,255,0.08);
}

.policy-highlights .policy-card .card-content {
  padding: 20px;
  background: var(--color-navy);
}

.policy-highlights .policy-card .eyebrow {
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.policy-highlights .policy-card h3 {
  color: var(--color-white);
  font-size: 20px;
}

.policy-highlights .policy-card .accent {
  background: var(--color-green-accent);
}

.policy-card-big {
  background: var(--color-white);
  border-radius: 4px;
  overflow: hidden;
  max-width: 100%;
}

.policy-card-big .card-image {
  width: 100%;
  height: 360px;
  background: var(--color-navy) url('../assets/policy-south-africa.png') center/cover no-repeat;
  object-fit: cover;
}

.policy-card-big .card-content {
  padding: 24px;
}

.policy-card-big .eyebrow {
  font-family: var(--font-overpass);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--color-ilo-blue);
  margin-bottom: 8px;
}

.policy-card-big h3 {
  font-family: var(--font-overpass);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25em;
  letter-spacing: -0.03em;
  color: var(--color-navy);
  margin: 0 0 8px 0;
}

.policy-card-big .accent {
  height: 6px;
  background: var(--color-green-accent);
  width: 60px;
}

.policy-cards-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.policy-cards-stack .policy-card-h {
  flex: none;
}

.policy-card-h {
  flex: 1 1 320px;
  min-width: 280px;
  background: var(--color-white);
  border-radius: 4px;
  overflow: hidden;
  max-width: 100%;
}

.policy-card-h .card-image {
  width: 100%;
  height: 200px;
  background: var(--color-navy) center/cover no-repeat;
  object-fit: cover;
}

.policy-cards-stack .policy-card-h:nth-child(1) .card-image {
  background-image: url('../assets/policy-chile.png');
}

.policy-cards-stack .policy-card-h:nth-child(2) .card-image {
  background-image: url('../assets/policy-canada.png');
}

.policy-card-h .card-content {
  padding: 24px;
}

.policy-card-h .eyebrow {
  font-family: var(--font-overpass);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-ilo-blue);
  margin-bottom: 8px;
}

.policy-card-h h3 {
  font-family: var(--font-overpass);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25em;
  letter-spacing: -0.03em;
  color: var(--color-navy);
  margin: 0 0 8px 0;
}

.policy-card-h .accent {
  height: 6px;
  background: var(--color-green-accent);
  width: 60px;
}


.contribute-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 560px;
  padding: 180px 20px;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url('../assets/contribute-bg.png') center/cover no-repeat;
}

.contribute-cta .section-header h2 {
  font-family: var(--font-overpass);
  font-weight: 800;
  font-size: 60px;
  line-height: 1.1em;
  letter-spacing: -0.04em;
  text-align: center;
  color: var(--color-white);
}

.contribute-cta .section-header .subtitle {
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.44em;
  text-align: center;
  color: var(--color-white);
  max-width: 680px;
}


.cta-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 10px 20px;
  margin-top: 20px;
  background: var(--color-yellow);
  color: var(--color-navy);
  font-family: var(--font-overpass);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.27em;
  letter-spacing: -0.02em;
  text-decoration: none;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  box-sizing: border-box;
}

.cta-button:hover {
  background: #e6b826;
}

.cta-button--secondary {
  background: var(--color-white);
  color: var(--color-navy);
  border: 2px solid var(--color-white);
  min-height: 44px;
}

.cta-button--secondary:hover {
  background: transparent;
  color: var(--color-white);
}


.cta-social-dialogue {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  padding: 150px 20px;
  background: var(--color-navy);
}

.cta-sd-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: var(--content-width);
}

.cta-sd-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 80px;
  width: 100%;
}

.cta-sd-chart {
  position: relative;
  width: 480px;
  height: 480px;
  flex-shrink: 0;
}


.cta-sd-chart-pie {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    var(--color-red-accent) 0deg 90deg,
    var(--color-yellow) 90deg 180deg,
    var(--color-green-accent) 180deg 270deg,
    var(--color-ilo-blue) 270deg 360deg
  );
}

.cta-sd-chart-circle {
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  background: var(--color-white);
  z-index: 1;
}

.cta-sd-chart-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-overpass);
  font-weight: 800;
  font-size: 56px;
  line-height: 1.04em;
  letter-spacing: -0.04em;
  text-align: center;
  color: var(--color-navy);
  margin: 0;
  z-index: 2;
  pointer-events: none;
}

.cta-sd-text {
  flex: 1;
  min-width: 280px;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-sd-title {
  font-family: var(--font-overpass);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.17em;
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin: 0;
}

.cta-sd-body {
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.44em;
  color: var(--color-white);
  margin: 0;
}

.cta-sd-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 10px;
}

.cta-sd-stats--key {
  flex-direction: row;
  align-items: center;
  gap: 24px;
}

.cta-sd-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.cta-sd-stats--key .cta-sd-stat {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.cta-sd-stat-dot {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  flex-shrink: 0;
}

.cta-sd-stat-dot--red {
  background: var(--color-red-accent);
}

.cta-sd-stat-dot--green {
  background: var(--color-green-accent);
}

.cta-sd-stat-dot--blue {
  background: var(--color-ilo-blue);
}

.cta-sd-stat-num {
  font-family: var(--font-overpass);
  font-weight: 700;
  font-size: 30px;
  line-height: 1em;
  letter-spacing: -0.02em;
  color: var(--color-green-accent);
}

.cta-sd-stat-label {
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.44em;
  color: var(--color-green-accent);
}

.cta-sd-stats--key .cta-sd-stat-label {
  color: var(--color-white);
}

.cta-sd-text .cta-button {
  margin-top: 10px;
  align-self: flex-start;
}


.methodology-about {
  display: flex;
  align-self: stretch;
  width: 100%;
}

.methodology-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 400px;
}

.methodology-block,
.about-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 40px;
  gap: 24px;
  text-align: center;
}

.methodology-block {
  background: linear-gradient(rgba(35, 0, 80, 0.9), rgba(35, 0, 80, 0.85)),
    url('../assets/hero-bg.png') center/cover no-repeat;
}

.methodology-block h2,
.about-block h2 {
  font-family: var(--font-overpass);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.08em;
  letter-spacing: -0.04em;
  color: var(--color-white);
  margin: 0;
}

.methodology-block p,
.about-block p {
  font-family: var(--font-noto);
  font-size: 18px;
  line-height: 1.44em;
  color: var(--color-white);
  margin: 0;
  max-width: 400px;
}

.about-block {
  background: linear-gradient(rgba(21, 66, 0, 0.85), rgba(21, 66, 0, 0.8)),
    url('../assets/contribute-bg.png') center/cover no-repeat;
}

.methodology-block .cta-button,
.about-block .cta-button {
  margin-top: 0;
}


.partners-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  padding: 100px 20px;
  background: var(--color-white);
}

.partners-section .section-header h2 {
  color: var(--color-navy);
}

.partners-section .section-header .subtitle {
  color: var(--color-footer-gray);
}

.partners-apply-btn {
  margin-top: 0;
  margin-bottom: 48px;
}

.partners-support {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: var(--content-width);
}

.partners-support-label {
  font-family: var(--font-noto);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-footer-gray);
  margin: 0;
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 48px;
  max-width: var(--content-width);
  width: 100%;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 40px;
  background: var(--color-white);
  border-radius: 4px;
  min-width: 160px;
  font-family: var(--font-overpass);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-navy);
  border: 1px solid var(--color-footer-border);
}

.partner-logo--giz {
  border-color: var(--color-ilo-blue);
  color: var(--color-ilo-blue);
}

.partner-logo--placeholder {
  background: #E8E8E8;
  color: var(--color-footer-gray);
  min-width: 200px;
}


.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  background: var(--color-navy);
  margin-top: auto;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: var(--content-width);
  padding: 0 20px;
}

.footer .logo-group {
  padding: 60px 0 0;
}

.footer .logo-text {
  color: var(--color-white);
}

.footer-divider {
  width: 100%;
  height: 6px;
  background: var(--color-red-accent);
  margin: 0;
  border: none;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background: var(--color-navy);
  padding: 0 20px 40px;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
  max-width: var(--content-width);
  padding: 24px 0;
  font-family: var(--font-noto);
  font-size: 14px;
  line-height: 1.71em;
  color: var(--color-white);
}

.footer-copyright {
  color: var(--color-white);
}

.footer-legal {
  color: var(--color-white);
}

.footer-legal a {
  color: var(--color-white);
}

.footer-links a {
  color: var(--color-white);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.2);
  border: none;
  margin: 0;
}


@media (max-width: 1024px) {
  .country-tiles {
    grid-template-columns: repeat(4, 1fr);
  }

  .highlights-grid,
  .highlights-grid-2x2 {
    grid-template-columns: 1fr;
  }

  .highlights-grid-2x2 .policy-card-3 {
    grid-row: auto;
  }

  .methodology-about-grid {
    grid-template-columns: 1fr;
  }

  .tiles-row {
    flex-direction: column;
  }

  .policy-cards-row {
    flex-direction: column;
  }

  .cta-sd-content {
    flex-direction: column;
    gap: 40px;
  }

  .cta-sd-chart {
    width: 280px;
    height: 280px;
  }

  .cta-sd-chart-circle {
    inset: 40px;
  }
}

@media (max-width: 600px) {
  .country-tiles {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ilo--header--logo-bar .ilo--container {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .ilo--header--tagline,
  .ilo--header--agency {
    font-size: 14px;
  }

  .ilo--nav-links {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 4px;
  }

  .ilo--nav-links a {
    padding: 0 12px;
    height: 48px;
    font-size: 14px;
  }

  .ilo--header--navigation {
    height: auto;
    min-height: 64px;
    padding: 8px 0;
  }

  .hero h1 {
    font-size: 36px;
  }

  .map-section h2,
  .section-header h2 {
    font-size: 32px;
  }
}



.page-home main {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  flex: 1;
  padding-bottom: clamp(60px, 8vw, 120px);
  display: flex;
  flex-direction: column;
}


.page-home main .thanks-page {
  justify-content: center;
  flex: 1;
}


.methodology-page,
.policy-list-page,
.thanks-page,
.contribute-form-page {
  width: 100%;
  max-width: 100%;
  padding: 40px 20px 60px;
  box-sizing: border-box;
  min-width: 0;
}


.thanks-page {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 0;
  padding: 60px 20px;
}

.methodology-inner,
.policy-list-inner,
.thanks-inner,
.contribute-form-inner {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  min-width: 0;
}


.thanks-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


.thanks-inner .cta-button {
  margin-left: auto;
  margin-right: auto;
}

.methodology-page h1,
.policy-list-page h1,
.thanks-page h1,
.contribute-form-page h1 {
  font-family: var(--font-overpass);
  font-weight: 800;
  color: var(--color-navy);
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.2;
}


.thanks-inner h1 {
  text-align: center;
  width: 100%;
}

.methodology-page p,
.policy-list-page p,
.thanks-page p {
  font-family: var(--font-noto);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-navy);
  margin: 0 0 1.5rem;
  max-width: 60ch;
}


.thanks-inner p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}


.contribute-cta--page {
  min-height: 50vh;
  padding: 60px 20px;
}

.contribute-cta--page .section-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.contribute-cta--page .subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
}


.policy-list-layout {
  display: grid;
  grid-template-columns: minmax(200px, 260px) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  margin-top: 24px;
  width: 100%;
  min-width: 0;
}

.policy-list-filters {
  padding: 20px;
  background: var(--color-light-blue);
  border-radius: 4px;
  position: sticky;
  top: 20px;
  min-width: 0;
}

.filter-title {
  font-family: var(--font-overpass);
  font-weight: 700;
  font-size: 1.125rem;
  margin: 0 0 12px;
  color: var(--color-navy);
}

.filter-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-checkbox {
  font-family: var(--font-noto);
  font-size: 0.875rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-ilo-blue);
  text-decoration: none;
}

.filter-link:hover {
  text-decoration: underline;
}

.policy-list-results {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.policy-list-item a {
  display: block;
  padding: 20px;
  background: var(--color-white);
  border: 1px solid var(--color-footer-border);
  border-radius: 4px;
  text-decoration: none;
  color: var(--color-navy);
  transition: background 0.2s;
}

.policy-list-item a:hover {
  background: var(--color-light-blue);
}

.policy-item-country {
  font-family: var(--font-noto);
  font-size: 0.875rem;
  color: var(--color-ilo-blue);
  display: block;
  margin-bottom: 4px;
}

.policy-list-item h2 {
  font-family: var(--font-overpass);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
  margin: 0;
}

.policy-list-active-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding: 12px 0;
}

.active-filter-label {
  font-family: var(--font-noto);
  font-size: 0.875rem;
  color: var(--color-navy);
}

.reset-filters {
  font-family: var(--font-overpass);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-ilo-blue);
  text-decoration: none;
}

.reset-filters:hover {
  text-decoration: underline;
}


.policy-detail-hero {
  padding: 60px 20px;
  background: var(--color-navy);
  color: var(--color-white);
}

.policy-detail-hero-inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

.policy-detail-country {
  font-family: var(--font-noto);
  font-size: 0.875rem;
  opacity: 0.9;
  margin: 0 0 8px;
}

.policy-detail-hero h1 {
  font-family: var(--font-overpass);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0;
  line-height: 1.2;
}

.policy-detail-content {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.policy-detail-meta {
  margin-bottom: 24px;
}

.policy-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 48px;
  margin: 0;
}

.policy-meta-list dt {
  font-family: var(--font-noto);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-footer-gray);
  margin: 0 0 4px;
}

.policy-meta-list dd {
  font-family: var(--font-overpass);
  font-weight: 600;
  margin: 0;
}

.policy-detail-body {
  font-family: var(--font-noto);
  line-height: 1.6;
}

.policy-detail-body .cta-button {
  margin-top: 24px;
}


.form-contribute {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 560px;
}

.form-label {
  font-family: var(--font-overpass);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-navy);
}

.form-required {
  color: var(--color-red-accent);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-noto);
  font-size: 1rem;
  border: 1px solid var(--color-footer-border);
  border-radius: 4px;
  box-sizing: border-box;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}


@media (max-width: 1024px) {
  .policy-list-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .policy-list-filters {
    position: static;
    width: 100%;
  }

  .policy-list-inner {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .methodology-inner,
  .policy-list-inner,
  .thanks-inner,
  .contribute-form-inner {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .methodology-page,
  .policy-list-page,
  .thanks-page,
  .contribute-form-page {
    padding: 24px 16px 48px;
  }

  .contribute-cta--page {
    padding: 40px 16px;
  }

  .policy-detail-hero {
    padding: 40px 16px;
  }

  .policy-detail-content {
    padding: 24px 16px 48px;
  }

  .policy-meta-list {
    flex-direction: column;
    gap: 12px;
  }

  .form-contribute {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .methodology-page,
  .policy-list-page,
  .thanks-page,
  .contribute-form-page {
    padding: 20px 12px 40px;
  }

  .policy-list-item a {
    padding: 16px;
  }

  .policy-list-item h2 {
    font-size: 1.125rem;
  }
}





.page-home .frame-140 {
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  max-width: 100%;
  position: relative;
}


.page-home .frame-8 {
  flex: 0 0 283px;
  width: 283px;
  min-width: 283px;
  max-width: 283px;
  height: 32px;
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}


.page-home .frame-5 {
  flex: 0 0 1312px;
  width: 1312px;
  min-width: 1312px;
  max-width: 1312px;
  height: 32px;
  padding: 0 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  justify-content: flex-start;
  position: relative;
  box-sizing: border-box;
}


.page-home .frame-7 {
  flex: 1 1 auto;
  width: auto;
  min-width: 33px;
  max-width: none;
  margin-left: -40px;
  height: 32px;
  padding: 0;
  background: #230050;
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}



.page-home .frame-4,
.page-policy-list .frame-4,
.page-contribute .frame-4,
.page-contribute-form .frame-4 {
  padding: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding-left: clamp(24px, 3vw, 40px);
  padding-right: clamp(24px, 3vw, 40px);
  min-height: 89px;
  height: auto;
  margin-top: 0;
  padding-top: 0;
}


.page-home .frame-2 {
  background: #230050;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  width: 100%;
  max-width: 100%;
  padding-left: clamp(24px, 3vw, 40px);
  padding-right: clamp(24px, 3vw, 40px);
  box-sizing: border-box;
  min-height: 64px;
  height: auto;
  margin-top: 0;
  padding-top: 0;
}


.page-home .main-menu {
  margin: 0;
  padding: 0;
}

.page-home .main-menu .frame-140 {
  margin: 0;
  padding: 0;
}



.page-home .frame-4 .nav-container,
.page-policy-list .frame-4 .nav-container,
.page-contribute .frame-4 .nav-container,
.page-contribute-form .frame-4 .nav-container {
  max-width: min(1312px, 100%);
  margin: 0 auto;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}



.page-home .frame-4 .nav-container .logo,
.page-policy-list .frame-4 .nav-container .logo,
.page-contribute .frame-4 .nav-container .logo,
.page-contribute-form .frame-4 .nav-container .logo {
  margin-left: 0;
  padding-left: 0;
  position: relative;
  left: 0;
}


.page-home .frame-2 .nav-container2 {
  max-width: min(1312px, 100%);
  margin: 0 auto;
  width: 100%;
}


.page-home .frame-4 .nav-container,
.page-policy-list .frame-4 .nav-container,
.page-contribute .frame-4 .nav-container,
.page-contribute-form .frame-4 .nav-container {
  max-width: 100%;
}

.page-home .frame-2 .nav-container2,
.page-policy-list .frame-2 .nav-container2,
.page-contribute .frame-2 .nav-container2,
.page-contribute-form .frame-2 .nav-container2 {
  max-width: 100%;
  justify-content: flex-start;
}


@media (max-width: 1628px) {
  .page-home .frame-8 {
    flex: 0 0 283px;
    width: 283px;
    min-width: 283px;
    max-width: 283px;
  }
  
  .page-home .frame-5 {
    flex: 0 0 1312px;
    width: 1312px;
    min-width: 1312px;
    max-width: 1312px;
  }
  
  .page-home .frame-7 {
    flex: 1 1 auto;
    width: auto;
    min-width: 33px;
    max-width: none;
  }
}





.page-home .frame-39 {
  width: 100%;
  max-width: 100%;
  position: relative;
}


.page-home .frame-38 {
  width: 100%;
  max-width: 100%;
  min-height: 185px;
  height: auto;
  padding: clamp(40px, 6vw, 60px) clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}


.page-home .frame-104 {
  width: 100%;
  max-width: 100%;
  position: relative;
}


.page-home .frame-37 {
  width: 100%;
  max-width: 100%;
  min-height: 64px;
  height: 64px;
  padding: 0 clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

/* Methodology page from the Figma content frame. Header and footer stay global. */
.methodology-page--figma {
  --methodology-content-width: 904px;
  --methodology-copy-width: 904px;
  --methodology-video-width: 1128px;
  --methodology-magenta: #960a55;
  width: 100%;
  max-width: none;
  min-width: 0;
  padding: 0;
  background: var(--color-white);
  color: var(--color-navy);
  box-sizing: border-box;
  overflow-x: hidden;
}

.page-home main.methodology-page--figma {
  padding-bottom: 0;
}

.methodology-page--figma *,
.methodology-page--figma *::before,
.methodology-page--figma *::after {
  box-sizing: border-box;
}

.methodology-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 510px;
  background-image: var(--methodology-hero-image);
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.methodology-hero__overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}

.methodology-hero__inner {
  position: relative;
  z-index: 1;
  width: min(1008px, 100%);
  padding: 160px 72px;
  text-align: center;
  color: var(--color-white);
}

.methodology-page--figma .methodology-hero h1 {
  width: 100%;
  margin: 0 0 10px;
  color: var(--color-white);
  font-family: var(--font-overpass);
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
}

.methodology-page--figma .methodology-hero p {
  width: 100%;
  max-width: none;
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-noto);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.33;
}

.methodology-section {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 120px 20px;
}

.methodology-section--light {
  background: var(--color-white);
  color: var(--color-navy);
}

.methodology-section--dark {
  background: var(--color-navy);
  color: var(--color-white);
}

.methodology-section--accent {
  background: var(--methodology-magenta);
  color: var(--color-white);
}

.methodology-section__inner {
  width: min(var(--methodology-content-width), 100%);
  min-width: 0;
}

.methodology-section__header {
  width: 100%;
  padding: 0 0 40px;
}

.methodology-page--figma .methodology-section h2 {
  width: 100%;
  margin: 0 0 20px;
  color: inherit;
  font-family: var(--font-overpass);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
}

.methodology-page--figma .methodology-section__header p {
  width: 100%;
  max-width: none;
  margin: 0;
  color: var(--color-ilo-blue);
  font-family: var(--font-noto);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 400;
  line-height: 1.27;
}

.methodology-section--dark .methodology-section__header p {
  color: var(--color-green-accent);
}

.methodology-section--accent .methodology-section__header p {
  color: var(--color-yellow);
}

.methodology-copy {
  width: min(var(--methodology-copy-width), 100%);
  color: inherit;
  font-family: var(--font-noto);
}

.methodology-page--figma .methodology-copy p,
.methodology-page--figma .methodology-copy li {
  max-width: none;
  margin: 0 0 30px;
  color: inherit;
  font-family: var(--font-noto);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

.methodology-page--figma .methodology-copy p:last-child,
.methodology-page--figma .methodology-copy ul:last-child,
.methodology-page--figma .methodology-copy li:last-child {
  margin-bottom: 0;
}

.methodology-copy strong {
  font-weight: 700;
}

.methodology-page--figma .methodology-copy h3 {
  margin: 0 0 10px;
  color: var(--color-red-accent);
  font-family: var(--font-noto);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.methodology-copy em {
  font-style: italic;
}

.methodology-section--dark .methodology-copy em {
  color: var(--color-yellow);
}

.methodology-copy ul {
  margin: 0 0 30px;
  padding-left: 30px;
}

.methodology-copy li {
  margin-bottom: 10px !important;
  padding-left: 0;
}

.methodology-copy a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.methodology-page--figma .methodology-link-intro {
  margin-bottom: 0 !important;
}

.methodology-link-list {
  margin: 0 0 24px;
  padding-left: 18px;
  list-style: disc;
}

.methodology-link-list li {
  margin-bottom: 4px !important;
  line-height: 1.5;
}

.methodology-link-list a {
  display: inline;
}

.methodology-note {
  font-size: 16px !important;
  line-height: 1.5 !important;
}

.methodology-note a {
  font-size: inherit;
}

.methodology-note--inverse strong {
  color: var(--color-yellow);
}

.methodology-page--figma .methodology-note--inverse {
  margin-top: 0;
  color: var(--color-white);
  font-family: var(--font-noto);
  font-size: 16px !important;
  font-style: italic !important;
  font-weight: 400;
  line-height: 24px !important;
}

.methodology-section--accent .methodology-button {
  margin-bottom: 24px;
}

.methodology-page--figma .methodology-note--inverse em {
  font-style: italic !important;
}

.methodology-page--figma .methodology-note--inverse strong {
  color: var(--color-yellow);
  font-style: italic !important;
  font-weight: 700;
}

.methodology-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  margin-top: 0;
  padding: 10px 20px;
  border: 0;
  border-radius: 2px;
  background: var(--color-yellow);
  color: var(--color-navy) !important;
  font-family: var(--font-overpass);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none !important;
  transition: background-color 160ms ease, transform 160ms ease;
}

.methodology-button:hover,
.methodology-button:focus-visible {
  background: #ffe177;
  transform: translateY(-1px);
}

.methodology-button--disabled {
  cursor: not-allowed;
}

.methodology-video {
  position: relative;
  width: min(var(--methodology-video-width), calc(100vw - 40px));
  margin: 20px 50% 40px;
  transform: translateX(-50%);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #d8c2ab;
}

.methodology-video img,
.methodology-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.methodology-video img {
  object-fit: cover;
}

.methodology-video__play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--color-red-accent);
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 28px rgba(35, 0, 80, 0.28);
}

.methodology-video__play::before {
  content: "";
  position: absolute;
  left: 29px;
  top: 22px;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid var(--color-white);
}

@media (max-width: 1024px) {
  .methodology-hero {
    min-height: 430px;
  }

  .methodology-hero__inner {
    padding: 120px 40px;
  }

  .methodology-section {
    padding: 90px 20px;
  }
}

@media (max-width: 700px) {
  .methodology-hero {
    min-height: 360px;
  }

  .methodology-hero__inner {
    padding: 88px 20px;
  }

  .methodology-page--figma .methodology-hero h1,
  .methodology-page--figma .methodology-section h2 {
    font-size: 36px;
    line-height: 1.12;
  }

  .methodology-page--figma .methodology-hero p,
  .methodology-page--figma .methodology-section__header p {
    font-size: 22px;
    line-height: 1.35;
  }

  .methodology-section {
    padding: 70px 20px;
  }

  .methodology-section__header {
    padding-bottom: 30px;
  }

  .methodology-page--figma .methodology-copy p,
  .methodology-page--figma .methodology-copy li {
    font-size: 18px;
    line-height: 1.55;
  }

  .methodology-copy ul {
    padding-left: 24px;
  }

  .methodology-video {
    width: 100%;
    margin: 0 0 34px;
    transform: none;
  }

  .methodology-video__play {
    width: 58px;
    height: 58px;
  }

  .methodology-video__play::before {
    left: 24px;
    top: 18px;
    border-top-width: 11px;
    border-bottom-width: 11px;
    border-left-width: 17px;
  }
}

@media (max-width: 420px) {
  .methodology-page--figma .methodology-hero h1,
  .methodology-page--figma .methodology-section h2 {
    font-size: 31px;
  }

  .methodology-page--figma .methodology-hero p,
  .methodology-page--figma .methodology-section__header p {
    font-size: 20px;
  }

  .methodology-button {
    width: 100%;
  }
}

/* About page from the Figma content frame. Header and footer stay global. */
.about-page--figma {
  --about-content-width: 904px;
  --about-video-width: 1128px;
  --about-green: #154200;
  width: 100%;
  max-width: none;
  min-width: 0;
  padding: 0;
  background: var(--color-white);
  color: var(--color-navy);
  box-sizing: border-box;
  overflow-x: hidden;
}

.page-home main.about-page--figma {
  padding-bottom: 0;
}

.about-page--figma *,
.about-page--figma *::before,
.about-page--figma *::after {
  box-sizing: border-box;
}

.about-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 510px;
  background-image: var(--about-hero-image);
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}

.about-hero__inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  padding: 160px 72px;
  text-align: center;
  color: var(--color-white);
}

.about-page--figma .about-hero h1 {
  width: 100%;
  margin: 0 0 10px;
  color: var(--color-white);
  font-family: var(--font-overpass);
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
}

.about-page--figma .about-hero h1 span {
  display: block;
  white-space: nowrap;
}

.about-page--figma .about-hero p {
  width: 100%;
  max-width: none;
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-noto);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.33;
}

.about-section {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 120px 20px;
}

.about-section--light {
  background: var(--color-white);
  color: var(--color-navy);
}

.about-section--green {
  background: var(--about-green);
  color: var(--color-white);
}

.about-section__inner {
  width: min(var(--about-content-width), 100%);
  min-width: 0;
}

.about-section__header {
  width: 100%;
  padding: 0 0 40px;
}

.about-page--figma .about-section h2 {
  width: 100%;
  margin: 0 0 20px;
  color: inherit;
  font-family: var(--font-overpass);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
}

.about-page--figma .about-section__header p {
  width: 100%;
  max-width: none;
  margin: 0;
  color: var(--color-ilo-blue);
  font-family: var(--font-noto);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 400;
  line-height: 1.27;
}

.about-section--green .about-section__header p {
  color: var(--color-yellow);
}

.about-copy {
  width: min(var(--about-content-width), 100%);
  color: inherit;
  font-family: var(--font-noto);
}

.about-page--figma .about-copy p,
.about-page--figma .about-copy li {
  max-width: none;
  margin: 0 0 30px;
  color: inherit;
  font-family: var(--font-noto);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

.about-page--figma .about-copy p:last-child,
.about-page--figma .about-copy ul:last-child,
.about-page--figma .about-copy li:last-child {
  margin-bottom: 0;
}

.about-copy ul {
  margin: 0 0 30px;
  padding-left: 30px;
  list-style: disc;
}

.about-copy li {
  margin-bottom: 10px !important;
  padding-left: 0;
}

.about-copy a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.about-page--figma .about-list-intro {
  margin-bottom: 0 !important;
}

.about-compact-list {
  margin-top: 0 !important;
  margin-bottom: 30px !important;
}

.about-compact-list + .about-button {
  margin-top: 0;
}

.about-copy--features h3 {
  margin: 0 0 0;
  color: var(--color-red-accent);
  font-family: var(--font-noto);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.about-copy--features p {
  margin-bottom: 30px !important;
}

.about-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 10px 20px;
  border: 0;
  border-radius: 2px;
  background: var(--color-yellow);
  color: var(--color-navy) !important;
  font-family: var(--font-overpass);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none !important;
  transition: background-color 160ms ease, transform 160ms ease;
}

.about-button:hover,
.about-button:focus-visible {
  background: #ffe177;
  transform: translateY(-1px);
}

.about-button[aria-disabled="true"] {
  cursor: not-allowed;
}

.about-video {
  position: relative;
  width: min(var(--about-video-width), calc(100vw - 40px));
  margin: 20px 50% 40px;
  transform: translateX(-50%);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #d8c2ab;
}

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

.about-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.about-video__play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--color-red-accent);
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 28px rgba(35, 0, 80, 0.28);
}

.about-video__play::before {
  content: "";
  position: absolute;
  left: 29px;
  top: 22px;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid var(--color-white);
}

.about-partners {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 120px 20px;
  background: var(--color-white);
  color: var(--color-navy);
}

.about-partners__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.about-partners__header {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  width: min(904px, 100%);
  text-align: center;
}

.about-page--figma .about-partners h2 {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-overpass);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  white-space: nowrap;
}

.about-page--figma .about-partners__header p {
  max-width: 680px;
  margin: 0;
  color: var(--color-ilo-blue);
  font-family: var(--font-noto);
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}

@media (max-width: 760px) {
  .about-page--figma .about-partners h2 {
    white-space: normal;
  }
}

.about-page--figma .about-partners__header strong {
  display: block;
  font-weight: 700;
}

.about-support {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}

.about-page--figma .about-support p {
  max-width: none;
  margin: 0;
  color: #666;
  font-family: var(--font-noto);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-support img {
  display: block;
  width: 221px;
  max-width: 100%;
  height: auto;
}

@media (max-width: 1024px) {
  .about-hero {
    min-height: 430px;
  }

  .about-hero__inner {
    padding: 120px 40px;
  }

  .about-section,
  .about-partners {
    padding: 90px 20px;
  }
}

@media (max-width: 700px) {
  .about-hero {
    min-height: 360px;
  }

  .about-hero__inner {
    padding: 88px 20px;
  }

  .about-page--figma .about-hero h1,
  .about-page--figma .about-section h2 {
    font-size: 36px;
    line-height: 1.12;
  }

  .about-page--figma .about-hero h1 span {
    white-space: normal;
  }

  .about-page--figma .about-hero p,
  .about-page--figma .about-section__header p {
    font-size: 22px;
    line-height: 1.35;
  }

  .about-section,
  .about-partners {
    padding: 70px 20px;
  }

  .about-section__header {
    padding-bottom: 30px;
  }

  .about-page--figma .about-copy p,
  .about-page--figma .about-copy li {
    font-size: 18px;
    line-height: 1.55;
  }

  .about-copy ul {
    padding-left: 24px;
  }

  .about-video {
    width: 100%;
    margin: 0 0 34px;
    transform: none;
  }

  .about-video__play {
    width: 58px;
    height: 58px;
  }

  .about-video__play::before {
    left: 24px;
    top: 18px;
    border-top-width: 11px;
    border-bottom-width: 11px;
    border-left-width: 17px;
  }
}

@media (max-width: 420px) {
  .about-page--figma .about-hero h1,
  .about-page--figma .about-section h2 {
    font-size: 31px;
  }

  .about-page--figma .about-hero p,
  .about-page--figma .about-section__header p {
    font-size: 20px;
  }

  .about-button {
    width: 100%;
  }
}
