﻿@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-ExtraBold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #022d5c;
  --navy-deep: #001f44;
  --cyan: #009fe3;
  --gold: #ebc326;
  --white: #ffffff;
  --ink: #0e2238;
  --muted: #5e7188;
  --line: rgba(0, 159, 227, 0.55);
  --section-company-accent: #00aeef;
  --section-company-accent-rgb: 0, 174, 239;
  --section-strategy-accent: #e8c03a;
  --section-strategy-accent-rgb: 232, 192, 58;
  --section-governance-accent: #b369aa;
  --section-governance-accent-rgb: 179, 105, 170;
  --section-social-accent: #57b7b8;
  --section-social-accent-rgb: 87, 183, 184;
  --section-safety-accent: #d1555e;
  --section-safety-accent-rgb: 209, 85, 94;
  --rail-width: clamp(300px, 29.6vw, 568px);
  --topbar-height: 71px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

:target {
  scroll-margin-top: calc(var(--topbar-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: #f4f8fb;
  font-family: "Montserrat", Arial, sans-serif;
}

body.menu-open .side-menu {
  transform: translateX(0);
}

body.menu-open .menu-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

body.menu-open .menu-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  position: fixed;
  z-index: 40;
  inset: 0 0 auto 0;
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 0 36px 0 24px;
  color: var(--white);
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.icon-button {
  width: 24px;
  height: 24px;
  border: 0;
  padding: 0;
  display: inline-grid;
  place-items: center;
  background: transparent;
  cursor: pointer;
}

.menu-toggle {
  flex: 0 0 24px;
}

.menu-toggle span {
  display: block;
  grid-area: 1 / 1;
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: var(--gold);
  transition: transform 180ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: 180px;
  height: auto;
}

.top-slogan {
  display: grid;
  gap: 2px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.top-slogan span:first-child {
  color: var(--gold);
}

.top-slogan span:last-child {
  color: var(--cyan);
}

.top-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 56px;
  font-size: 13px;
  font-weight: 800;
}

.download-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 250px;
  color: var(--cyan);
  white-space: nowrap;
}

.download-icon {
  background: url("assets/download-icon.svg") center / contain no-repeat;
  display: inline-block;
  flex: 0 0 auto;
  width: 28px;
  height: 32px;
}

.appendices-page {
  background: #f4f8fb;
}

.appendices-content {
  width: min(1500px, calc(100vw - 96px));
  margin: 0 auto;
}

.appendices-hero {
  min-height: clamp(320px, 31vw, 430px);
}

.appendices-hero__number-art {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: min(34vw, 620px);
  max-width: none;
  height: auto;
  opacity: 0.64;
  pointer-events: none;
}

.appendices-hero.report-hero--compact.report-hero--indicators .report-hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 1500px);
  margin-right: auto;
  margin-left: auto;
}

.appendices-hero.report-hero--compact .report-title {
  max-width: 650px;
  color: var(--cyan);
  font-size: clamp(52px, 3vw, 62px);
  line-height: 1.12;
  text-transform: none;
}

.appendices-content {
  padding-top: clamp(62px, 5vw, 86px);
  padding-bottom: clamp(96px, 9vw, 150px);
}

.appendices-download-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 4vw, 72px);
  align-items: center;
  padding: clamp(30px, 3vw, 48px) 0;
  border-top: 2px solid rgba(60, 85, 129, 0.18);
}

.appendices-download-row:last-child {
  border-bottom: 2px solid rgba(60, 85, 129, 0.18);
}

.appendices-download-row h2 {
  margin: 0;
  color: var(--ink);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.appendices-download-row__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 188px;
  min-height: 58px;
  padding: 12px 22px;
  color: var(--cyan);
  border: 2px solid var(--navy);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.appendices-download-row__link:hover,
.appendices-download-row__link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 45, 92, 0.14);
}

.contacts-page {
  background: #f4f8fb;
}

.contacts-hero {
  min-height: clamp(340px, 31vw, 440px);
}

.contacts-hero.report-hero--compact.report-hero--indicators .report-hero-content {
  width: min(100%, 1500px);
  margin-right: auto;
  margin-left: auto;
}

.contacts-hero.report-hero--compact .report-title {
  max-width: 820px;
  color: var(--cyan);
  font-size: clamp(52px, 3.2vw, 62px);
  line-height: 1.08;
  text-transform: none;
}

.contacts-content {
  width: min(1500px, calc(100vw - 96px));
  margin: 0 auto;
  padding: clamp(64px, 6vw, 104px) 0 clamp(96px, 9vw, 150px);
}

.contacts-panel {
  display: grid;
  grid-template-columns: minmax(340px, 0.86fr) minmax(560px, 1.14fr);
  gap: clamp(44px, 6vw, 112px);
  align-items: center;
  padding: clamp(22px, 3.8vw, 54px) 0;
}

.contacts-panel__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contacts-eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.contacts-panel__intro h2 {
  margin: 0;
  color: var(--ink);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contacts-panel__intro > p:not(.contacts-eyebrow) {
  max-width: 620px;
  margin: clamp(26px, 3vw, 42px) 0 0;
  color: #2b3744;
  font-size: clamp(18px, 1.1vw, 22px);
  font-weight: 500;
  line-height: 1.46;
}

.contacts-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-self: center;
  gap: 0;
}

.contacts-card {
  display: grid;
  grid-template-columns: clamp(42px, 3vw, 54px) 132px minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  min-height: 0;
  padding: clamp(18px, 2vw, 28px) 0;
  color: var(--ink);
  background: transparent;
  border-bottom: 2px solid rgba(60, 85, 129, 0.18);
  text-decoration: none;
  box-shadow: none;
  transition: color 180ms ease;
}

.contacts-card::after {
  content: none;
}

.contacts-card:hover,
.contacts-card:focus-visible {
  color: var(--cyan);
  outline: none;
}

.contacts-card__icon {
  display: grid;
  place-items: center;
  width: clamp(38px, 2.7vw, 48px);
  height: clamp(38px, 2.7vw, 48px);
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 50%;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.contacts-card__icon svg {
  display: block;
  width: 58%;
  height: 58%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contacts-card__label {
  color: var(--cyan);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.contacts-card strong {
  min-width: 0;
  color: var(--navy);
  font-size: clamp(24px, 2vw, 36px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  transition: color 180ms ease;
}

.contacts-card:hover strong,
.contacts-card:focus-visible strong {
  color: var(--cyan);
}

.contacts-card:hover .contacts-card__icon,
.contacts-card:focus-visible .contacts-card__icon {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.contacts-report-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(12px, 1.4vw, 18px);
  max-width: 560px;
  margin-top: clamp(22px, 2.6vw, 34px);
  padding: 0;
  color: var(--ink);
  background: transparent;
  border-radius: 0;
}

.contacts-report-meta div {
  display: grid;
  gap: 8px;
  padding-left: 0;
}

.contacts-report-meta span {
  color: #43586d;
  font-size: clamp(12px, 0.78vw, 14px);
  font-weight: 700;
  line-height: 1.35;
}

.contacts-report-meta strong {
  color: var(--navy);
  font-size: clamp(20px, 1.45vw, 26px);
  font-weight: 800;
  line-height: 1.12;
}

@media (max-width: 1100px) {
  .contacts-panel {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contacts-card-grid,
  .contacts-report-meta {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .appendices-content {
    width: min(100% - 32px, 1500px);
  }

  .appendices-hero.report-hero--indicators {
    min-height: 360px;
  }

  .appendices-hero__number-art {
    width: min(520px, 100%);
    opacity: 0.24;
  }

  .appendices-hero.report-hero--compact .report-title {
    font-size: 38px;
  }

  .appendices-download-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .appendices-download-row h2 {
    font-size: clamp(24px, 7vw, 34px);
  }

  .appendices-download-row__link {
    width: 100%;
    min-width: 0;
  }

  .contacts-content {
    width: min(100% - 32px, 1500px);
    padding-top: 54px;
  }

  .contacts-hero.report-hero--indicators {
    min-height: 360px;
  }

  .contacts-hero.report-hero--compact .report-title {
    font-size: 38px;
  }

  .contacts-panel,
  .contacts-card-grid,
  .contacts-report-meta {
    grid-template-columns: 1fr;
  }

  .contacts-panel {
    gap: 32px;
  }

  .contacts-panel__intro h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .contacts-card {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 8px 16px;
    align-items: center;
    min-height: 0;
  }

  .contacts-card__icon {
    grid-row: 1 / span 2;
    grid-column: 1;
  }

  .contacts-card__label,
  .contacts-card strong {
    grid-column: 2;
  }
}

.language-switcher {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
  color: var(--gold);
}

.language-switcher a {
  min-width: 22px;
  text-align: center;
}

.language-switcher a.is-active {
  color: var(--cyan);
}

.side-menu {
  position: fixed;
  z-index: 30;
  top: var(--topbar-height);
  bottom: 0;
  left: 0;
  width: var(--rail-width);
  padding: clamp(34px, 4.8vh, 52px) clamp(32px, 3.7vw, 71px) 34px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  box-shadow: 10px 0 18px rgba(0, 0, 0, 0.15);
  transform: translateX(calc(-1 * var(--rail-width)));
  transition: transform 240ms ease;
}

.side-menu nav {
  position: relative;
  z-index: 2;
  display: grid;
  max-height: calc(100vh - var(--topbar-height) - clamp(34px, 4.8vh, 52px) - 118px);
  padding-bottom: 10px;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-gutter: auto;
}

.side-menu nav::-webkit-scrollbar {
  width: 8px;
}

.side-menu nav::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.side-menu nav::-webkit-scrollbar-track {
  background: transparent;
}

.side-menu a,
.side-menu summary {
  min-height: 41px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.22;
  text-transform: uppercase;
  cursor: pointer;
}

.side-menu a:hover,
.side-menu summary:hover,
.side-menu summary:focus-visible {
  color: var(--gold);
}

.side-menu a[aria-current="page"] {
  color: var(--gold);
}

.side-menu details {
  border-bottom: 1px solid var(--line);
}

.side-menu details summary {
  border-bottom: 0;
  list-style: none;
  color: var(--white);
}

.side-menu details summary::-webkit-details-marker {
  display: none;
}

.side-menu details summary::after {
  content: "";
  margin-left: auto;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 10px solid var(--white);
}

.side-menu details[open] > summary {
  color: var(--gold);
}

.side-menu details summary:hover::after,
.side-menu details summary:focus-visible::after,
.side-menu details[open] > summary::after {
  border-top-color: var(--gold);
}

.side-menu details a {
  min-height: 24px;
  margin-left: 12px;
  border-bottom: 0;
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.28;
  text-transform: none;
}

.menu-ornament {
  position: absolute;
  left: -92px;
  bottom: -48px;
  width: 660px;
  max-width: none;
  opacity: 0.92;
  pointer-events: none;
}

.site-main {
  min-height: 100vh;
  margin-left: 0;
  padding-top: var(--topbar-height);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--topbar-height));
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(92px, 17vh, 190px) clamp(72px, 14.1vw, 270px) 72px;
  color: var(--white);
  background: var(--navy);
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -92px;
  width: 100vw;
  aspect-ratio: 3000 / 1712;
  background: url("assets/keyvisual-long-blueline.jpg") left bottom / 100% auto no-repeat;
}

.hero::after {
  display: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: clamp(420px, 29vw, 560px);
  margin-top: clamp(22px, 2vh, 42px);
}

.hero-copy--animate .report-lockup,
.hero-copy--animate .hero-slogan__letter,
.hero-copy--animate .hero-controls {
  opacity: 0;
  will-change: opacity, transform;
}

.hero-copy--animate .report-lockup {
  transform: translate3d(0, 16px, 0);
}

.hero-copy--animate .hero-slogan__letter {
  display: inline-block;
  transform: translate3d(0, 0.42em, 0);
}

.hero-copy--animate .hero-controls {
  transform: translate3d(0, 14px, 0);
}

.hero-copy--animate.is-animated .report-lockup,
.hero-copy--animate.is-animated .hero-slogan__letter,
.hero-copy--animate.is-animated .hero-controls {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-property: opacity, transform;
  transition-duration: 760ms;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-copy--animate.is-animated .report-lockup {
  transition-delay: 80ms;
}

.hero-copy--animate.is-animated .hero-slogan__letter {
  transition-delay: var(--hero-letter-delay, var(--hero-line-delay, 260ms));
  transition-duration: 420ms;
}

.hero-copy--animate.is-animated .hero-controls {
  transition-delay: 1900ms;
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy--animate .report-lockup,
  .hero-copy--animate .hero-slogan__letter,
  .hero-copy--animate .hero-controls,
  .hero-copy--animate.is-animated .report-lockup,
  .hero-copy--animate.is-animated .hero-slogan__letter,
  .hero-copy--animate.is-animated .hero-controls {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

.report-lockup {
  display: flex;
  align-items: flex-start;
  gap: clamp(32px, 2.8vw, 54px);
  margin-bottom: clamp(62px, 8.2vh, 90px);
}

.hero-year {
  color: var(--white);
  font-size: clamp(42px, 3.4vw, 65px);
  font-weight: 800;
  line-height: 0.92;
}

.hero-report {
  color: var(--white);
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
}

.hero-slogan {
  display: grid;
  gap: 6px;
  margin: 0;
  font-size: clamp(32px, 2.25vw, 43px);
  font-weight: 800;
  line-height: 1.06;
  text-transform: uppercase;
}

.hero-slogan > span:first-child {
  color: var(--gold);
}

.hero-slogan > span:not(:first-child) {
  color: var(--cyan);
}

.hero-controls {
  display: flex;
  gap: 28px;
  margin-top: clamp(78px, 8.1vh, 92px);
}

.hero-cta {
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 34px;
  border: 2px solid var(--white);
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 159, 227, 0.14);
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.hero-cta:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(0, 159, 227, 0.24);
}

@media (min-width: 1800px) {
  .hero {
    justify-content: center;
    min-height: calc(100vh - var(--topbar-height));
    padding: clamp(108px, 12.5vh, 144px) 120px 64px;
  }

  .hero::before {
    left: 0;
    bottom: -38px;
    width: 100vw;
  }

  .hero-copy {
    width: 520px;
    margin-top: 0;
    margin-left: min(34vw, 700px);
  }

  .report-lockup {
    margin-bottom: clamp(56px, 6.2vh, 72px);
  }

  .hero-controls {
    margin-top: clamp(54px, 6vh, 70px);
  }
}

.hero-arrow {
  position: relative;
  width: clamp(74px, 5.3vw, 100px);
  height: clamp(74px, 5.3vw, 100px);
  border: 3px solid var(--white);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.hero-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34%;
  height: 34%;
  border-top: 6px solid var(--white);
  border-left: 6px solid var(--white);
}

.hero-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45%;
  height: 6px;
  border-radius: 999px;
  background: var(--white);
}

.hero-arrow--prev::before {
  transform: translate(-38%, -50%) rotate(-45deg);
}

.hero-arrow--prev::after {
  transform: translate(-42%, -50%);
}

.hero-arrow--next::before {
  transform: translate(-62%, -50%) rotate(135deg);
}

.hero-arrow--next::after {
  transform: translate(-54%, -50%);
}

.concept,
.sections-overview,
.footer {
  padding: clamp(54px, 7vw, 108px) clamp(28px, 6.5vw, 126px);
}

.concept {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(320px, 1.22fr);
  gap: clamp(34px, 5vw, 86px);
  background: var(--white);
}

.concept .section-kicker {
  grid-column: 1 / -1;
}

.concept h2 {
  grid-column: 1;
}

.concept-text {
  grid-column: 2;
  grid-row: 2;
}

.section-kicker {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.concept h2,
.section-heading h2 {
  margin: 12px 0 0;
  color: var(--navy);
  font-size: clamp(30px, 3.3vw, 58px);
  font-weight: 800;
  line-height: 1.02;
  text-transform: uppercase;
}

.concept h2 {
  font-size: clamp(30px, 2.65vw, 52px);
}

.concept h2::first-line {
  color: var(--gold);
}

.concept-text {
  display: grid;
  gap: 20px;
  color: #243d58;
  font-size: clamp(16px, 1.05vw, 20px);
  font-weight: 500;
  line-height: 1.7;
}

.concept-text p {
  margin: 0;
}

.sections-overview {
  background: #eef5fb;
}

.section-heading {
  max-width: 860px;
  margin-bottom: clamp(30px, 4vw, 58px);
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.section-card {
  min-height: 190px;
  grid-column: span 6;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(2, 45, 92, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 38px rgba(2, 45, 92, 0.08);
}

.section-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
}

.section-card--feature {
  grid-column: span 6;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(2, 45, 92, 0.92), rgba(2, 45, 92, 0.76)),
    url("assets/keyvisual-long-blueline.jpg") center / cover no-repeat;
}

.section-card--deep {
  grid-column: span 6;
  min-height: 260px;
}

.card-number {
  color: var(--cyan);
  font-size: 14px;
  font-weight: 800;
}

.section-card--feature .card-number {
  color: var(--gold);
}

.section-card h3 {
  margin: 0;
  color: inherit;
  font-size: clamp(18px, 1.35vw, 26px);
  font-weight: 800;
  line-height: 1.16;
  text-transform: uppercase;
}

.section-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #425a73;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.42;
}

.section-card li {
  position: relative;
  padding-left: 18px;
}

.section-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  background: var(--navy);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-logo {
  display: block;
  width: min(260px, 44vw);
  height: auto;
}

.report-main {
  position: relative;
  min-height: 100vh;
  padding-top: var(--topbar-height);
  overflow-x: hidden;
  background: #f4f8fb;
}

.report-main--content-flow {
  min-height: 0;
}

.report-hero {
  position: relative;
  min-height: clamp(340px, 42vh, 520px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(96px, 12vh, 154px) clamp(28px, 9vw, 172px) clamp(64px, 9vh, 112px);
  color: var(--white);
  background: var(--navy);
}

.report-hero::before {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -170px;
  width: min(980px, 70vw);
  aspect-ratio: 3000 / 1712;
  background: url("assets/keyvisual-long-blueline.jpg") left bottom / contain no-repeat;
  opacity: 0.86;
}

.report-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
}

.report-hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 1040px);
  min-width: 0;
  margin-left: auto;
}

.report-hero--message {
  min-height: clamp(320px, 38vh, 440px);
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(520px, 1.08fr);
  align-items: stretch;
  padding: 0;
}

.report-hero--message::before {
  display: none;
}

.report-hero--message::after {
  display: none;
}

.report-hero--message .report-hero-content {
  width: auto;
  max-width: none;
  margin: 0;
  align-self: center;
  padding: clamp(76px, 9vh, 118px) clamp(42px, 5vw, 86px) clamp(70px, 8vh, 104px) clamp(58px, 9vw, 150px);
}

.report-hero--message .report-kicker {
  margin-bottom: 16px;
}

.report-hero--message .report-title {
  max-width: 560px;
  color: var(--cyan);
  font-size: clamp(32px, 3vw, 50px);
  line-height: 1.08;
}

.report-hero--compact {
  min-height: clamp(320px, 38vh, 440px);
  justify-content: flex-start;
  padding: clamp(76px, 9vh, 118px) clamp(42px, 5vw, 86px) clamp(70px, 8vh, 104px) clamp(58px, 9vw, 150px);
}

.report-hero--indicators {
  min-height: clamp(360px, 39vw, 540px);
  background:
    linear-gradient(90deg, rgba(0, 45, 95, 0.14) 0%, rgba(0, 45, 95, 0) 44%),
    url("assets/key-indicators-hero-bg.jpg") center bottom / cover no-repeat,
    var(--navy);
}

.report-hero--indicators::before {
  display: none;
}

.report-hero--indicators::after {
  display: none;
}

.report-hero--compact .report-hero-content {
  width: min(100%, 640px);
  margin-left: clamp(86px, 8vw, 130px);
}

.report-hero--compact.report-hero--indicators .report-hero-content {
  width: min(100%, 650px);
  margin-left: clamp(44px, 4vw, 90px);
  margin-right: auto;
}

.report-hero--compact .report-kicker {
  margin-bottom: 16px;
}

.report-hero--compact .report-title {
  color: var(--cyan);
  font-size: clamp(32px, 3vw, 50px);
  line-height: 1.08;
}

.key-indicators-page {
  --key-indicators-content-width: 1760px;
  --key-indicators-content-gutter: clamp(48px, 5vw, 96px);
}

.key-indicators-page .report-hero--indicators {
  padding-right: var(--key-indicators-content-gutter);
  padding-left: var(--key-indicators-content-gutter);
}

.key-indicators-page .report-hero--compact.report-hero--indicators .report-hero-content {
  width: min(100%, var(--key-indicators-content-width));
  margin-right: auto;
  margin-left: auto;
}

.key-indicators-page .report-hero--compact.report-hero--indicators .report-title {
  max-width: 650px;
}

.report-portrait {
  position: relative;
  z-index: 1;
  min-height: inherit;
  margin: 0;
  overflow: hidden;
}

.report-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 900px) {
  .report-hero--message {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .report-hero--message .report-hero-content {
    width: 100%;
    max-width: none;
    padding: 92px 24px 42px;
  }

  .report-hero--message .report-title {
    max-width: calc(100vw - 48px);
  }

  .report-portrait {
    width: 100%;
    min-height: 320px;
    aspect-ratio: 1.05 / 1;
  }
}


.report-kicker {
  margin: 0 0 24px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.report-title {
  max-width: 920px;
  margin: 0;
  color: var(--white);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.04;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.section-hero {
  position: relative;
  min-height: calc(100vh - var(--topbar-height));
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(460px, 0.82fr);
  gap: clamp(54px, 7.2vw, 138px);
  align-items: stretch;
  overflow: hidden;
  padding: clamp(74px, 9vh, 118px) clamp(96px, 10vw, 190px) clamp(76px, 9vh, 126px);
  color: var(--white);
  background:
    radial-gradient(circle at 78% 42%, rgba(0, 159, 227, 0.16), transparent 31%),
    linear-gradient(135deg, #042b58 0%, var(--navy) 58%, #001f44 100%);
}

.section-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
}

.section-hero__left,
.section-hero__right {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.section-hero__left {
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: start;
}

.section-hero__number {
  width: clamp(86px, 7vw, 132px);
  height: clamp(86px, 7vw, 132px);
  display: grid;
  place-items: center;
  border: 3px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: clamp(30px, 3vw, 58px);
  font-weight: 800;
  line-height: 1;
}

.section-hero__title-block {
  align-self: center;
}

.section-hero__kicker {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: clamp(13px, 0.95vw, 16px);
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-hero__title {
  max-width: 760px;
  margin: 0;
  color: var(--cyan);
  font-size: clamp(44px, 4.6vw, 78px);
  font-weight: 800;
  line-height: 1.04;
  text-transform: uppercase;
}

.section-hero__title span {
  display: block;
}

.section-hero__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 560px;
}

.section-hero__ray {
  position: absolute;
  top: 50%;
  right: clamp(-86px, -3.5vw, -34px);
  width: clamp(160px, 13vw, 260px);
  height: min(80vh, 760px);
  background:
    radial-gradient(ellipse at 50% 48%, rgba(255, 255, 255, 0.94) 0%, rgba(235, 195, 38, 0.72) 7%, rgba(0, 159, 227, 0.38) 23%, rgba(0, 159, 227, 0) 58%),
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.78) 40%, rgba(0, 159, 227, 0.74) 50%, transparent 100%);
  filter: blur(1px);
  opacity: 0.92;
  transform: translateY(-50%);
  pointer-events: none;
}

.section-hero__ray::after {
  display: none;
}

.section-hero__subsections {
  position: relative;
  z-index: 2;
  width: min(100%, 650px);
  padding: clamp(34px, 4vw, 58px) 0 clamp(34px, 4vw, 58px) clamp(34px, 4vw, 58px);
  border-left: 3px solid rgba(0, 159, 227, 0.72);
  background: linear-gradient(90deg, rgba(0, 31, 68, 0.48), rgba(0, 31, 68, 0));
}

.section-hero__subsections p {
  margin: 0 0 24px;
  color: var(--gold);
  font-size: clamp(13px, 0.95vw, 16px);
  font-weight: 800;
  text-transform: uppercase;
}

.section-hero__subsections ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.section-hero__subsections li {
  position: relative;
  padding-left: 22px;
  color: var(--white);
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 700;
  line-height: 1.32;
}

.section-hero__subsections li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
}

.section-hero--redesign {
  --environment-green: #74bd59;
  --section-accent-rgb: 116, 189, 89;
  position: relative;
  height: 600px;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 88px clamp(92px, 7.8vw, 150px) 74px;
  background: var(--navy);
}

.section-hero--redesign::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: url("assets/environment-hero-ray.png") left top / 100% 100% no-repeat;
  pointer-events: none;
}

.section-hero--redesign::after {
  display: none;
}

.section-hero--redesign .section-hero__number-art {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 600px;
  height: auto;
  max-width: none;
  pointer-events: none;
}

.section-hero__content {
  position: relative;
  z-index: 3;
  width: min(100%, 1500px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(88px, 8vw, 150px);
  align-content: center;
  align-items: start;
}

.section-hero__section-label {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 8px 0 34px;
  color: var(--environment-green);
  font-size: clamp(42px, 3.25vw, 62px);
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
}

.section-hero__current-title {
  grid-column: 1 / -1;
  grid-row: 1;
  max-width: 980px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.section-hero .section-hero__current-title {
  opacity: 1;
}

.section-hero__animated-line--letters {
  animation: none;
}

.section-hero__title-word {
  display: inline-block;
  white-space: nowrap;
}

.section-hero__title-letter {
  display: inline-block;
  opacity: 0;
  transform: translateX(-0.6em);
  animation: hero-letter-in 320ms ease-out both;
  animation-delay: calc(var(--letter-index) * 14ms);
  will-change: opacity, transform;
}

@keyframes hero-letter-in {
  from {
    opacity: 0;
    transform: translateX(-0.6em);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-hero .section-hero__current-title {
    animation: none;
    opacity: 1;
  }

  .section-hero__title-letter {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.section-hero__tabs {
  grid-column: 1 / -1;
  grid-row: 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
  gap: 18px clamp(86px, 8vw, 150px);
  width: min(100%, 1240px);
  padding-top: 0;
}

.section-hero__tab {
  position: relative;
  min-height: 20px;
  display: flex;
  align-items: center;
  padding: 0 0 0 42px;
  border: 0;
  border-radius: 0;
  color: var(--white);
  background: transparent;
  box-shadow: none;
  font-size: clamp(12px, 0.82vw, 15px);
  font-weight: 800;
  line-height: 1.35;
  text-transform: none;
  transition: color 180ms ease, transform 180ms ease;
}

.section-hero__tab::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.45em;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--environment-green);
  box-shadow: 0 0 0 0 rgba(var(--section-accent-rgb), 0.35);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.section-hero__tab:hover {
  color: var(--environment-green);
  transform: translateX(4px);
}

.section-hero__tab.is-active {
  color: var(--environment-green);
  background: transparent;
  box-shadow: none;
}

.section-hero__tab.is-active::before {
  box-shadow: 0 0 0 6px rgba(var(--section-accent-rgb), 0.18);
  transform: scale(1.08);
}

.section-hero--company {
  --environment-green: var(--section-company-accent);
  --section-accent-rgb: var(--section-company-accent-rgb);
}

.section-hero--company .section-hero__number-art {
  width: min(32vw, 600px);
  opacity: 0.68;
}

.section-hero--company .section-hero__section-label {
  grid-row: 1;
  max-width: 980px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.section-hero--company .section-hero__current-title {
  grid-row: 2;
  margin: 8px 0 34px;
  color: var(--environment-green);
  font-size: clamp(42px, 3.25vw, 62px);
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
}

.section-hero--company .section-hero__tabs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: none;
  grid-auto-flow: row;
  width: min(100%, 900px);
}

.section-hero--strategy {
  --environment-green: var(--section-strategy-accent);
  --section-accent-rgb: var(--section-strategy-accent-rgb);
}

.section-hero--strategy .section-hero__number-art {
  width: min(34vw, 620px);
  opacity: 0.68;
}

.section-hero--strategy .section-hero__section-label {
  grid-row: 1;
  max-width: 1120px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.section-hero--strategy .section-hero__current-title {
  grid-row: 2;
  margin: 8px 0 34px;
  color: var(--environment-green);
  font-size: clamp(42px, 3.25vw, 62px);
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
}

.section-hero--strategy .section-hero__tabs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  width: min(100%, 1180px);
}

.section-hero--governance {
  --environment-green: var(--section-governance-accent);
  --section-accent-rgb: var(--section-governance-accent-rgb);
}

.section-hero--social {
  --environment-green: var(--section-social-accent);
  --section-accent-rgb: var(--section-social-accent-rgb);
}

.section-hero--safety {
  --environment-green: var(--section-safety-accent);
  --section-accent-rgb: var(--section-safety-accent-rgb);
}

.section-hero--governance .section-hero__number-art,
.section-hero--social .section-hero__number-art,
.section-hero--safety .section-hero__number-art {
  width: min(34vw, 620px);
  opacity: 0.68;
}

.section-hero--governance .section-hero__section-label,
.section-hero--social .section-hero__section-label,
.section-hero--safety .section-hero__section-label {
  grid-row: 1;
  max-width: 1120px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.section-hero--governance .section-hero__current-title,
.section-hero--social .section-hero__current-title,
.section-hero--safety .section-hero__current-title {
  grid-row: 2;
  margin: 8px 0 34px;
  color: var(--environment-green);
  font-size: clamp(42px, 3.25vw, 62px);
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
}

.section-hero--safety .section-hero__current-title {
  font-size: clamp(36px, 2.85vw, 54px);
}

.section-hero--governance .section-hero__tabs,
.section-hero--safety .section-hero__tabs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
  width: min(100%, 1180px);
}

.section-hero--social .section-hero__tabs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
  width: min(100%, 980px);
}

.subsection-sheet {
  padding: clamp(64px, 7vw, 104px) 0 clamp(78px, 8vw, 128px);
  background: #f4f8fb;
}

.subsection-sheet__page {
  width: min(1180px, calc(100% - 56px));
  min-height: 760px;
  margin: 0 auto;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 46px rgba(2, 45, 92, 0.1);
}

.company-profile-page .subsection-sheet,
.company-business-model-page .subsection-sheet {
  padding: 72px 0 112px;
  background: #f6fafc;
}

.company-profile-page .subsection-sheet {
  padding-bottom: 0;
}

.company-profile-page .subsection-sheet__page,
.company-business-model-page .subsection-sheet__page {
  width: min(1500px, calc(100% - 80px));
  min-height: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.company-profile-content {
  display: grid;
  gap: 64px;
  color: #3a3a3a;
}

.company-profile-panel {
  position: relative;
  min-width: 0;
  background: transparent;
}

.company-profile-panel--overview {
  padding: 0;
}

.company-profile-panel__header {
  margin: 0 0 26px;
}

.company-profile-panel__header h2,
.company-group-content h2 {
  margin: 0;
  color: #09abe8;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.08;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
}

.company-profile-panel__header h2 {
  text-transform: uppercase;
}

.company-profile-gri {
  margin: 24px 0 0;
  color: #20262c;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.52;
}

.company-profile-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: 100%;
}

.company-profile-intro-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: start;
  width: min(1500px, 100%);
}

.company-profile-intro p,
.company-group-content p,
.company-profile-list li {
  color: #3a3a3a;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.52;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.company-profile-intro p,
.company-group-content p {
  margin: 0 0 20px;
}

.shareholder-structure {
  margin-top: 54px;
}

.shareholder-structure h3 {
  margin: 0 0 26px;
  color: #3a3a3a;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
}

.shareholder-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 86px 120px;
  width: 100%;
  margin: 48px 0 0;
}

.shareholder-card {
  display: grid;
  grid-template-rows: 132px auto auto;
  justify-items: start;
  align-items: start;
  min-width: 0;
  text-align: left;
}

.shareholder-card p {
  max-width: 260px;
  min-height: 42px;
  margin: 16px 0 12px;
  color: #2f3439;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.26;
}

.shareholder-card strong {
  display: block;
  color: #10b8eb;
  font-size: 54px;
  font-weight: 800;
  line-height: 1;
}

.shareholder-logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-width: 0;
  width: 100%;
  height: 132px;
}

.shareholder-logo img {
  display: block;
  max-width: 100%;
  object-fit: contain;
}

.shareholder-logo--samruk {
  gap: 14px;
}

.shareholder-logo--samruk img:first-child {
  width: 104px;
}

.shareholder-logo--samruk img:last-child {
  width: 222px;
}

.shareholder-logo--emblem img {
  width: 116px;
  height: 116px;
}

.shareholder-logo--nbk {
  gap: 14px;
}

.shareholder-logo--nbk img:first-child {
  width: 102px;
}

.shareholder-logo--nbk img:last-child {
  width: 150px;
}

.shareholder-logo--nbk img:only-child {
  width: 102px;
}

.shareholder-logo--markets {
  gap: 11px;
}

.shareholder-logo--markets img:nth-child(1) {
  width: 170px;
}

.shareholder-logo--markets img:nth-child(2) {
  width: 45px;
}

.shareholder-logo--markets img:nth-child(3) {
  width: 160px;
}

.company-profile-building {
  width: 100%;
  height: clamp(420px, 34vw, 560px);
  margin: 0;
  overflow: hidden;
  background: #dce8ef;
}

.company-profile-building img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.company-profile-building--intro {
  height: clamp(420px, 32vw, 560px);
  align-self: start;
}

.company-profile-building--intro img {
  object-position: center top;
}

.company-profile-panel--group {
  display: block;
  min-height: 0;
}

.company-group-content {
  min-width: 0;
  padding: 0;
}

.company-group-content h2 {
  margin-bottom: 30px;
  color: #3a3a3a;
  font-size: 34px;
  line-height: 1.15;
}

.company-group-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: start;
}

.company-profile-list {
  display: grid;
  gap: 12px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.company-profile-list li {
  position: relative;
  padding-left: 38px;
}

.company-profile-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 18px;
  height: 18px;
  border: 3px solid #10b8eb;
  border-radius: 50%;
  background: #f6fafc;
  box-shadow: inset 0 0 0 3px #f6fafc, inset 0 0 0 7px #10b8eb;
  box-sizing: border-box;
}

.company-profile-panel sup {
  font-size: 0.65em;
  font-weight: 800;
  line-height: 0;
  vertical-align: super;
}

.company-group-content .company-profile-footnote {
  margin: 46px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(2, 45, 92, 0.14);
  font-size: 11px;
  line-height: 1.45;
}

.company-profile-scroll-animations .company-profile-content .company-profile-scroll-animate {
  opacity: 0;
  will-change: opacity, transform;
}

.company-profile-scroll-animations .company-profile-content .company-profile-scroll-animate.is-ready {
  transition-property: opacity, transform;
  transition-duration: var(--company-profile-duration, 760ms);
  transition-timing-function: var(--company-profile-easing, cubic-bezier(0.22, 1, 0.36, 1));
  transition-delay: var(--company-profile-delay, 0ms);
}

.company-profile-scroll-animations .company-profile-content--calm-scroll .company-profile-scroll-animate--soft-title {
  transform: translate3d(0, 20px, 0);
}

.company-profile-scroll-animations .company-profile-content--calm-scroll .company-profile-scroll-animate--soft-rise {
  transform: translate3d(0, 16px, 0);
}

.company-profile-scroll-animations .company-profile-content--calm-scroll .company-profile-scroll-animate--soft-heading {
  transform: translate3d(0, 10px, 0);
}

.company-profile-scroll-animations .company-profile-content--calm-scroll .company-profile-scroll-animate--soft-image {
  transform: translate3d(0, 14px, 0);
}

.company-profile-scroll-animations .company-profile-content .company-profile-scroll-animate.is-animated {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .company-profile-scroll-animations .company-profile-content .company-profile-scroll-animate,
  .company-profile-scroll-animations .company-profile-content .company-profile-scroll-animate.is-ready,
  .company-profile-scroll-animations .company-profile-content .company-profile-scroll-animate.is-animated {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

.geography-operations {
  --geography-map-overlay-x: -7%;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-width: 0;
}

.geography-operations__map {
  position: relative;
  width: 100%;
  aspect-ratio: 1190.55 / 751.181;
  overflow: hidden;
  background: #012c5f;
}

.geography-operations__stage {
  position: absolute;
  inset: 0;
  container-type: inline-size;
  isolation: isolate;
}

.geography-operations__stage::before,
.geography-operations__stage::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 8;
  width: 3px;
  background: #012c5f;
  pointer-events: none;
}

.geography-operations__stage::before {
  left: -1px;
}

.geography-operations__stage::after {
  right: -1px;
}

@media (min-width: 1800px) {
  .geography-operations__map {
    height: calc(100vh - var(--topbar-height));
    min-height: min(820px, calc(100vh - var(--topbar-height)));
    aspect-ratio: auto;
    display: grid;
    place-items: center;
    background: #012c5f;
  }

  .geography-operations__stage {
    position: relative;
    inset: auto;
    width: min(100vw, calc(168vh - 96px));
    max-width: none;
    aspect-ratio: 1190.55 / 751.181;
    transform: translateX(clamp(0px, calc((100vw - 168vh + 96px) * 0.16), 58px));
  }
}

.geography-operations__stage img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  user-select: none;
}

.geography-operations__bg {
  object-fit: fill;
}

.geography-operations__vectors,
.geography-operations__labels {
  object-fit: fill;
  pointer-events: none;
}

.geography-operations__vectors--map,
.geography-operations__labels--map {
  transform: translateX(var(--geography-map-overlay-x));
}

.geography-operations__intro {
  position: absolute;
  z-index: 4;
  left: 4.286%;
  top: 5.7%;
  width: 34%;
  pointer-events: none;
  text-transform: uppercase;
}

.geography-operations__intro h2 {
  margin: 0 0 clamp(18px, 1.9vw, 28px);
  color: #00aeef;
  font-size: clamp(34px, 2.69vw, 52px);
  font-weight: 800;
  line-height: 1.22;
}

.geography-operations__intro p {
  margin: 0;
  max-width: 420px;
  color: #f6fafc;
  font-size: clamp(10px, 0.7vw, 13.5px);
  font-weight: 800;
  line-height: 1.34;
}

.geography-operations__legend {
  position: absolute;
  inset: 0;
  z-index: 4;
  color: #ffffff;
  font-weight: 700;
  pointer-events: none;
}

.geography-operations__legend-text,
.geography-operations__legend-number {
  position: absolute;
  left: var(--left);
  top: var(--top);
  display: block;
  white-space: nowrap;
}

.geography-operations__legend-text {
  transform: translateY(-72%);
  font-size: 8px;
  font-size: 0.588cqw;
  line-height: 1;
}

.geography-operations__legend-text--left {
  font-size: 7px;
  font-size: 0.504cqw;
  text-transform: uppercase;
}

.geography-operations__legend-text--pipeline::before {
  content: "";
  position: absolute;
  right: calc(100% + 1.11cqw);
  top: 50%;
  width: 1.45cqw;
  border-top: 0.14cqw solid #ffffff;
  transform: translateY(-50%);
}

.section-hero--redesign:not(.section-hero--environment) .section-hero__section-label,
.section-hero--redesign.section-hero--environment .section-hero__current-title {
  display: none;
}

.geography-operations__legend-number {
  min-width: 1.2cqw;
  transform: translate(-50%, -50%);
  font-size: 11px;
  font-size: 0.756cqw;
  line-height: 1;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.geography-operations__hotspots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.geography-operations__hotspots--map {
  transform: translateX(var(--geography-map-overlay-x));
}

.geography-operations__hotspot {
  position: absolute;
  display: block;
  left: var(--left);
  top: var(--top);
  z-index: 2;
  width: var(--size);
  min-width: 16px;
  aspect-ratio: 1;
  border: 1px solid transparent;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  transform-origin: center;
  pointer-events: none;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.geography-operations__hotspot::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(16, 184, 235, 0);
  border-radius: inherit;
  opacity: 0;
  transform: scale(0.78);
}

.geography-operations__hotspot.is-random-active {
  z-index: 3;
  border-color: rgba(255, 255, 255, 0.95);
  background-color: rgba(16, 184, 235, 0.24);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.26), 0 0 22px rgba(16, 184, 235, 0.78), 0 0 42px rgba(255, 255, 255, 0.32);
  animation: geographyHotspotBlink 720ms both;
}

.geography-operations__hotspot.is-random-active::after {
  animation: geographyHotspotPulse 720ms cubic-bezier(0.37, 0, 0.63, 1);
}

@keyframes geographyHotspotBlink {
  0% {
    transform: translate(-50%, -50%) scale(1);
    animation-timing-function: cubic-bezier(0.37, 0, 0.63, 1);
  }

  62% {
    transform: translate(-50%, -50%) scale(1.24);
    animation-timing-function: cubic-bezier(0.37, 0, 0.63, 1);
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes geographyHotspotPulse {
  0% {
    opacity: 0.75;
    border-color: rgba(16, 184, 235, 0.72);
    transform: scale(0.86);
  }

  70% {
    opacity: 0.12;
  }

  100% {
    opacity: 0;
    border-color: rgba(16, 184, 235, 0);
    transform: scale(1.85);
  }
}

.business-model-spread {
  width: 100%;
  margin: 0 auto;
  background: #f6fafc;
}

.business-model-spread__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1192.55 / 753.181;
  overflow: hidden;
  container-type: inline-size;
  color: #ffffff;
}

.business-model-spread__connector {
  position: absolute;
  left: 45.9%;
  top: 55.79%;
  z-index: 1;
  display: block;
  width: 8.75%;
  border-top: 4px dotted #00aeef;
  transform: translateY(-50%);
  pointer-events: none;
}

.business-model-spread__title {
  position: absolute;
  left: 0;
  top: 7%;
  z-index: 2;
  width: 48%;
  margin: 0;
  color: #00aeef;
  font-size: clamp(24px, 2.34cqw, 38px);
  font-weight: 800;
  line-height: 1.16;
  text-transform: uppercase;
  letter-spacing: 0;
}

.business-model-spread__subtitle {
  position: absolute;
  left: 0;
  top: 17.25%;
  z-index: 2;
  margin: 0;
  color: #3a3a3a;
  font-size: clamp(19px, 1.62cqw, 27px);
  font-weight: 800;
  line-height: 1.1;
}

.business-model-card {
  position: absolute;
  top: 21.27%;
  z-index: 2;
  width: 21.46%;
  height: 69.06%;
  min-width: 0;
  pointer-events: none;
}

.business-model-card--advantages {
  left: 0.09%;
}

.business-model-card--activities {
  left: 23.35%;
}

.business-model-card--priorities {
  left: 55.2%;
}

.business-model-card--stakeholders {
  left: 78.47%;
}

.business-model-card__inner {
  position: absolute;
  inset: 0;
  box-sizing: border-box;
}

.business-model-card--activities .business-model-card__inner,
.business-model-card--priorities .business-model-card__inner,
.business-model-card--stakeholders .business-model-card__inner {
  padding: 0;
}

.business-model-card h3 {
  position: absolute;
  top: 5.12%;
  left: var(--heading-left, 10%);
  right: var(--heading-right, 7.5%);
  margin: 0;
  color: #ffffff;
  font-size: clamp(10px, 0.98cqw, 15.5px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
  white-space: nowrap;
}

.business-model-card--activities h3 {
  --heading-left: 14.8%;
  --heading-right: 6%;
}

.business-model-card--priorities h3 {
  --heading-left: 17.2%;
  --heading-right: 2.5%;
}

.business-model-card--stakeholders h3 {
  --heading-left: 17.2%;
  --heading-right: 5%;
}

.business-model-advantages,
.business-model-list {
  margin: 0;
  padding: 0;
  color: #ffffff;
  font-weight: 600;
}

.business-model-advantages {
  display: block;
  list-style: none;
  font-size: clamp(7.5px, 0.74cqw, 11.4px);
  line-height: 1.28;
}

.business-model-advantages li {
  position: absolute;
  left: 10%;
  right: 7.4%;
  top: var(--item-top);
  margin: 0;
}

.business-model-list {
  display: block;
  font-size: clamp(7px, 0.7cqw, 10.8px);
  font-weight: 500;
  line-height: 1.24;
}

.business-model-list p {
  position: absolute;
  left: var(--body-left, 27%);
  right: var(--body-right, 7.2%);
  top: var(--item-top);
}

.business-model-card--activities .business-model-list {
  font-size: clamp(7px, 0.68cqw, 10.6px);
  --body-left: 27%;
  --body-right: 10.8%;
}

.business-model-card--priorities .business-model-list {
  font-size: clamp(7px, 0.68cqw, 10.6px);
  --body-left: 34%;
  --body-right: 6.5%;
}

.business-model-card--stakeholders .business-model-list {
  font-size: clamp(7px, 0.66cqw, 10.4px);
  --body-left: 31%;
  --body-right: 8.5%;
}

.business-model-advantages li:nth-child(1) {
  --item-top: 11.3%;
}

.business-model-advantages li:nth-child(2) {
  --item-top: 19.1%;
}

.business-model-advantages li:nth-child(3) {
  --item-top: 27%;
}

.business-model-advantages li:nth-child(4) {
  --item-top: 32.6%;
}

.business-model-advantages li:nth-child(5) {
  --item-top: 40.4%;
}

.business-model-advantages li:nth-child(6) {
  --item-top: 48.3%;
}

.business-model-advantages li:nth-child(7) {
  --item-top: 56.1%;
}

.business-model-advantages li:nth-child(8) {
  --item-top: 64%;
}

.business-model-card--activities .business-model-list p:nth-child(1) {
  --item-top: 11.3%;
}

.business-model-card--activities .business-model-list p:nth-child(2) {
  --item-top: 29.5%;
}

.business-model-card--activities .business-model-list p:nth-child(3) {
  --item-top: 45.9%;
}

.business-model-card--activities .business-model-list p:nth-child(4) {
  --item-top: 64.1%;
}

.business-model-card--activities .business-model-list p:nth-child(5) {
  --item-top: 78.5%;
}

.business-model-card--priorities .business-model-list p:nth-child(1) {
  --item-top: 10.8%;
}

.business-model-card--priorities .business-model-list p:nth-child(2) {
  --item-top: 22.9%;
}

.business-model-card--priorities .business-model-list p:nth-child(3) {
  --item-top: 41.3%;
}

.business-model-card--priorities .business-model-list p:nth-child(4) {
  --item-top: 57.7%;
}

.business-model-card--stakeholders .business-model-list p:nth-child(1) {
  --item-top: 11.3%;
}

.business-model-card--stakeholders .business-model-list p:nth-child(2) {
  --item-top: 21.8%;
}

.business-model-card--stakeholders .business-model-list p:nth-child(3) {
  --item-top: 32.5%;
}

.business-model-card--stakeholders .business-model-list p:nth-child(4) {
  --item-top: 49.5%;
}

.business-model-card--stakeholders .business-model-list p:nth-child(5) {
  --item-top: 60.2%;
}

.business-model-card--stakeholders .business-model-list p:nth-child(6) {
  --item-top: 72.7%;
}

.business-model-card--stakeholders .business-model-list p:nth-child(7) {
  --item-top: 83.2%;
}

.business-model-list p {
  margin: 0;
}

.business-model-list strong {
  font-weight: 800;
}

.business-model-highlight {
  background: rgba(31, 72, 112, 0.55);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0.02em 0.18em 0.04em;
}

.business-model-card--controlled {
  --card-bg: #00aeef;
  --item-left: 10%;
  --item-right: 7.4%;
  --icon-track: 0px;
  --icon-size: 38px;
  overflow: hidden;
  border-radius: 0 30px 0 30px;
  background: var(--card-bg);
}

.business-model-card--activities {
  --card-bg: #3b5582;
  --item-left: 10%;
  --item-right: 10.8%;
  --icon-track: 17%;
  --icon-size: 36px;
}

.business-model-card--priorities {
  --card-bg: #57b7b8;
  --item-left: 14%;
  --item-right: 6.5%;
  --icon-track: 20%;
  --icon-size: 36px;
}

.business-model-card--stakeholders {
  --card-bg: #b369aa;
  --item-left: 10%;
  --item-right: 8.5%;
  --icon-track: 21%;
  --icon-size: 34px;
}

.business-model-card--controlled .business-model-card__inner {
  position: absolute;
  inset: 0;
}

.business-model-card--controlled h3,
.business-model-card--controlled .business-model-advantages li,
.business-model-card--controlled .business-model-list p {
  z-index: 2;
}

.business-model-card--controlled .business-model-list p {
  left: var(--item-left);
  right: var(--item-right);
  min-height: var(--icon-size);
  padding-left: var(--icon-track);
}

.business-model-card--controlled .business-model-list p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.05em;
  width: var(--icon-size);
  height: var(--icon-size);
  background: var(--icon-image) center / contain no-repeat;
}

.business-model-card--activities .business-model-list p:nth-child(1) {
  --icon-image: url("assets/service-icons/drilling.svg");
}

.business-model-card--activities .business-model-list p:nth-child(2) {
  --icon-image: url("assets/service-icons/transport.svg");
}

.business-model-card--activities .business-model-list p:nth-child(3) {
  --icon-image: url("assets/service-icons/marine.svg");
}

.business-model-card--activities .business-model-list p:nth-child(4) {
  --icon-image: url("assets/service-icons/equipment.svg");
}

.business-model-card--activities .business-model-list p:nth-child(5) {
  --icon-image: url("assets/service-icons/technical-service.svg");
}

.business-model-card--priorities .business-model-list p:nth-child(1) {
  --icon-image: url("assets/service-icons/well-repair.svg");
}

.business-model-card--priorities .business-model-list p:nth-child(2) {
  --icon-image: url("assets/service-icons/automation.svg");
}

.business-model-card--priorities .business-model-list p:nth-child(3) {
  --icon-image: url("assets/service-icons/equipment.svg");
}

.business-model-card--priorities .business-model-list p:nth-child(4) {
  --icon-image: url("assets/service-icons/water.svg");
}

.business-model-card--stakeholders .business-model-list p:nth-child(1) {
  --icon-image: url("assets/practice-icon.svg");
}

.business-model-card--stakeholders .business-model-list p:nth-child(2) {
  --icon-image: url("assets/service-icons/equipment.svg");
}

.business-model-card--stakeholders .business-model-list p:nth-child(3) {
  --icon-image: url("assets/service-icons/automation.svg");
}

.business-model-card--stakeholders .business-model-list p:nth-child(4) {
  --icon-image: url("assets/service-icons/technical-service.svg");
}

.business-model-card--stakeholders .business-model-list p:nth-child(5) {
  --icon-image: url("assets/service-icons/water.svg");
}

.business-model-card--stakeholders .business-model-list p:nth-child(6) {
  --icon-image: url("assets/service-icons/catering.svg");
}

.business-model-card--stakeholders .business-model-list p:nth-child(7) {
  --icon-image: url("assets/service-icons/well-repair.svg");
}

.business-model-card--activities .business-model-card__inner::before,
.business-model-card--priorities .business-model-card__inner::before,
.business-model-card--stakeholders .business-model-card__inner::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 20%;
  bottom: 15%;
  left: calc(var(--item-left) + (var(--icon-size) / 2));
  border-left: 4px dotted rgba(255, 255, 255, 0.92);
}

.business-model-card--priorities .business-model-card__inner::before {
  top: 19%;
  bottom: 34%;
}

.business-model-card--stakeholders .business-model-card__inner::before {
  top: 19%;
  bottom: 14%;
}

.business-model-card--advantages::after,
.business-model-card--priorities::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 10%;
  right: 8%;
  bottom: 6.5%;
  height: 86px;
  background: #ffffff;
  -webkit-mask: url("assets/practice-ornament.svg") left bottom / 100% auto no-repeat;
  mask: url("assets/practice-ornament.svg") left bottom / 100% auto no-repeat;
  pointer-events: none;
}

.business-model-flow-arrow {
  position: absolute;
  z-index: 5;
  top: 55.79%;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 6px solid #ffffff;
  border-radius: 50%;
  background: #00aeef;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.business-model-flow-arrow::before {
  content: "";
  width: 15px;
  height: 15px;
  border-top: 5px solid #ffffff;
  border-right: 5px solid #ffffff;
  transform: translateX(-2px) rotate(45deg);
}

.business-model-flow-arrow--first {
  left: 22.45%;
}

.business-model-flow-arrow--second {
  left: 45.35%;
}

.business-model-flow-arrow--third {
  left: 54.95%;
}

.business-model-flow-arrow--fourth {
  left: 77.55%;
}

.company-business-model-scroll-animations .company-business-model-content .company-business-model-scroll-animate {
  opacity: 0;
  will-change: opacity, transform;
}

.company-business-model-scroll-animations .company-business-model-content .company-business-model-scroll-animate.is-ready {
  transition-property: opacity, transform;
  transition-duration: var(--company-business-model-duration, 760ms);
  transition-timing-function: var(--company-business-model-easing, cubic-bezier(0.22, 1, 0.36, 1));
  transition-delay: var(--company-business-model-delay, 0ms);
}

.company-business-model-scroll-animations .company-business-model-content--calm-scroll .company-business-model-scroll-animate--soft-title {
  transform: translate3d(0, 20px, 0);
}

.company-business-model-scroll-animations .company-business-model-content--calm-scroll .company-business-model-scroll-animate--soft-rise {
  transform: translate3d(0, 16px, 0);
}

.company-business-model-scroll-animations .company-business-model-content--calm-scroll .company-business-model-scroll-animate--soft-heading {
  transform: translate3d(0, 10px, 0);
}

.company-business-model-scroll-animations .company-business-model-content--calm-scroll .company-business-model-scroll-animate--soft-image,
.company-business-model-scroll-animations .company-business-model-content--calm-scroll .company-business-model-scroll-animate--soft-table {
  transform: translate3d(0, 14px, 0);
}

.company-business-model-scroll-animations .company-business-model-content .company-business-model-scroll-animate.is-animated {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .company-business-model-scroll-animations .company-business-model-content .company-business-model-scroll-animate,
  .company-business-model-scroll-animations .company-business-model-content .company-business-model-scroll-animate.is-ready,
  .company-business-model-scroll-animations .company-business-model-content .company-business-model-scroll-animate.is-animated {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

.company-business-model-content {
  display: grid;
  gap: 86px;
  color: #263746;
}

.company-business-model-section {
  display: grid;
  gap: 30px;
  min-width: 0;
}

.company-business-model-section__header {
  display: grid;
  gap: 10px;
  padding-top: 32px;
  border-top: 2px solid rgba(60, 85, 129, 0.18);
}

.company-business-model-section:first-child .company-business-model-section__header {
  padding-top: 0;
  border-top: 0;
}

.company-business-model-section__header--inline {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  column-gap: 32px;
}

.company-business-model-page-heading {
  display: grid;
  gap: 10px;
}

.company-business-model-page-heading h2,
.company-business-model-section__header h3 {
  margin: 0;
  color: #202a34;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.company-business-model-page-heading h2 {
  color: var(--section-company-accent);
  font-size: 44px;
}

.company-business-model-section__header h3 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.08;
}

.company-business-model-gri {
  margin: 0 0 4px;
  color: #202a34;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.company-business-model-figure {
  min-width: 0;
  margin: 0;
  background: #f6fafc;
}

.company-business-model-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.company-business-model-figure--model {
  max-width: 1500px;
  overflow: hidden;
  margin-top: -8px;
}

.company-business-model-figure--model img {
  margin-top: clamp(-168px, -11.2vw, -92px);
  margin-bottom: clamp(-32px, -2vw, -16px);
}

.company-business-model-figure--model img[src*="business_model_eng.svg"],
.company-business-model-figure--model img[src*="business_model_kaz.svg"] {
  margin-top: 0;
  margin-bottom: 0;
}

.company-business-model-figure--value-chain {
  padding: 8px 0 0;
}

.company-business-model-text-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  padding-top: 36px;
  border-top: 2px solid rgba(60, 85, 129, 0.18);
}

.company-business-model-text-block {
  min-width: 0;
}

.company-business-model-text-block h3 {
  margin: 0 0 22px;
  color: #202a34;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: 0;
}

.company-business-model-text-block p,
.company-business-model-list li {
  margin: 0;
  color: #3a3f45;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.54;
  letter-spacing: 0;
}

.company-business-model-text-block p + p,
.company-business-model-text-block p + .company-business-model-list,
.company-business-model-list + p {
  margin-top: 20px;
}

.company-business-model-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.company-business-model-list li {
  position: relative;
  padding-left: 38px;
}

.company-business-model-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 18px;
  height: 18px;
  border: 3px solid var(--section-company-accent);
  border-radius: 50%;
  background: #f6fafc;
  box-shadow: inset 0 0 0 3px #f6fafc, inset 0 0 0 7px var(--section-company-accent);
  box-sizing: border-box;
}

.company-business-model-production {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 58px 64px;
  padding-top: 64px;
  border-top: 2px solid rgba(60, 85, 129, 0.18);
}

.company-business-model-photo {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #dbe8ee;
}

.company-business-model-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-business-model-photo--ship {
  min-height: clamp(360px, 30vw, 470px);
}

.company-business-model-photo--warehouse {
  min-height: clamp(330px, 26vw, 420px);
}

.company-business-model-table-block {
  min-width: 0;
  color: #3a3f45;
}

.company-business-model-table-block--products,
.company-business-model-production > .company-business-model-photo--ship:last-child {
  grid-column: 1 / -1;
}

.company-business-model-table-block h3 {
  margin: 0 0 24px;
  color: #202a34;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
  text-transform: uppercase;
}

.company-business-model-table-block h3 span {
  color: var(--section-company-accent);
}

.company-business-model-table-wrap {
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.company-business-model-data-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  color: #263746;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.company-business-model-data-table th,
.company-business-model-data-table td {
  padding: 13px 14px;
  border-bottom: 2px solid rgba(60, 85, 129, 0.2);
  text-align: center;
  vertical-align: middle;
}

.company-business-model-data-table thead th {
  color: #ffffff;
  background: var(--template-blue);
  font-weight: 800;
}

.company-business-model-data-table thead th:first-child {
  background: #56bbb9;
}

.company-business-model-data-table thead tr:first-child th:nth-child(3),
.company-business-model-data-table--wide thead tr:first-child th:nth-child(3) {
  background: #56bbb9;
}

.company-business-model-data-table thead tr:first-child th:last-child {
  background: #ebc326;
  color: #263746;
}

.company-business-model-data-table tbody th {
  text-align: left;
  font-weight: 800;
}

.company-business-model-data-table tbody td {
  font-weight: 700;
}

.company-business-model-data-table__section-row th {
  color: #263746;
  background: rgba(86, 187, 185, 0.12);
  text-align: left;
}

.company-business-model-data-table__total-row th,
.company-business-model-data-table__total-row td {
  color: #022d5c;
  font-weight: 800;
}

.company-business-model-data-table--compact th:first-child {
  width: 38%;
}

.company-business-model-data-table--wide {
  min-width: 860px;
  font-size: 14px;
  border-bottom: 3px solid #ebc326;
}

.company-business-model-data-table--wide th:first-child {
  width: 15%;
}

.company-business-model-data-table--wide th,
.company-business-model-data-table--wide td {
  border-bottom: 1.5px solid rgba(var(--section-company-accent-rgb), 0.58);
}

.company-business-model-data-table--wide thead th {
  background: transparent;
  color: #263746;
}

.company-business-model-data-table--wide thead tr:first-child th {
  padding-block: 13px 12px;
  color: #ffffff;
  background: var(--section-company-accent);
}

.company-business-model-data-table--wide thead tr:first-child th:first-child {
  background: transparent;
}

.company-business-model-data-table--wide thead tr:first-child th:nth-child(3) {
  background: #ebc326;
}

.company-business-model-data-table--wide thead tr:first-child th:last-child {
  background: var(--section-company-accent);
  color: #ffffff;
}

.company-business-model-data-table--wide thead tr:nth-child(2) th {
  padding-block: 12px 10px;
  background: transparent;
  color: #263746;
  font-weight: 500;
}

.company-business-model-data-table--wide thead tr:nth-child(2) th:nth-child(4),
.company-business-model-data-table--wide thead tr:nth-child(2) th:nth-child(7),
.company-business-model-data-table--wide thead tr:nth-child(2) th:nth-child(10) {
  font-weight: 800;
}

.company-business-model-data-table--wide tbody tr:last-child th,
.company-business-model-data-table--wide tbody tr:last-child td {
  border-bottom: 0;
}

.company-business-model-data-table--wide tbody th,
.company-business-model-data-table--wide tbody td {
  font-weight: 500;
}

.company-business-model-data-table--wide tbody td:nth-of-type(3),
.company-business-model-data-table--wide tbody td:nth-of-type(6),
.company-business-model-data-table--wide tbody td:nth-of-type(9) {
  font-weight: 800;
}

.company-business-model-data-table--wide .company-business-model-data-table__total-row th,
.company-business-model-data-table--wide .company-business-model-data-table__total-row td {
  font-weight: 800;
}

.company-business-model-data-table--compact {
  border-bottom: 3px solid #ebc326;
}

.company-business-model-data-table--compact th,
.company-business-model-data-table--compact td {
  border-bottom: 1.5px solid rgba(var(--section-company-accent-rgb), 0.58);
}

.company-business-model-data-table--compact thead th {
  background: transparent;
  color: #263746;
}

.company-business-model-data-table--compact thead tr:first-child th {
  color: #ffffff;
  background: var(--section-company-accent);
}

.company-business-model-data-table--compact thead tr:first-child th:first-child {
  background: transparent;
}

.company-business-model-data-table--compact thead tr:first-child th:nth-child(3) {
  background: #ebc326;
}

.company-business-model-data-table--compact thead tr:first-child th:last-child {
  background: var(--section-company-accent);
  color: #ffffff;
}

.company-business-model-data-table--compact .company-business-model-data-table__section-row th {
  padding-top: 16px;
  background: transparent;
  color: #263746;
  font-weight: 800;
}

.company-business-model-data-table--compact .company-business-model-data-table__bullet {
  position: relative;
  padding-left: 44px;
  font-weight: 500;
}

.company-business-model-data-table--compact .company-business-model-data-table__bullet::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 18px;
  height: 18px;
  border: 3px solid var(--section-company-accent);
  border-radius: 50%;
  background: #f6fafc;
  box-shadow: inset 0 0 0 3px #f6fafc, inset 0 0 0 7px var(--section-company-accent);
  box-sizing: border-box;
  transform: translateY(-50%);
}

.company-business-model-data-table--compact tbody th,
.company-business-model-data-table--compact tbody td {
  font-weight: 500;
}

.company-business-model-data-table--compact tbody tr:first-child th {
  font-weight: 800;
}

.company-business-model-data-table--compact tbody td:nth-of-type(3),
.company-business-model-data-table--compact .company-business-model-data-table__total-row th,
.company-business-model-data-table--compact .company-business-model-data-table__total-row td {
  font-weight: 800;
}

.company-business-model-data-table--compact tbody tr:last-child th,
.company-business-model-data-table--compact tbody tr:last-child td {
  border-bottom: 0;
}

.company-business-model-table-text {
  margin-top: 28px;
}

.company-business-model-table-text--two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.company-business-model-table-block p,
.company-business-model-footnote {
  margin: 0;
  color: #3a3f45;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}

.company-business-model-table-block p + p,
.company-business-model-table-wrap + p {
  margin-top: 22px;
}

.company-business-model-footnote {
  margin-top: 18px;
  color: #596674;
  font-size: 13px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.35;
}

@media (prefers-reduced-motion: reduce) {
  .geography-operations__hotspot,
  .geography-operations__hotspot::after {
    animation: none;
    transition: none;
  }
}

@media (max-width: 1280px) {
  .company-profile-page .subsection-sheet__page,
  .company-business-model-page .subsection-sheet__page {
    width: min(1500px, calc(100% - 56px));
  }

  .company-profile-panel--overview {
    padding: 0;
  }

  .shareholder-grid {
    gap: 70px 96px;
  }

  .company-profile-intro-layout {
    gap: 48px;
  }

  .company-profile-building {
    height: clamp(360px, 38vw, 500px);
  }

  .company-profile-building--intro {
    height: clamp(420px, 40vw, 540px);
  }

  .company-group-content {
    padding: 0;
  }

}

@media (min-width: 981px) and (max-width: 1600px) {
  .key-indicators-page .service-strip {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .key-indicators-page .service-strip__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .key-indicators-page .service-strip__list li,
  .key-indicators-page .service-strip__list li:nth-child(-n + 5),
  .key-indicators-page .service-strip__list li:not(:nth-child(5n + 1)) {
    padding: 18px 20px 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .key-indicators-page .service-strip__list li:nth-child(-n + 3) {
    border-top: 0;
  }

  .key-indicators-page .service-strip__list li:not(:nth-child(3n + 1)) {
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }
}

@media (max-width: 980px) {
  .company-profile-page .subsection-sheet,
  .company-business-model-page .subsection-sheet {
    padding: 58px 0 88px;
  }

  .company-profile-page .subsection-sheet__page,
  .company-business-model-page .subsection-sheet__page {
    width: min(1500px, calc(100% - 48px));
  }

  .company-profile-intro-layout,
  .company-profile-intro,
  .company-group-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .company-profile-intro-layout {
    gap: 30px;
  }

  .shareholder-grid {
    gap: 58px 54px;
  }

  .company-profile-panel--group {
    min-height: 0;
  }

  .company-profile-building {
    height: 520px;
  }

  .company-profile-building--intro {
    height: 460px;
  }

  .company-group-content {
    padding: 0;
  }

  .geography-operations {
    overflow-x: auto;
    overflow-y: hidden;
    background: #012c5f;
    -webkit-overflow-scrolling: touch;
  }

  .geography-operations__map {
    width: 1120px;
    max-width: none;
  }
}

@media (max-width: 980px) {
  .company-business-model-content {
    gap: 64px;
  }

  .company-business-model-section__header--inline,
  .company-business-model-text-grid {
    grid-template-columns: 1fr;
  }

  .company-business-model-section__header--inline {
    align-items: start;
    row-gap: 8px;
  }

  .company-business-model-page-heading h2 {
    font-size: 36px;
  }

  .company-business-model-figure--model img {
    margin-top: 0;
    margin-bottom: 0;
  }

  .company-business-model-section__header h3 {
    font-size: 30px;
  }

  .company-business-model-text-grid {
    gap: 34px;
  }

  .company-business-model-production,
  .company-business-model-table-text--two {
    grid-template-columns: 1fr;
  }

  .company-business-model-production {
    gap: 42px;
    padding-top: 48px;
  }
}

@media (max-width: 720px) {
  .company-profile-page .section-hero--company .section-hero__tabs,
  .company-business-model-page .section-hero--company .section-hero__tabs {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: calc(100% - 40px);
  }

  .company-profile-page .subsection-sheet,
  .company-business-model-page .subsection-sheet {
    padding: 42px 0 70px;
  }

  .company-profile-page .subsection-sheet__page,
  .company-business-model-page .subsection-sheet__page {
    width: calc(100% - 32px);
  }

  .company-profile-content {
    gap: 34px;
  }

  .company-profile-panel--overview,
  .company-group-content {
    padding: 0;
  }

  .company-profile-intro {
    width: 100%;
    max-width: 100%;
  }

  .company-profile-intro-layout {
    width: 100%;
  }

  .company-profile-panel__header h2,
  .company-group-content h2,
  .company-profile-intro p,
  .company-group-content p,
  .company-profile-list li {
    max-width: calc(100vw - 80px);
  }

  .company-profile-panel__header h2 {
    font-size: 28px;
  }

  .company-group-content h2,
  .shareholder-structure h3 {
    font-size: 26px;
    line-height: 1.16;
  }

  .company-profile-gri,
  .company-profile-intro p,
  .company-group-content p,
  .company-profile-list li {
    font-size: 16px;
    line-height: 1.46;
  }

  .shareholder-grid {
    grid-template-columns: 1fr;
    gap: 46px;
    margin-top: 34px;
  }

  .shareholder-card {
    grid-template-rows: 76px auto auto;
  }

  .shareholder-card strong {
    font-size: 46px;
  }

  .shareholder-logo {
    height: 76px;
  }

  .shareholder-logo--samruk img:first-child,
  .shareholder-logo--nbk img:first-child {
    width: 62px;
  }

  .shareholder-logo--samruk img:last-child {
    width: 138px;
  }

  .shareholder-logo--nbk img:last-child {
    width: 92px;
  }

  .shareholder-logo--nbk img:only-child {
    width: 62px;
  }

  .shareholder-logo--markets img:nth-child(1) {
    width: 98px;
  }

  .shareholder-logo--markets img:nth-child(2) {
    width: 26px;
  }

  .shareholder-logo--markets img:nth-child(3) {
    width: 94px;
  }

  .company-profile-building {
    height: 360px;
  }

  .company-profile-building--intro {
    height: 360px;
  }

  .geography-operations__map {
    width: 960px;
  }

  .company-profile-footnote {
    font-size: 10px;
  }

  .company-business-model-content {
    gap: 48px;
  }

  .company-business-model-section {
    gap: 22px;
  }

  .company-business-model-section__header {
    padding-top: 26px;
  }

  .company-business-model-page-heading h2 {
    font-size: 30px;
  }

  .company-business-model-figure--model img {
    margin-top: 0;
    margin-bottom: 0;
  }

  .company-business-model-section__header h3 {
    font-size: 26px;
  }

  .company-business-model-gri {
    font-size: 16px;
  }

  .company-business-model-text-grid {
    padding-top: 28px;
  }

  .company-business-model-text-block h3 {
    font-size: 24px;
  }

  .company-business-model-text-block p,
  .company-business-model-list li {
    font-size: 16px;
    line-height: 1.5;
  }

  .company-business-model-table-block h3 {
    font-size: 18px;
  }

  .company-business-model-data-table {
    font-size: 13px;
  }

  .company-business-model-data-table th,
  .company-business-model-data-table td {
    padding: 11px 10px;
  }

  .company-business-model-table-block p {
    font-size: 16px;
  }

  .company-business-model-photo--ship,
  .company-business-model-photo--warehouse {
    min-height: 260px;
  }
}

@media (max-width: 480px) {
  .company-profile-page .subsection-sheet__page,
  .company-business-model-page .subsection-sheet__page {
    width: calc(100% - 24px);
  }

  .company-profile-content {
    gap: 30px;
  }

  .company-profile-panel__header h2 {
    font-size: 26px;
  }

  .company-profile-intro p,
  .company-group-content p,
  .company-profile-list li {
    max-width: calc(100vw - 48px);
  }

  .company-profile-building,
  .company-profile-building--intro {
    height: 300px;
  }

  .shareholder-grid {
    gap: 40px;
  }

  .shareholder-card {
    grid-template-rows: 70px auto auto;
  }

  .shareholder-logo {
    height: 70px;
  }

  .shareholder-card strong {
    font-size: 42px;
  }

  .geography-operations__map {
    width: 900px;
  }
}

.environmental-article {
  padding: clamp(76px, 7vw, 118px) 0 clamp(94px, 8vw, 140px);
}

.environmental-page {
  --env-green: #62b45d;
  --env-text: #33383d;
  --env-muted: #596068;
  width: min(1500px, calc(100% - 180px));
  margin: 0 auto;
  color: var(--env-text);
}

.environmental-page__header {
  width: 100%;
  max-width: none;
  margin: 0 0 38px;
}

.environmental-page__header h2 {
  margin: 0;
  color: var(--env-green);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
}

.environmental-lead,
.environmental-section--split,
.environmental-callout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: clamp(54px, 6vw, 110px);
  align-items: start;
}

.environmental-lead {
  margin-bottom: clamp(70px, 7vw, 120px);
}

.environmental-lead__text,
.environmental-section,
.environmental-card,
.environmental-practice {
  min-width: 0;
}

.environmental-eyebrow,
.environmental-gri {
  margin: 0 0 28px;
  color: #25292d;
  font-size: clamp(22px, 1.5vw, 30px);
  font-weight: 800;
  line-height: 1.2;
}

.environmental-gri {
  margin-bottom: 30px;
}

.environmental-page p {
  margin: 0 0 22px;
  color: var(--env-text);
  font-size: clamp(16px, 1.02vw, 20px);
  font-weight: 500;
  line-height: 1.48;
}

.environmental-page strong {
  color: #2b3035;
  font-weight: 800;
}

.environmental-list {
  display: grid;
  gap: 20px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.environmental-list li {
  position: relative;
  padding-left: 42px;
  color: var(--env-text);
  font-size: clamp(16px, 1.02vw, 20px);
  font-weight: 500;
  line-height: 1.38;
}

.environmental-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.24em;
  width: 18px;
  height: 18px;
  border: 4px solid var(--env-green);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px #f4f8fb;
  background: var(--env-green);
}

.environmental-lead__image,
.environmental-photo {
  margin: 0;
  overflow: hidden;
  background: #dce8ef;
}

.environmental-lead__image img,
.environmental-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.environmental-lead__image {
  align-self: start;
  aspect-ratio: 1.14 / 1;
}

.environmental-photo {
  aspect-ratio: 1.18 / 1;
}

.environmental-photo--wide {
  aspect-ratio: 1.75 / 1;
}

.environmental-photo--tall {
  aspect-ratio: 0.72 / 1;
}

.environmental-section {
  margin-top: clamp(60px, 6vw, 104px);
}

.environmental-section h3 {
  margin: 0 0 24px;
  color: var(--navy);
  font-size: clamp(24px, 1.65vw, 34px);
  font-weight: 800;
  line-height: 1.16;
}

.environmental-section--cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 48px);
}

.environmental-card {
  padding: clamp(30px, 3vw, 48px);
  border-left: 6px solid var(--env-green);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 38px rgba(2, 45, 92, 0.08);
}

.environmental-card p:last-child,
.environmental-practice p:last-child {
  margin-bottom: 0;
}

.environmental-section--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.62fr);
}

.environmental-callout {
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.62fr);
  align-items: stretch;
}

.environmental-practice {
  padding: clamp(30px, 3vw, 48px);
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 18px 38px rgba(2, 45, 92, 0.12);
}

.environmental-practice h3,
.environmental-practice p {
  color: var(--white);
}

.environmental-practice h3 {
  margin: 0 0 22px;
}

.environmental-practice__label {
  margin: 0 0 22px;
  color: var(--env-green) !important;
  font-size: clamp(13px, 0.9vw, 16px) !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  text-transform: uppercase;
}

.environmental-practice--wide {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) repeat(2, minmax(0, 1fr));
  gap: 10px clamp(34px, 3vw, 56px);
}

.environmental-practice--wide .environmental-practice__label,
.environmental-practice--wide h3 {
  grid-column: 1;
}

.environmental-practice--wide p:not(.environmental-practice__label) {
  margin-bottom: 18px;
}

.environmental-template {
  --template-green: #62b45d;
  --template-blue: #3c5581;
  --template-text: #3a3a3a;
  --template-heading: #20262c;
  background: #f9fcfd;
  padding: 92px 0 132px;
}

.environmental-template__inner {
  width: min(1500px, calc(100% - 220px));
  margin: 0 auto;
  color: var(--template-text);
}

.environmental-template__header {
  margin: 0 0 46px;
}

.environmental-template__header h2 {
  max-width: 960px;
  margin: 0;
  color: var(--template-green);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.14;
  text-transform: uppercase;
}

.environmental-template__subtitle {
  max-width: 760px;
  margin: 44px 0 0;
  color: var(--template-heading);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.18;
}

.environmental-template__header .environmental-template__gri {
  margin: 24px 0 0;
}

#greenhouse-gas-emissions .environmental-template__header h2 {
  color: var(--template-heading);
}

.environmental-template__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 62px 86px;
  align-items: start;
}

.environmental-template__block {
  min-width: 0;
}

.environmental-number-nowrap {
  white-space: nowrap;
}

.environmental-template__grid.environmental-template__grid--standard-divider {
  row-gap: clamp(30px, 3vw, 44px);
}

.environmental-template__standard-divider {
  grid-column: 1 / -1;
  width: 100%;
  height: 2px;
  background: rgba(60, 85, 129, 0.18);
}

.environmental-template__nowrap {
  white-space: nowrap;
}

.environmental-template__block--wide {
  grid-column: 1 / -1;
}

.environmental-scroll-animations .environmental-template .environmental-scroll-animate,
.environmental-scroll-animations .subsection-sheet .environmental-scroll-animate {
  opacity: 0;
  transform: translate3d(0, var(--environmental-scroll-y, 16px), 0);
  transition:
    opacity var(--environmental-scroll-duration, 760ms) cubic-bezier(0.22, 1, 0.36, 1),
    transform var(--environmental-scroll-duration, 760ms) cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--environmental-scroll-delay, 0ms);
  will-change: opacity, transform;
}

.environmental-content--calm-scroll .environmental-scroll-animate--soft-title {
  --environmental-scroll-y: 22px;
  --environmental-scroll-duration: 860ms;
}

.environmental-content--calm-scroll .environmental-scroll-animate--soft-heading {
  --environmental-scroll-y: 12px;
  --environmental-scroll-duration: 760ms;
}

.environmental-content--calm-scroll .environmental-scroll-animate--soft-rise {
  --environmental-scroll-y: 18px;
  --environmental-scroll-duration: 780ms;
}

.environmental-content--calm-scroll .environmental-scroll-animate--soft-image {
  --environmental-scroll-y: 20px;
  --environmental-scroll-duration: 900ms;
}

.environmental-content--calm-scroll .environmental-scroll-animate--soft-card {
  --environmental-scroll-y: 14px;
  --environmental-scroll-duration: 820ms;
}

.environmental-scroll-animations .environmental-template .environmental-scroll-animate.is-animated,
.environmental-scroll-animations .subsection-sheet .environmental-scroll-animate.is-animated {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .environmental-scroll-animations .environmental-template .environmental-scroll-animate,
  .environmental-scroll-animations .subsection-sheet .environmental-scroll-animate {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

.environmental-template__section-heading {
  grid-column: 1 / -1;
  margin: 18px 0 -34px;
}

.environmental-template__section-heading h3 {
  max-width: 100%;
  margin: 0;
  color: var(--template-heading);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
}

.environmental-template__block h3,
.environmental-template__block h4 {
  margin: 0 0 22px;
  color: var(--template-heading);
  font-weight: 800;
  line-height: 1.2;
}

.environmental-template__block h3 {
  font-size: 26px;
}

.environmental-template__block h3.environmental-template__compact-heading {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.environmental-template__block h3.environmental-template__single-line-heading {
  font-size: clamp(14px, 1.35vw, 18px);
  white-space: nowrap;
}

.environmental-template__block h4 {
  color: var(--template-green);
  font-size: 15px;
  text-transform: uppercase;
}

.environmental-template__gri,
.environmental-template__block p,
.environmental-template__list li {
  color: var(--template-text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.52;
}

.environmental-template__gri {
  margin: 0 0 28px;
  color: #24292f;
  font-weight: 800;
}

.environmental-template__gri strong {
  font-weight: 800;
}

.environmental-template__gri--inline {
  margin: -12px 0 22px;
}

.environmental-template__block p {
  margin: 0 0 20px;
}

.environmental-template__block p:last-child,
.environmental-template__list:last-child {
  margin-bottom: 0;
}

.environmental-template__block strong {
  color: #20262c;
  font-weight: 800;
}

.environmental-template__block sup {
  font-size: 0.62em;
  font-weight: 800;
  line-height: 0;
  vertical-align: super;
}

.environmental-template__inline-heading {
  margin: 0 0 14px;
  color: var(--template-text);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.environmental-template__scenario-title {
  margin: 0 0 14px;
  color: var(--template-heading);
  font-size: 20px;
  font-weight: 800 !important;
  line-height: 1.28;
}

.environmental-template__scenario-title strong {
  font-weight: 800 !important;
}

.environmental-template__list {
  display: grid;
  gap: 14px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.environmental-template__list--continued {
  margin-bottom: clamp(30px, 3vw, 44px);
}

.environmental-template__list li {
  position: relative;
  padding-left: 38px;
}

.environmental-template__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 18px;
  height: 18px;
  border: 3px solid var(--template-green);
  border-radius: 50%;
  background: #f9fcfd;
  box-shadow: inset 0 0 0 3px #f9fcfd, inset 0 0 0 7px var(--template-green);
  box-sizing: border-box;
}

.environmental-template__list li::after {
  content: none;
  display: none;
}

.environmental-template__list.environmental-template__list--numbered-plain > li {
  padding-left: 0;
}

.environmental-template__list.environmental-template__list--numbered-plain > li::before {
  content: none;
  display: none;
}

.environmental-template__media {
  margin: 28px 0 0;
}

.environmental-documents-update__media {
  align-self: start;
  height: clamp(440px, 32vw, 560px);
  margin: 0;
}

.environmental-documents-update__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.environmental-template__media--wide {
  grid-column: 1 / -1;
  margin-top: 0;
}

.environmental-template__media--tall {
  margin-top: 0;
}

.environmental-template__media--events {
  display: block;
  margin: 34px 0 0;
  max-width: none;
  width: 100%;
}

.environmental-template__media--events-wide {
  grid-column: 1 / -1;
  margin-top: clamp(8px, 1.2vw, 18px);
}

.environmental-template__media--goal {
  margin: 0 0 34px;
}

.environmental-template__media--motivation {
  grid-area: image;
  margin-top: 0;
}

.environmental-template__media--climate-risk {
  margin-top: 40px;
}

.environmental-template__media--climate-risk img {
  aspect-ratio: 1.46;
  object-fit: cover;
}

.environmental-template--climate-continuation {
  padding-top: clamp(26px, 3vw, 52px);
}

.environmental-template--climate-risk-expanded .environmental-template__grid > .environmental-template__block {
  padding-top: clamp(30px, 3vw, 44px);
  border-top: 2px solid rgba(60, 85, 129, 0.18);
}

.environmental-template__media--climate-policy {
  margin-top: clamp(34px, 4vw, 58px);
}

.environmental-template__media.environmental-template__media--climate-policy img {
  height: clamp(289px, calc(184px + 7.3vw), 316px);
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 52%;
}

.environmental-climate-effects-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 62px 86px;
  align-items: start;
}

.environmental-climate-effects-flow h3:not(:first-child) {
  margin-top: clamp(38px, 4vw, 58px);
}

.environmental-climate-effects-flow__column {
  min-width: 0;
}

.environmental-climate-projects h3 {
  max-width: 880px;
}

.environmental-climate-projects__intro {
  max-width: 980px;
}

.environmental-climate-projects__flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(42px, 4vw, 62px) 86px;
}

.environmental-climate-project {
  min-width: 0;
  padding-top: clamp(28px, 3vw, 40px);
  border-top: 2px solid rgba(60, 85, 129, 0.18);
}

.environmental-climate-projects__flow > .environmental-climate-project:nth-child(-n + 2) {
  padding-top: 0;
  border-top: 0;
}

.environmental-template__block .environmental-climate-project__title {
  break-after: avoid;
  margin: 0 0 22px;
  color: var(--template-heading);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.28;
  text-transform: none;
}

.environmental-template__media--climate-transparency {
  margin-top: clamp(64px, 6vw, 108px);
}

.environmental-template__media.environmental-template__media--climate-transparency img {
  height: clamp(610px, calc(1524px - 50.5vw), 797px);
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}

.environmental-template__footnote {
  margin-top: 42px;
  color: #6f7d8b !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
}

.environmental-template__footnote--project {
  margin: 18px 0 26px !important;
  color: #7b8793 !important;
  font-size: 12px !important;
  line-height: 1.32 !important;
}

.environmental-template__footnote--full {
  grid-column: 1 / -1;
  margin: -18px 0 0 !important;
}

.environmental-emissions-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 62px 86px;
  align-items: start;
}

.environmental-emissions-flow > .environmental-template__block {
  min-width: 0;
  padding-top: clamp(30px, 3vw, 44px);
  border-top: 2px solid rgba(60, 85, 129, 0.18);
}

.environmental-emissions-flow > .environmental-template__block:nth-child(-n + 2) {
  padding-top: 0;
  border-top: 0;
}

.environmental-emissions-volume {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "heading heading"
    "gri gri"
    "intro-primary intro-aside"
    "intro-secondary intro-aside";
  column-gap: clamp(48px, 5vw, 86px);
  align-items: start;
}

.environmental-emissions-volume > h3 {
  grid-area: heading;
  max-width: 920px;
}

.environmental-emissions-volume > .environmental-template__gri {
  grid-area: gri;
}

.environmental-emissions-volume > p:nth-of-type(2) {
  grid-area: intro-primary;
}

.environmental-emissions-volume > p:nth-of-type(3) {
  grid-area: intro-secondary;
}

.environmental-emissions-volume > p:nth-of-type(4) {
  grid-area: intro-aside;
}

.environmental-emissions-volume > p {
  width: 100%;
  max-width: none;
}

.environmental-emissions-volume > .environmental-emissions-table-wrap {
  grid-column: 1 / -1;
}

@media (max-width: 900px) {
  .environmental-emissions-volume {
    display: block;
  }
}

.environmental-emissions-table-wrap {
  margin-top: clamp(44px, 5vw, 72px);
  overflow-x: auto;
  background: transparent;
}

.environmental-emissions-table-title {
  margin: 0 0 28px;
  color: var(--template-heading);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.environmental-emissions-table-title span {
  color: var(--template-green);
}

.environmental-emissions-table-title .environmental-table-title-text,
.environmental-energy-table-title .environmental-table-title-text,
.environmental-air-table-title .environmental-table-title-text,
.environmental-water-table-title .environmental-table-title-text,
.environmental-data-table-title .environmental-table-title-text {
  color: var(--template-heading) !important;
}

.environmental-emissions-table-title sup {
  color: var(--template-heading);
  font-size: 0.62em;
  line-height: 0;
}

.environmental-emissions-alpha-footnote {
  color: #43a047;
  font-size: 0.65em;
  font-weight: 800;
  line-height: 0;
  margin-left: 1px;
  vertical-align: super;
}

.environmental-emissions-table {
  width: 100%;
  min-width: 1060px;
  border-collapse: collapse;
  table-layout: fixed;
  border-bottom: 3px solid var(--template-green);
}

.environmental-emissions-table th,
.environmental-emissions-table td {
  padding: 13px 14px;
  border-top: 1px solid var(--template-green);
  color: var(--template-text);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.42;
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}

.environmental-emissions-table th {
  border-top: 0;
  color: #fff;
  background: #3b5582;
  font-weight: 800;
}

.environmental-emissions-table thead th:not(:first-child),
.environmental-emissions-table tbody td:nth-child(n + 3) {
  text-align: right;
}

.environmental-emissions-table th:first-child {
  background: var(--template-green);
  text-align: left;
}

.environmental-emissions-table th + th,
.environmental-emissions-table td + td {
  border-left: 0;
}

.environmental-emissions-table td:first-child {
  color: var(--template-heading);
  font-weight: 500;
}

.environmental-emissions-table td strong {
  color: var(--template-heading);
  font-weight: 800;
}

.environmental-emissions-table__scope-total td {
  background: #e4f1e4;
}

.environmental-emissions-table__scope-total td:first-child {
  font-weight: 800;
}

.environmental-emissions-table__scope-total td:nth-child(n + 3) {
  color: var(--template-heading);
  font-weight: 800;
}

.environmental-emissions-table__group td,
.environmental-emissions-table__subgroup td {
  background: #e4f1e4;
  color: var(--template-heading);
  font-weight: 800;
}

.environmental-emissions-table__group--strong td,
.environmental-emissions-table__group--strong td strong {
  font-weight: 900;
}

.environmental-emissions-table__scope-band td {
  background: #5ab35d;
  color: #fff;
  font-weight: 800;
}

.environmental-emissions-table--wide col:first-child {
  width: 32%;
}

.environmental-emissions-table--wide col:nth-child(2) {
  width: 22%;
}

.environmental-emissions-table--intensity col:first-child {
  width: 30%;
}

.environmental-emissions-table--intensity col:nth-child(2) {
  width: 28%;
}

.environmental-emissions-table--intensity th:first-child {
  width: 58%;
}

.environmental-emissions-table--intensity th:first-child {
  background: #5ab35d;
  color: #fff;
  font-weight: 800;
}

.environmental-emissions-table--intensity th:nth-child(n + 2) {
  background: #3b5582;
}

.environmental-emissions-table--intensity tbody tr:not(.environmental-emissions-table__subgroup):not(.environmental-emissions-table__scope-band) td {
  background: #f9fcfd;
  color: var(--template-heading);
  font-weight: 500;
}

.environmental-emissions-table--intensity .environmental-emissions-table__subgroup td {
  background: #e4f1e4;
  color: var(--template-heading);
  font-weight: 800;
}

.environmental-emissions-table--intensity .environmental-emissions-table__scope-band td {
  background: #5ab35d;
  color: #fff;
  font-weight: 800;
}

.environmental-emissions-notes {
  max-width: 1300px;
  margin-top: 20px;
  color: #5d6872;
  font-size: 13px;
  line-height: 1.38;
}

.environmental-emissions-notes p {
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: 500;
  line-height: inherit;
}

.environmental-emissions-notes p + p {
  margin-top: 12px;
}

.environmental-template--energy .environmental-template__block--wide {
  align-self: start;
}

.environmental-energy-initiative-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 72px;
  margin: 28px 0 34px;
}

.environmental-energy-initiative {
  min-width: 0;
  padding-top: 18px;
}

.environmental-energy-initiative h4 {
  margin: 0 0 12px;
  color: var(--template-heading);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

.environmental-energy-consumption-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px 86px;
}

.environmental-energy-table-section {
  padding-top: clamp(28px, 3vw, 42px);
  border-top: 2px solid rgba(60, 85, 129, 0.18);
}

.environmental-energy-table-section--plain {
  padding-top: 0;
  border-top: 0;
}

.environmental-energy-table-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: start;
}

.environmental-energy-table-wrap {
  min-width: 0;
  margin-top: 28px;
  overflow-x: auto;
}

.environmental-energy-table-title {
  margin: 0 0 22px;
  color: var(--template-heading);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.28;
  text-transform: uppercase;
}

.environmental-energy-table-title span {
  color: var(--template-green);
}

.environmental-energy-table-title sup {
  color: var(--template-heading);
  font-size: 0.62em;
  line-height: 0;
}

.environmental-energy-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  table-layout: fixed;
  border-bottom: 3px solid var(--template-green);
}

.environmental-energy-table--wide {
  min-width: 1060px;
}

.environmental-energy-table--compact {
  min-width: 640px;
}

.environmental-energy-table th,
.environmental-energy-table td {
  padding: 14px 16px;
  border-top: 1px solid #b6c5d5;
  color: var(--template-text);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.38;
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}

.environmental-energy-table th {
  color: #fff;
  background: #3b5582;
  font-weight: 800;
}

.environmental-energy-table th:first-child {
  width: 52%;
  background: var(--template-green);
}

.environmental-energy-table th + th,
.environmental-energy-table td + td {
  border-left: 1px solid #9aacbf;
}

.environmental-energy-table td:first-child {
  color: var(--template-heading);
}

.environmental-energy-table__group td {
  background: #e4f1e4;
  color: var(--template-heading);
  font-weight: 800;
}

.environmental-energy-table__subgroup td,
.environmental-energy-table__total td {
  background: transparent;
  color: var(--template-heading);
  font-weight: 800;
}

.environmental-energy-table__grand-total td {
  background: #e4f1e4;
  color: var(--template-heading);
  font-weight: 800;
  text-transform: uppercase;
}

.environmental-energy-table__subgroup--regular-values td:nth-child(n + 2) {
  font-weight: 500;
}

.environmental-energy-table__child td:first-child {
  position: relative;
  padding-left: 46px;
}

.environmental-energy-table__child td:first-child::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  width: 18px;
  height: 18px;
  border: 3px solid var(--template-green);
  border-radius: 50%;
  background: #f9fcfd;
  box-shadow: inset 0 0 0 3px #f9fcfd, inset 0 0 0 7px var(--template-green);
  transform: translateY(-50%);
  box-sizing: border-box;
}

.environmental-energy-table__child td:first-child::after {
  content: none;
  display: none;
}

.environmental-energy-table__total td:nth-child(n + 2) {
  font-weight: 800;
}

.environmental-energy-alpha-footnote {
  color: #43a047;
  font-size: 0.65em;
  font-weight: 800;
  line-height: 0;
  margin-left: 1px;
  vertical-align: super;
}

.environmental-energy-notes {
  max-width: 1300px;
  margin-top: 18px;
  color: #5d6872;
  font-size: 13px;
  line-height: 1.38;
}

.environmental-energy-notes p {
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: 500;
  line-height: inherit;
}

.environmental-energy-notes p + p {
  margin-top: 10px;
}

.environmental-energy-segment-chart {
  align-self: start;
}

.environmental-energy-segment-chart h3 {
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 1.25;
  text-transform: uppercase;
}

.environmental-energy-segment-chart__body {
  width: min(100%, 420px);
}

.environmental-energy-segment-chart__svg {
  display: block;
  width: 100%;
  max-width: 390px;
  height: auto;
  overflow: visible;
}

.environmental-energy-segment-chart__label-text {
  dominant-baseline: middle;
  alignment-baseline: middle;
  font-size: 10px;
  font-weight: 800;
}

.environmental-energy-segment-chart__label-text--production {
  fill: #5db870;
}

.environmental-energy-segment-chart__label-text--refining {
  fill: #00aeef;
}

.environmental-energy-segment-chart__label-text--transport {
  fill: #3b5582;
}

.environmental-energy-segment-chart__label-text--petrochem {
  fill: #66789f;
}

.environmental-energy-segment-chart__legend {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 32px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.environmental-energy-segment-chart__legend li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--template-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
}

.environmental-energy-segment-chart__marker {
  width: 16px;
  height: 16px;
  margin-top: 1px;
  border-radius: 50%;
}

.environmental-energy-segment-chart__marker--production {
  background: #5db870;
}

.environmental-energy-segment-chart__marker--refining {
  background: #00aeef;
}

.environmental-energy-segment-chart__marker--transport {
  background: #3b5582;
}

.environmental-energy-segment-chart__marker--petrochem {
  background: #66789f;
}

.environmental-energy-share-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.environmental-energy-share-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 18px;
  align-items: center;
}

.environmental-energy-share-row span,
.environmental-energy-share-row strong {
  color: var(--template-heading);
  font-size: 16px;
  line-height: 1.28;
}

.environmental-energy-share-row span {
  font-weight: 700;
}

.environmental-energy-share-row strong {
  font-weight: 800;
}

.environmental-energy-share-row i {
  grid-column: 1 / -1;
  display: block;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #e5edf3;
}

.environmental-energy-share-row i::before {
  content: "";
  display: block;
  width: calc(var(--share) * 1%);
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
}

.environmental-energy-resource-chart {
  align-self: start;
}

.environmental-energy-resource-chart h3 {
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 1.25;
}

.environmental-energy-resource-chart__body {
  width: min(100%, 420px);
}

.environmental-energy-resource-chart__svg {
  display: block;
  width: 100%;
  max-width: 390px;
  height: auto;
  overflow: visible;
}

.environmental-energy-resource-chart__label-text {
  dominant-baseline: middle;
  alignment-baseline: middle;
  font-size: 10px;
  font-weight: 800;
}

.environmental-energy-resource-chart__label-text--electric {
  fill: #00aeef;
}

.environmental-energy-resource-chart__label-text--motor {
  fill: #002d5f;
}

.environmental-energy-resource-chart__label-text--thermal {
  fill: #3b5582;
}

.environmental-energy-resource-chart__label-text--boiler {
  fill: #5db870;
}

.environmental-energy-resource-chart__legend {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 32px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.environmental-energy-resource-chart__legend li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--template-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
}

.environmental-energy-resource-chart__marker {
  width: 16px;
  height: 16px;
  margin-top: 1px;
  border-radius: 50%;
}

.environmental-energy-resource-chart__marker--electric {
  background: #00aeef;
}

.environmental-energy-resource-chart__marker--motor {
  background: #002d5f;
}

.environmental-energy-resource-chart__marker--thermal {
  background: #3b5582;
}

.environmental-energy-resource-chart__marker--boiler {
  background: #5db870;
}

.environmental-template__media--energy-solar img {
  aspect-ratio: 2.05;
  object-fit: cover;
}

.environmental-energy-reduction {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
  padding-top: clamp(28px, 3vw, 42px);
  border-top: 2px solid rgba(60, 85, 129, 0.18);
}

.environmental-energy-reduction__column {
  min-width: 0;
}

.environmental-energy-reduction__column > :first-child {
  margin-top: 0;
}

.environmental-energy-reduction .environmental-template__gri,
.environmental-energy-reduction .environmental-template__gri strong {
  font-weight: 800;
}

.environmental-energy-saving-summary {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
  padding-top: clamp(28px, 3vw, 42px);
}

.environmental-energy-saving-summary__text {
  min-width: 0;
}

.environmental-energy-saving-summary__media {
  width: 100%;
  margin: 0;
}

.environmental-energy-saving-summary__media img {
  width: 100%;
  aspect-ratio: 1.38;
  object-fit: cover;
  object-position: center;
}

.environmental-template__media--energy-facility img {
  aspect-ratio: 2.35;
  object-fit: cover;
}

.environmental-energy-intensity-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
  padding-top: clamp(28px, 3vw, 42px);
  border-top: 2px solid rgba(60, 85, 129, 0.18);
}

.environmental-energy-intensity-hero__text,
.environmental-energy-intensity-hero__media {
  min-width: 0;
}

.environmental-energy-intensity-hero__media {
  width: 100%;
  margin: 0;
}

.environmental-energy-intensity-hero__media img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  object-position: center;
}

.environmental-energy-intensity-chart {
  overflow-x: auto;
  padding-top: clamp(28px, 3vw, 42px);
  border-top: 2px solid rgba(60, 85, 129, 0.18);
}

.environmental-energy-intensity-chart h3 {
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 1.28;
  text-transform: uppercase;
}

.environmental-energy-intensity-chart__svg {
  display: block;
  width: 100%;
  min-width: 760px;
  height: auto;
  overflow: visible;
}

.environmental-energy-intensity-chart__labels text {
  dominant-baseline: middle;
  alignment-baseline: middle;
  fill: var(--template-heading);
  font-size: 7.3px;
  font-weight: 800;
  letter-spacing: 0;
}

.environmental-energy-intensity-chart__labels .environmental-energy-intensity-chart__value {
  text-anchor: middle;
  font-size: 7.5px;
  fill: #3b5582;
}

.environmental-energy-intensity-chart__labels .environmental-energy-intensity-chart__label--green {
  fill: var(--template-green);
}

.environmental-energy-intensity-table-section {
  padding-top: clamp(26px, 3vw, 38px);
}

.environmental-energy-intensity-disclosure {
  margin-top: 42px;
}

.environmental-template__media--air-stack img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.environmental-air-table-section {
  padding-top: clamp(28px, 3vw, 42px);
  border-top: 2px solid rgba(60, 85, 129, 0.18);
}

.environmental-air-table-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: start;
}

.environmental-air-table-grid .environmental-air-table-wrap:first-child {
  grid-column: 1 / -1;
}

.environmental-air-table-wrap--full,
.environmental-air-gas-feature {
  grid-column: 1 / -1;
}

.environmental-air-table-wrap {
  min-width: 0;
  margin-top: 28px;
  overflow-x: auto;
}

.environmental-air-gas-column {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 32px;
}

.environmental-air-gas-column .environmental-air-table-wrap {
  margin-top: 0;
}

.environmental-air-gas-intro h3 {
  margin-top: 0;
}

.environmental-air-gas-feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 4vw, 56px);
  align-items: start;
  margin-top: 8px;
}

.environmental-air-gas-copy h3 {
  margin-top: 0;
}

.environmental-air-gas-copy__columns {
  display: block;
}

.environmental-air-gas-copy__columns p {
  margin: 0 0 18px;
}

.environmental-air-gas-copy__columns p:last-child {
  margin-bottom: 0;
}

.environmental-air-gas-feature__media {
  margin: 0;
  align-self: start;
}

.environmental-air-gas-feature__media img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.environmental-air-table-title {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.28;
  text-transform: uppercase;
}

.environmental-air-table-title span {
  color: var(--template-green);
}

.environmental-air-table-title sup {
  color: var(--template-heading);
  font-size: 0.62em;
  line-height: 0;
}

.environmental-air-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  table-layout: fixed;
  border-bottom: 3px solid var(--template-green);
}

.environmental-air-table th,
.environmental-air-table td {
  padding: 14px 16px;
  border-top: 1px solid #b6c5d5;
  color: var(--template-text);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.38;
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}

.environmental-air-table th {
  color: #fff;
  background: #3b5582;
  font-weight: 800;
}

.environmental-air-table th:first-child {
  width: 54%;
  background: var(--template-green);
}

.environmental-air-table th + th,
.environmental-air-table td + td {
  border-left: 1px solid #9aacbf;
}

.environmental-air-table td:first-child {
  color: var(--template-heading);
}

.environmental-air-alpha-footnote {
  color: #43a047;
  font-size: 0.65em;
  font-weight: 800;
  line-height: 0;
  margin-left: 1px;
  vertical-align: super;
}

.environmental-air-notes {
  max-width: 1300px;
  margin-top: 18px;
  color: #5d6872;
  font-size: 13px;
  line-height: 1.38;
}

.environmental-air-notes p {
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: 500;
  line-height: inherit;
}

.environmental-water-quote {
  padding-top: 0;
  border-top: 0;
}

.environmental-water-quote__author {
  margin-top: 22px;
  color: var(--template-heading);
  font-weight: 800;
}

.environmental-water-full-heading {
  margin-bottom: -18px;
}

.environmental-water-full-heading h3 {
  margin-bottom: 0;
}

.environmental-water-subheading {
  margin-top: clamp(34px, 4vw, 54px);
}

.environmental-water-principles-infographic {
  margin: 30px 0 38px;
  overflow-x: auto;
}

.environmental-water-principles-author {
  margin: 0 0 18px;
  padding-right: clamp(18px, 7vw, 118px);
  color: #00aeef;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-align: right;
}

.environmental-template__block .environmental-water-principles-author {
  color: #00aeef;
  font-weight: 900;
}

.environmental-water-principles-stage {
  position: relative;
  min-width: 760px;
  aspect-ratio: 489.559 / 174.718;
  background: #f6fafc;
}

.environmental-water-principles-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(to right, transparent calc(25% - 0.75px), rgba(0, 174, 239, 0.58) calc(25% - 0.75px), rgba(0, 174, 239, 0.58) calc(25% + 0.75px), transparent calc(25% + 0.75px)),
    linear-gradient(to right, transparent calc(50% - 0.75px), rgba(0, 174, 239, 0.58) calc(50% - 0.75px), rgba(0, 174, 239, 0.58) calc(50% + 0.75px), transparent calc(50% + 0.75px)),
    linear-gradient(to right, transparent calc(75% - 0.75px), rgba(0, 174, 239, 0.58) calc(75% - 0.75px), rgba(0, 174, 239, 0.58) calc(75% + 0.75px), transparent calc(75% + 0.75px)),
    linear-gradient(to bottom, transparent calc(50% - 0.75px), rgba(0, 174, 239, 0.58) calc(50% - 0.75px), rgba(0, 174, 239, 0.58) calc(50% + 0.75px), transparent calc(50% + 0.75px));
}

.environmental-water-principles-stage img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: fill;
  pointer-events: none;
}

.environmental-water-principles {
  --water-principle-label-offset: clamp(78px, 7.2vw, 132px);
  --water-principle-second-row-adjust: clamp(12px, 1.1vw, 18px);
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.environmental-water-principles li {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  padding: var(--water-principle-label-offset) 26px 0;
  color: #404041;
  font-size: clamp(10px, 0.72vw, 12px);
  font-weight: 500;
  line-height: 1.16;
  text-align: center;
  text-transform: uppercase;
}

.environmental-water-principles li:nth-child(n + 5) {
  padding-top: calc(var(--water-principle-label-offset) + var(--water-principle-second-row-adjust));
}

.environmental-template__media--water-tanker {
  align-self: start;
  justify-self: end;
  width: min(100%, 760px);
  margin-top: 0;
}

.environmental-template__media--water-tanker img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}

.environmental-template__media--water-port img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 46%;
}

.environmental-template__media--water-facility {
  margin: clamp(24px, 2.5vw, 34px) 0 0;
}

.environmental-template__media--water-facility img {
  aspect-ratio: 1 / 1.12;
  object-fit: cover;
  object-position: center;
}

.environmental-water-projects-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 62px 86px;
  align-items: start;
}

.environmental-water-projects-flow--balanced {
  display: block;
  columns: 2 360px;
  column-gap: 86px;
  column-fill: balance;
}

.environmental-water-projects-flow--balanced > * {
  break-inside: avoid;
}

.environmental-water-projects-flow--balanced h3 {
  break-after: avoid;
}

.environmental-water-projects-flow--balanced > .environmental-water-projects-flow__column-start {
  break-before: column;
}

.environmental-water-infrastructure-flow,
.environmental-water-innovation-flow,
.environmental-water-footprint-flow,
.environmental-water-footprint-layout,
.environmental-water-discharge-layout,
.environmental-water-produced-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 62px 86px;
  align-items: start;
}

.environmental-water-monitoring-heading {
  margin-bottom: -30px;
}

.environmental-water-chart-section,
.environmental-water-kpi-section,
.environmental-water-table-section,
.environmental-water-footprint-section,
.environmental-water-discharge-section,
.environmental-water-produced-monitoring {
  padding-top: clamp(28px, 3vw, 42px);
  border-top: 2px solid rgba(60, 85, 129, 0.18);
}

.environmental-water-discharge-layout {
  row-gap: clamp(20px, 2.4vw, 32px);
}

.environmental-water-discharge-intro,
.environmental-water-discharge-followup,
.environmental-water-discharge-aside,
.environmental-water-discharge-kpis {
  min-width: 0;
}

.environmental-water-discharge-separator {
  grid-column: 1 / -1;
  border-top: 2px solid rgba(60, 85, 129, 0.18);
}

.environmental-water-discharge-kpis .environmental-water-kpi-grid--single {
  margin-top: clamp(20px, 2.4vw, 30px);
}

.environmental-water-footprint-section > h3 {
  margin-bottom: clamp(24px, 2.8vw, 38px);
}

.environmental-water-footprint-wide {
  grid-column: 1 / -1;
  margin-top: clamp(10px, 1.4vw, 20px);
}

.environmental-water-footprint-layout > .environmental-water-mini-chart--plain {
  grid-column: 1;
  grid-row: 2;
}

.environmental-water-footprint-main--after-chart {
  grid-column: 1 / -1;
  max-width: 920px;
  margin-top: clamp(4px, 1vw, 12px);
}

.environmental-water-chart-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}

.environmental-water-source-chart,
.environmental-water-withdrawal-chart,
.environmental-water-mini-chart,
.environmental-water-kpi {
  min-width: 0;
}

.environmental-water-source-chart h3,
.environmental-water-withdrawal-chart h3,
.environmental-water-mini-chart h3,
.environmental-water-kpi h3 {
  margin: 0 0 18px;
  color: var(--template-heading);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.28;
  text-transform: uppercase;
}

.environmental-water-withdrawal-chart p {
  margin: 0 0 18px;
  color: var(--template-text);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.environmental-water-donut-row {
  display: grid;
  gap: 22px;
  align-items: start;
  justify-items: start;
}

.environmental-water-donut {
  width: 100%;
  max-width: 432px;
  height: auto;
}

.environmental-water-donut-figure {
  position: relative;
  width: min(100%, 432px);
  margin-left: 16px;
}

.environmental-water-donut-label {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--template-heading);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.environmental-water-donut-label--green {
  color: var(--template-green);
}

.environmental-water-donut-label--cyan {
  color: #00aeef;
}

.environmental-water-donut-label--blue {
  color: #3b5582;
}

.environmental-water-source-legend {
  display: grid;
  gap: 13px;
  margin: 0 0 0 44px;
  padding: 0;
  list-style: none;
}

.environmental-water-source-legend li {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px 12px;
  align-items: baseline;
  padding-left: 20px;
  color: var(--template-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.environmental-water-source-legend li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--source-color);
}

.environmental-water-source-legend strong {
  color: var(--template-heading);
  font-size: 16px;
  font-weight: 800;
}

.environmental-water-source-legend span {
  min-width: 0;
}

.environmental-water-source-legend--inline {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  gap: 10px 86px;
  width: min(100%, 740px);
  margin-top: 22px;
  margin-left: 18px;
}

.environmental-water-source-legend--inline li {
  grid-template-columns: minmax(0, 1fr);
}

.environmental-water-stack-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.environmental-water-stack-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: end;
}

.environmental-water-stack-row > span:first-child,
.environmental-water-stack-row strong {
  color: var(--template-heading);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.environmental-water-stack-row:first-child > span:first-child {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  min-height: 26px;
  color: #fff;
  background: var(--template-green);
}

.environmental-water-stack-row:first-child > span:first-child::after {
  content: "";
  position: absolute;
  right: -9px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 9px solid var(--template-green);
}

.environmental-water-stack-row:nth-child(n + 2) > span:first-child {
  color: #3b5582;
}

.environmental-water-stack-row img {
  display: block;
  width: 100%;
  max-width: 900px;
  height: auto;
}

.environmental-water-stack-track {
  position: relative;
  display: block;
  width: min(100%, 900px);
  margin-bottom: 2px;
}

.environmental-water-stack-label {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  min-height: 18px;
  padding: 0 8px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.environmental-water-stack-label::after,
.environmental-water-stack-label::before {
  content: none;
}

.environmental-water-stack-label--green {
  color: var(--template-green);
}

.environmental-water-stack-label--cyan {
  color: #00aeef;
}

.environmental-water-stack-label--blue {
  color: #3b5582;
}

.environmental-water-withdrawal-mini {
  display: grid;
  gap: 15px;
}

.environmental-water-mini-chart--withdrawal {
  width: min(100%, 486px);
  padding-top: 0;
  border-top: 0;
}

.environmental-water-mini-chart--withdrawal h3 {
  margin: 0 0 20px;
  color: var(--template-heading);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.18;
  text-transform: uppercase;
}

.environmental-water-mini-row {
  display: grid;
  grid-template-columns: 70px 1fr 101px;
  gap: 14px;
  align-items: center;
}

.environmental-water-mini-row > span {
  color: #3b5582;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.environmental-water-mini-row:first-child > span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  min-height: 31px;
  padding-right: 10px;
  color: #fff;
  background: var(--template-green);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
}

.environmental-water-mini-row:first-child > span::after {
  content: none;
}

.environmental-water-mini-row i {
  position: relative;
  display: block;
  height: 14px;
}

.environmental-water-mini-row i::before {
  content: "";
  display: block;
  width: calc(var(--bar) * 1%);
  height: 100%;
  background: var(--template-green);
}

.environmental-water-mini-row:nth-child(n + 2) i::before {
  background: #66789f;
}

.environmental-water-mini-row i::after {
  content: "";
  position: absolute;
  left: calc(var(--bar) * 1%);
  right: -18px;
  top: 50%;
  height: 1px;
  background: var(--template-green);
  transform: translateY(-50%);
}

.environmental-water-mini-row strong::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.environmental-water-mini-row:nth-child(n + 2) i::after {
  background: #66789f;
}

.environmental-water-mini-row strong {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 13px;
  color: var(--template-green);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.environmental-water-mini-row:nth-child(n + 2) strong {
  color: #66789f;
}

.environmental-water-svg-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.environmental-water-svg-row span {
  color: var(--template-heading);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.environmental-water-svg-row:first-child span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 10px;
  color: #fff;
  background: var(--template-green);
}

.environmental-water-svg-row img {
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
}

.environmental-water-svg-track {
  position: relative;
  display: block;
  width: min(100%, 360px);
}

.environmental-water-svg-track strong {
  position: absolute;
  right: 9px;
  top: 50%;
  min-width: 54px;
  color: var(--template-green);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  transform: translateY(-50%);
  pointer-events: none;
}

.environmental-water-svg-row:nth-child(n + 2) .environmental-water-svg-track strong {
  color: #3b5582;
}

.environmental-water-source-table {
  display: grid;
  grid-template-columns: 58px repeat(5, minmax(0, 1fr));
  gap: 8px 10px;
  margin-top: 18px;
  color: var(--template-heading);
  font-size: 13px;
  line-height: 1.2;
}

.environmental-water-source-table span {
  font-weight: 800;
}

.environmental-water-source-table b {
  font-weight: 700;
}

.environmental-water-mini-chart {
  padding-top: clamp(28px, 3vw, 42px);
  border-top: 2px solid rgba(60, 85, 129, 0.18);
}

.environmental-water-mini-chart--plain {
  padding-top: 0;
  border-top: 0;
}

.environmental-water-mini-chart h3 + .environmental-water-bars {
  margin-bottom: 32px;
}

.environmental-water-mini-chart--plain h3 + .environmental-water-bars {
  margin-bottom: 0;
}

.environmental-water-discharge-chart {
  width: min(100%, 486px);
  margin: 22px 0 30px;
}

.environmental-water-discharge-chart h3 {
  margin: 0 0 20px;
  color: var(--template-heading);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.18;
  text-transform: uppercase;
}

.environmental-water-discharge-bars {
  display: grid;
  gap: 14px;
}

.environmental-water-discharge-bars div {
  --metric-color: #66789f;
  --metric-fill-width: calc(var(--bar) * 1%);
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 101px;
  gap: 14px;
  align-items: center;
  min-height: 31px;
}

.environmental-water-discharge-bars div:first-child {
  --metric-color: var(--template-green);
}

.environmental-water-discharge-bars span,
.environmental-water-discharge-bars strong {
  color: var(--template-heading);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.environmental-water-discharge-bars span {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  justify-self: start;
  width: auto;
  height: 31px;
  color: #3b5582;
  font-size: 16px;
}

.environmental-water-discharge-bars div:first-child span {
  justify-content: center;
  width: 62px;
  padding: 0 12px 0 8px;
  background: var(--template-green);
  color: #fff;
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 50%, calc(100% - 9px) 100%, 0 100%);
}

.environmental-water-discharge-bars i {
  position: relative;
  display: block;
  height: 14px;
  overflow: visible;
  background: transparent;
}

.environmental-water-discharge-bars i::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
  width: var(--metric-fill-width);
  height: 14px;
  background: var(--metric-color);
  transform: translateY(-50%);
}

.environmental-water-discharge-bars i::after {
  content: "";
  position: absolute;
  left: var(--metric-fill-width);
  right: -18px;
  top: 50%;
  height: 1px;
  background: var(--metric-color);
  transform: translateY(-50%);
}

.environmental-water-discharge-bars strong {
  position: relative;
  z-index: 1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 30px;
  padding: 0 13px;
  border: 2px solid var(--metric-color);
  border-radius: 999px;
  background: #f9fcfd;
  color: var(--metric-color);
  text-align: center;
}

.environmental-water-discharge-bars strong::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--metric-color);
  transform: translate(-50%, -50%);
}

.environmental-water-bars {
  display: grid;
  gap: 14px;
}

.environmental-water-bars div {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) minmax(72px, auto);
  gap: 12px;
  align-items: center;
}

.environmental-water-bars span,
.environmental-water-bars strong {
  color: var(--template-heading);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.environmental-water-bars i {
  display: block;
  height: 11px;
  overflow: hidden;
  background: rgba(60, 85, 129, 0.15);
}

.environmental-water-bars i::before {
  content: "";
  display: block;
  width: calc(var(--bar) * 1%);
  height: 100%;
  background: var(--template-green);
}

.environmental-water-bars div:nth-child(n + 2) i::before {
  background: #66789f;
}

.environmental-water-bars div:nth-child(n + 2) span,
.environmental-water-bars div:nth-child(n + 2) strong {
  color: #3b5582;
}

.environmental-water-kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px 48px;
}

.environmental-water-kpi-grid--single {
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
  margin-top: clamp(28px, 3vw, 42px);
}

.environmental-water-kpi {
  padding-top: 0;
  border-top: 0;
}

.environmental-water-kpi h3 {
  margin: 0 0 15px;
  color: var(--template-heading);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.18;
  text-transform: uppercase;
}

.environmental-water-kpi-bars {
  display: grid;
  gap: 15px;
  width: min(100%, 486px);
}

.environmental-water-kpi-bars div {
  --metric-color: #66789f;
  --metric-fill-width: calc(var(--bar) * 1%);
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 101px;
  gap: 14px;
  align-items: center;
  min-height: 31px;
}

.environmental-water-kpi-bars div:first-child {
  --metric-color: var(--template-green);
}

.environmental-water-kpi-bars span,
.environmental-water-kpi-bars strong {
  color: var(--template-heading);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.environmental-water-kpi-bars span {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  justify-self: start;
  width: auto;
  height: 31px;
  color: #3b5582;
  font-size: 16px;
}

.environmental-water-kpi-bars div:first-child span {
  justify-content: center;
  width: 62px;
  padding: 0 12px 0 8px;
  background: var(--template-green);
  color: #fff;
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 50%, calc(100% - 9px) 100%, 0 100%);
}

.environmental-water-kpi-bars i {
  position: relative;
  display: block;
  height: 14px;
  overflow: visible;
  background: transparent;
}

.environmental-water-kpi-bars i::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
  width: var(--metric-fill-width);
  min-width: 2px;
  height: 14px;
  background: var(--metric-color);
  transform: translateY(-50%);
}

.environmental-water-kpi-bars i::after {
  content: "";
  position: absolute;
  left: var(--metric-fill-width);
  right: -18px;
  top: 50%;
  height: 1px;
  background: var(--metric-color);
  transform: translateY(-50%);
}

.environmental-water-kpi-bars strong {
  position: relative;
  z-index: 1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 30px;
  padding: 0 13px;
  border: 2px solid var(--metric-color);
  border-radius: 999px;
  background: #f9fcfd;
  color: var(--metric-color);
  text-align: center;
}

.environmental-water-kpi-bars strong::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--metric-color);
  transform: translate(-50%, -50%);
}

.environmental-water-table-wrap {
  min-width: 0;
  margin-top: 28px;
  overflow-x: auto;
}

.environmental-water-table-title {
  margin: 0 0 22px;
  color: var(--template-heading);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.28;
  text-transform: uppercase;
}

.environmental-water-table-title span {
  color: var(--template-green);
}

.environmental-water-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  table-layout: fixed;
  border-bottom: 3px solid var(--template-green);
}

.environmental-water-table th,
.environmental-water-table td {
  padding: 14px 16px;
  border-top: 1px solid #b6c5d5;
  color: var(--template-text);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.38;
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}

.environmental-water-table th {
  color: #fff;
  background: #3b5582;
  font-weight: 800;
}

.environmental-water-table th:first-child {
  width: 54%;
  background: var(--template-green);
}

.environmental-water-table th + th,
.environmental-water-table td + td {
  border-left: 1px solid #9aacbf;
}

.environmental-water-table td:first-child {
  color: var(--template-heading);
  font-weight: 800;
}

.environmental-water-table--consumption td:first-child {
  font-weight: 500;
}

.environmental-water-notes {
  max-width: 1300px;
  margin-top: 18px;
  color: #5d6872;
  font-size: 13px;
  line-height: 1.38;
}

.environmental-water-notes p {
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: 500;
  line-height: inherit;
}

.environmental-water-notes p + p {
  margin-top: 10px;
}

.environmental-template__list--columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 34px;
}

.environmental-template__media--waste-worker img,
.environmental-template__media--biodiversity-birds img,
.environmental-template__media--compliance-lab img {
  aspect-ratio: 1.26;
  object-fit: cover;
}

.environmental-template__media--waste-worker img {
  object-position: center;
}

.environmental-template__media--biodiversity-birds img {
  object-position: center;
}

.environmental-template__media--biodiversity-seals img,
.environmental-template__media--biodiversity-site img,
.environmental-template__media--compliance-refinery img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.environmental-template__media--biodiversity-seals img {
  object-position: center 45%;
}

.environmental-template__media--biodiversity-site img {
  object-position: center;
}

.environmental-template__media--compliance-refinery img {
  object-position: center 48%;
}

.environmental-data-table-section,
.environmental-metric-grid {
  padding-top: clamp(28px, 3vw, 42px);
  border-top: 2px solid rgba(60, 85, 129, 0.18);
}

.environmental-data-table-wrap {
  min-width: 0;
  overflow-x: auto;
}

.environmental-data-table-title {
  margin: 0 0 22px;
  color: var(--template-heading);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.28;
  text-transform: uppercase;
}

.environmental-template__block h3.environmental-data-table-title {
  margin: 0 0 22px;
  color: var(--template-heading);
  font-size: 15px;
  line-height: 1.28;
}

.environmental-data-table-title span {
  color: var(--template-green);
}

.environmental-data-table-title .environmental-table-title-text {
  color: var(--template-heading) !important;
}

.environmental-data-table-title sup {
  font-size: 0.62em;
  line-height: 0;
}

.environmental-data-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  table-layout: fixed;
  border-bottom: 3px solid var(--template-green);
}

.environmental-data-table--wide {
  min-width: 960px;
}

.environmental-data-table th,
.environmental-data-table td {
  padding: 14px 16px;
  border-top: 1px solid #b6c5d5;
  color: var(--template-text);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.38;
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}

.environmental-data-table th {
  color: #fff;
  background: #3b5582;
  font-weight: 800;
}

.environmental-data-table th:first-child {
  width: 48%;
  background: var(--template-green);
}

.environmental-data-table th + th,
.environmental-data-table td + td {
  border-left: 1px solid #9aacbf;
}

.environmental-data-table td:first-child,
.environmental-data-table__total td:first-child {
  color: var(--template-heading);
  font-weight: 800;
}

.environmental-data-table__total td:nth-child(n + 2) {
  font-weight: 800;
}

.environmental-data-table__child td:first-child {
  padding-left: 34px;
}

.environmental-data-table--biodiversity th:first-child {
  width: 42%;
}

.environmental-data-table--biodiversity-compensation tbody td:first-child {
  font-weight: 500;
}

.environmental-data-table-section--biodiversity-monitoring .environmental-data-table-title {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.25;
}

.environmental-data-table-section--biodiversity-monitoring .environmental-data-table--biodiversity {
  min-width: 900px;
}

.environmental-data-table-section--biodiversity-monitoring .environmental-data-table--biodiversity th,
.environmental-data-table-section--biodiversity-monitoring .environmental-data-table--biodiversity td {
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.32;
}

.environmental-data-table-section--biodiversity-monitoring .environmental-data-table--biodiversity th:first-child {
  width: 34%;
}

.environmental-data-table-section--biodiversity-monitoring .environmental-data-table--biodiversity thead tr:nth-child(2) th:first-child {
  width: auto;
  background: #3b5582;
}

.environmental-data-table-section--biodiversity-monitoring .environmental-data-table--biodiversity tbody td:first-child {
  font-weight: 500;
}

.environmental-data-table-section--waste-types {
  padding-top: 0;
  border-top: 0;
}

.environmental-data-table--waste-types td:first-child {
  color: var(--template-text);
  font-weight: 500;
}

.environmental-data-table--waste-types .environmental-data-table__child td:first-child {
  position: relative;
  padding-left: 44px;
  color: var(--template-text);
  font-weight: 500;
}

.environmental-data-table--waste-types .environmental-data-table__total td,
.environmental-data-table--waste-types .environmental-data-table__total td:first-child {
  color: var(--template-heading);
  font-weight: 800;
}

.environmental-data-table--waste-types .environmental-data-table__child td:first-child::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--template-green);
  border-radius: 50%;
  transform: translateY(-50%);
  box-sizing: border-box;
}

.environmental-data-table--waste-types .environmental-data-table__child td:first-child::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--template-green);
  transform: translateY(-50%);
}

.environmental-notes--waste-types {
  margin-top: 16px;
}

.environmental-data-table-section--waste-types .environmental-waste-table-metrics {
  margin-top: 34px;
}

.environmental-alpha-footnote {
  color: #43a047;
  font-size: 0.65em;
  font-weight: 800;
  line-height: 0;
  margin-left: 1px;
  vertical-align: super;
}

.environmental-notes {
  max-width: 1300px;
  margin-top: 18px;
  color: #5d6872;
  font-size: 13px;
  line-height: 1.38;
}

.environmental-notes p {
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: 500;
  line-height: inherit;
}

.environmental-metric-grid {
  display: grid;
  gap: 34px;
  margin-top: 34px;
}

.environmental-metric-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.environmental-metric-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.environmental-metric-panel {
  min-width: 0;
}

.environmental-metric-panel h3,
.environmental-compliance-fines h3 {
  margin: 0 0 18px;
  color: var(--template-heading);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.28;
  text-transform: uppercase;
}

.environmental-metric-bars {
  display: grid;
  gap: 16px;
}

.environmental-metric-bars div {
  --metric-color: #65779d;
  --metric-fill-width: calc(var(--bar) * 0.72%);
  display: grid;
  grid-template-columns: 64px minmax(130px, 1fr) minmax(74px, auto);
  gap: 8px;
  align-items: center;
  min-height: 23px;
}

.environmental-metric-bars div:first-child {
  --metric-color: var(--template-green);
}

.environmental-metric-bars span,
.environmental-metric-bars strong {
  color: var(--template-heading);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.environmental-metric-bars span {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  justify-self: start;
  align-self: center;
  width: 54px;
  height: 23px;
  color: #65779d;
}

.environmental-metric-bars div:first-child span {
  justify-content: center;
  padding: 0 13px 0 8px;
  background: var(--template-green);
  color: #fff;
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 50%, calc(100% - 9px) 100%, 0 100%);
}

.environmental-metric-bars i {
  position: relative;
  display: block;
  height: 15px;
  overflow: visible;
  background: transparent;
}

.environmental-metric-bars i::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
  width: var(--metric-fill-width);
  min-width: 2px;
  height: 11px;
  background: var(--metric-color);
  transform: translateY(-50%);
}

.environmental-metric-bars i::after {
  content: "";
  position: absolute;
  left: var(--metric-fill-width);
  right: -10px;
  top: 50%;
  height: 1px;
  background: var(--metric-color);
  transform: translateY(-50%);
}

.environmental-metric-bars strong {
  position: relative;
  z-index: 1;
  justify-self: start;
  min-width: 62px;
  padding: 3px 10px 4px;
  border: 2px solid var(--metric-color);
  border-radius: 999px;
  background: #f9fcfd;
  color: var(--metric-color);
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.environmental-metric-bars strong::before {
  content: "";
  position: absolute;
  left: -3px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--metric-color);
  transform: translateY(-50%);
}

.environmental-practice-card__label {
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  padding: 8px 14px;
  background: #3c5581;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.environmental-practice-card--biodiversity {
  align-self: start;
}

.environmental-practice-card--biodiversity .environmental-practice-card__body {
  min-height: 0;
  padding: 42px 58px 86px;
}

.environmental-biodiversity-flow {
  display: grid;
  gap: clamp(26px, 2.6vw, 38px);
}

.environmental-biodiversity-flow > section {
  min-width: 0;
}

.environmental-biodiversity-section-heading {
  margin-bottom: calc(clamp(26px, 2.6vw, 38px) * -0.45);
}

.environmental-biodiversity-section-heading h3 {
  max-width: 980px;
  margin-bottom: 0;
  font-size: 34px;
  line-height: 1.15;
}

.environmental-compliance-fines {
  padding-top: clamp(28px, 3vw, 42px);
  border-top: 2px solid rgba(60, 85, 129, 0.18);
}

.environmental-compliance-fines__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.environmental-compliance-fines__grid h4 {
  margin: 0 0 14px;
  color: var(--template-heading);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
}

.environmental-template--compliance {
  padding-top: clamp(48px, 5vw, 82px);
}

.environmental-compliance-grid h2 {
  margin: 0 0 24px;
  color: var(--template-heading);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.16;
}

.environmental-compliance-expenses .environmental-template__list,
.environmental-compliance-law .environmental-template__list {
  gap: 12px;
}

.environmental-compliance-media-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 86px;
  align-items: start;
}

.environmental-compliance-media-row .environmental-template__media {
  width: 100%;
  margin: 0;
}

.environmental-compliance-media-row .environmental-template__media img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.environmental-compliance-media-row .environmental-notes {
  grid-column: 1 / -1;
  max-width: none;
  margin: 0;
}

.environmental-template__media--compliance-lab {
  width: 100%;
  margin-top: 0;
}

.environmental-template__media--compliance-lab img {
  object-position: center;
}

.environmental-compliance-law .environmental-template__gri {
  margin-bottom: 28px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.52;
}

.environmental-compliance-chart {
  min-width: 0;
  width: min(520px, 100%);
  margin: clamp(26px, 2.8vw, 42px) 0 0;
}

.environmental-compliance-chart figcaption {
  margin: 0 0 12px;
  color: var(--template-heading);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.environmental-compliance-chart svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.environmental-compliance-chart__axis,
.environmental-compliance-chart__tick {
  stroke: var(--template-green);
  stroke-width: 0.95;
}

.environmental-compliance-chart__bar--green {
  fill: #5db870;
}

.environmental-compliance-chart__bar--blue {
  fill: #66789f;
}

.environmental-compliance-chart__callout {
  fill: #f9fcfd;
  stroke-width: 0.9;
}

.environmental-compliance-chart__callout--green,
.environmental-compliance-chart__line--green {
  stroke: #5db870;
}

.environmental-compliance-chart__callout--blue,
.environmental-compliance-chart__line--blue {
  stroke: #66789f;
}

.environmental-compliance-chart__line {
  stroke-width: 0.75;
}

.environmental-compliance-chart__dot--green {
  fill: #5db870;
}

.environmental-compliance-chart__dot--blue {
  fill: #66789f;
}

.environmental-compliance-chart__value {
  font-size: 7.6px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  text-anchor: middle;
  dominant-baseline: middle;
}

.environmental-compliance-chart__value--green {
  fill: #5db870;
}

.environmental-compliance-chart__value--blue {
  fill: #66789f;
}

.environmental-compliance-chart__year-label {
  fill: #66789f;
  font-size: 8.2px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  text-anchor: middle;
}

.environmental-compliance-chart__legend text {
  fill: var(--template-text);
  font-size: 7.4px;
  font-weight: 500;
}

.environmental-chart-animate {
  --environmental-chart-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.environmental-chart-animate--soft-pie .environmental-energy-segment-chart__svg,
.environmental-chart-animate--soft-pie .environmental-energy-resource-chart__svg {
  --environmental-pie-progress: 0;
  opacity: 1;
  -webkit-mask-image: conic-gradient(
    #000 0turn calc(var(--environmental-pie-progress) * 1turn),
    transparent calc(var(--environmental-pie-progress) * 1turn) 1turn
  );
  mask-image: conic-gradient(
    #000 0turn calc(var(--environmental-pie-progress) * 1turn),
    transparent calc(var(--environmental-pie-progress) * 1turn) 1turn
  );
  transform-origin: center;
  will-change: mask-image, -webkit-mask-image;
}

.environmental-chart-animate--soft-pie.is-chart-animated .environmental-energy-segment-chart__svg,
.environmental-chart-animate--soft-pie.is-chart-animated .environmental-energy-resource-chart__svg {
  animation: environmental-pie-clockwise-reveal 980ms linear forwards;
  animation-delay: var(--environmental-chart-delay, 0ms);
}

@property --environmental-pie-progress {
  syntax: "<number>";
  inherits: false;
  initial-value: 1;
}

@keyframes environmental-pie-clockwise-reveal {
  from {
    --environmental-pie-progress: 0;
  }

  to {
    --environmental-pie-progress: 1;
  }
}

.environmental-chart-animate--soft-pie .environmental-energy-segment-chart__label-text,
.environmental-chart-animate--soft-pie .environmental-energy-resource-chart__label-text,
.environmental-chart-animate--soft-pie .environmental-energy-segment-chart__legend li,
.environmental-chart-animate--soft-pie .environmental-energy-resource-chart__legend li {
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  transition:
    opacity 620ms var(--environmental-chart-ease),
    transform 620ms var(--environmental-chart-ease);
  transition-delay: calc(var(--environmental-chart-delay, 0ms) + 440ms + var(--environmental-chart-row-delay, 0ms));
  will-change: opacity, transform;
}

.environmental-chart-animate--soft-pie.is-chart-animated .environmental-energy-segment-chart__label-text,
.environmental-chart-animate--soft-pie.is-chart-animated .environmental-energy-resource-chart__label-text,
.environmental-chart-animate--soft-pie.is-chart-animated .environmental-energy-segment-chart__legend li,
.environmental-chart-animate--soft-pie.is-chart-animated .environmental-energy-resource-chart__legend li {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.environmental-chart-animate--bar-svg .environmental-energy-intensity-chart__geometry > path:nth-child(-n + 11) {
  opacity: 1;
  transform: scaleX(0.01);
  transform-box: fill-box;
  transform-origin: left center;
  transition: transform 960ms var(--environmental-chart-ease);
  transition-delay: calc(var(--environmental-chart-delay, 0ms) + var(--environmental-chart-row-delay, 0ms));
  will-change: transform;
}

.environmental-chart-animate--bar-svg.is-chart-animated .environmental-energy-intensity-chart__geometry > path:nth-child(-n + 11) {
  transform: scaleX(1);
}

.environmental-chart-animate--bar-svg .environmental-energy-intensity-chart__geometry > path:nth-child(n + 12),
.environmental-chart-animate--bar-svg .environmental-energy-intensity-chart__labels text {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

.environmental-chart-animate--principles .environmental-water-principles-author {
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition:
    opacity 680ms var(--environmental-chart-ease),
    transform 680ms var(--environmental-chart-ease);
  transition-delay: var(--environmental-chart-delay, 0ms);
}

.environmental-chart-animate--principles.is-chart-animated .environmental-water-principles-author {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.environmental-chart-animate--principles .environmental-water-principles-stage {
  overflow: hidden;
}

.environmental-chart-animate--principles .environmental-water-principles-stage::before {
  opacity: 0;
  transform: scaleX(0.01);
  transform-origin: left center;
  transition:
    opacity 620ms var(--environmental-chart-ease),
    transform 920ms var(--environmental-chart-ease);
  transition-delay: calc(var(--environmental-chart-delay, 0ms) + 180ms);
}

.environmental-chart-animate--principles.is-chart-animated .environmental-water-principles-stage::before {
  opacity: 1;
  transform: scaleX(1);
}

.environmental-chart-animate--principles .environmental-water-principles-stage img {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transition:
    opacity 680ms var(--environmental-chart-ease),
    clip-path 1040ms var(--environmental-chart-ease);
  transition-delay: calc(var(--environmental-chart-delay, 0ms) + 120ms);
}

.environmental-chart-animate--principles.is-chart-animated .environmental-water-principles-stage img {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

.environmental-chart-animate--principles .environmental-water-principles li {
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  transition:
    opacity 560ms var(--environmental-chart-ease),
    transform 560ms var(--environmental-chart-ease);
  transition-delay: calc(var(--environmental-chart-delay, 0ms) + 520ms + var(--environmental-chart-row-delay, 0ms));
}

.environmental-chart-animate--principles.is-chart-animated .environmental-water-principles li {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.environmental-chart-animate--water-donut .environmental-water-donut {
  --environmental-water-donut-progress: 0;
  opacity: 1;
  -webkit-mask-image: conic-gradient(
    #000 0turn calc(var(--environmental-water-donut-progress) * 1turn),
    transparent calc(var(--environmental-water-donut-progress) * 1turn) 1turn
  );
  mask-image: conic-gradient(
    #000 0turn calc(var(--environmental-water-donut-progress) * 1turn),
    transparent calc(var(--environmental-water-donut-progress) * 1turn) 1turn
  );
  transform-origin: center;
  will-change: mask-image, -webkit-mask-image;
}

.environmental-chart-animate--water-donut.is-chart-animated .environmental-water-donut {
  animation: environmental-water-donut-clockwise-reveal 980ms linear forwards;
  animation-delay: var(--environmental-chart-delay, 0ms);
}

@property --environmental-water-donut-progress {
  syntax: "<number>";
  inherits: false;
  initial-value: 1;
}

@keyframes environmental-water-donut-clockwise-reveal {
  from {
    --environmental-water-donut-progress: 0;
  }

  to {
    --environmental-water-donut-progress: 1;
  }
}

.environmental-chart-animate--water-donut .environmental-water-donut-label,
.environmental-chart-animate--water-donut .environmental-water-source-legend li {
  opacity: 0;
  transition:
    opacity 620ms var(--environmental-chart-ease),
    transform 620ms var(--environmental-chart-ease);
  transition-delay: calc(var(--environmental-chart-delay, 0ms) + 480ms + var(--environmental-chart-row-delay, 0ms));
}

.environmental-chart-animate--water-donut .environmental-water-donut-label {
  transform: translate(-50%, calc(-50% + 8px)) scale(0.96);
}

.environmental-chart-animate--water-donut .environmental-water-source-legend li {
  transform: translate3d(0, 8px, 0);
}

.environmental-chart-animate--water-donut.is-chart-animated .environmental-water-donut-label {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.environmental-chart-animate--water-donut.is-chart-animated .environmental-water-source-legend li {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.environmental-chart-animate--stacked .environmental-water-stack-row img {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transition:
    opacity 620ms var(--environmental-chart-ease),
    clip-path 940ms var(--environmental-chart-ease);
  transition-delay: calc(var(--environmental-chart-delay, 0ms) + var(--environmental-chart-row-delay, 0ms));
}

.environmental-chart-animate--stacked.is-chart-animated .environmental-water-stack-row img {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

.environmental-chart-animate--stacked .environmental-water-stack-label,
.environmental-chart-animate--stacked .environmental-water-source-legend li {
  opacity: 0;
  transition:
    opacity 620ms var(--environmental-chart-ease),
    transform 620ms var(--environmental-chart-ease);
  transition-delay: calc(var(--environmental-chart-delay, 0ms) + 520ms + var(--environmental-chart-row-delay, 0ms));
}

.environmental-chart-animate--stacked .environmental-water-stack-label {
  transform: translate(-50%, calc(-50% + 8px));
}

.environmental-chart-animate--stacked .environmental-water-source-legend li {
  transform: translate3d(0, 8px, 0);
}

.environmental-chart-animate--stacked.is-chart-animated .environmental-water-stack-label {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.environmental-chart-animate--stacked.is-chart-animated .environmental-water-source-legend li {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.environmental-chart-animate--html-bars .environmental-metric-bars i::before,
.environmental-chart-animate--html-bars .environmental-water-discharge-bars i::before,
.environmental-chart-animate--html-bars .environmental-water-kpi-bars i::before {
  transform: translateY(-50%) scaleX(0.01);
  transform-origin: left center;
  transition: transform 920ms var(--environmental-chart-ease);
  transition-delay: calc(var(--environmental-chart-delay, 0ms) + var(--environmental-chart-row-delay, 0ms));
  will-change: transform;
}

.environmental-chart-animate--html-bars.is-chart-animated .environmental-metric-bars i::before,
.environmental-chart-animate--html-bars.is-chart-animated .environmental-water-discharge-bars i::before,
.environmental-chart-animate--html-bars.is-chart-animated .environmental-water-kpi-bars i::before {
  transform: translateY(-50%) scaleX(1);
}

.environmental-chart-animate--html-bars .environmental-metric-bars i::after,
.environmental-chart-animate--html-bars .environmental-water-mini-row i::after,
.environmental-chart-animate--html-bars .environmental-water-discharge-bars i::after,
.environmental-chart-animate--html-bars .environmental-water-kpi-bars i::after {
  transform: translateY(-50%) scaleX(0.01);
  transform-origin: left center;
  transition: transform 780ms var(--environmental-chart-ease);
  transition-delay: calc(var(--environmental-chart-delay, 0ms) + 140ms + var(--environmental-chart-row-delay, 0ms));
  will-change: transform;
}

.environmental-chart-animate--html-bars.is-chart-animated .environmental-metric-bars i::after,
.environmental-chart-animate--html-bars.is-chart-animated .environmental-water-mini-row i::after,
.environmental-chart-animate--html-bars.is-chart-animated .environmental-water-discharge-bars i::after,
.environmental-chart-animate--html-bars.is-chart-animated .environmental-water-kpi-bars i::after {
  transform: translateY(-50%) scaleX(1);
}

.environmental-chart-animate--html-bars .environmental-water-mini-row i::before,
.environmental-chart-animate--html-bars .environmental-water-bars i::before,
.environmental-chart-animate--html-bars .environmental-energy-share-row i::before {
  transform: scaleX(0.01);
  transform-origin: left center;
  transition: transform 920ms var(--environmental-chart-ease);
  transition-delay: calc(var(--environmental-chart-delay, 0ms) + var(--environmental-chart-row-delay, 0ms));
  will-change: transform;
}

.environmental-chart-animate--html-bars.is-chart-animated .environmental-water-mini-row i::before,
.environmental-chart-animate--html-bars.is-chart-animated .environmental-water-bars i::before,
.environmental-chart-animate--html-bars.is-chart-animated .environmental-energy-share-row i::before {
  transform: scaleX(1);
}

.environmental-chart-animate--html-bars .environmental-metric-bars span,
.environmental-chart-animate--html-bars .environmental-metric-bars strong,
.environmental-chart-animate--html-bars .environmental-water-mini-row > span,
.environmental-chart-animate--html-bars .environmental-water-mini-row strong,
.environmental-chart-animate--html-bars .environmental-water-discharge-bars span,
.environmental-chart-animate--html-bars .environmental-water-discharge-bars strong,
.environmental-chart-animate--html-bars .environmental-water-kpi-bars span,
.environmental-chart-animate--html-bars .environmental-water-kpi-bars strong,
.environmental-chart-animate--html-bars .environmental-water-bars span,
.environmental-chart-animate--html-bars .environmental-water-bars strong {
  opacity: 0;
  transform: translate3d(0, 6px, 0);
  transition:
    opacity 560ms var(--environmental-chart-ease),
    transform 560ms var(--environmental-chart-ease);
  transition-delay: calc(var(--environmental-chart-delay, 0ms) + 360ms + var(--environmental-chart-row-delay, 0ms));
  will-change: opacity, transform;
}

.environmental-chart-animate--html-bars.is-chart-animated .environmental-metric-bars span,
.environmental-chart-animate--html-bars.is-chart-animated .environmental-metric-bars strong,
.environmental-chart-animate--html-bars.is-chart-animated .environmental-water-mini-row > span,
.environmental-chart-animate--html-bars.is-chart-animated .environmental-water-mini-row strong,
.environmental-chart-animate--html-bars.is-chart-animated .environmental-water-discharge-bars span,
.environmental-chart-animate--html-bars.is-chart-animated .environmental-water-discharge-bars strong,
.environmental-chart-animate--html-bars.is-chart-animated .environmental-water-kpi-bars span,
.environmental-chart-animate--html-bars.is-chart-animated .environmental-water-kpi-bars strong,
.environmental-chart-animate--html-bars.is-chart-animated .environmental-water-bars span,
.environmental-chart-animate--html-bars.is-chart-animated .environmental-water-bars strong {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.environmental-chart-animate--compliance .environmental-compliance-chart__axis,
.environmental-chart-animate--compliance .environmental-compliance-chart__tick {
  opacity: 0;
  transition: opacity 560ms var(--environmental-chart-ease);
  transition-delay: var(--environmental-chart-delay, 0ms);
}

.environmental-chart-animate--compliance.is-chart-animated .environmental-compliance-chart__axis,
.environmental-chart-animate--compliance.is-chart-animated .environmental-compliance-chart__tick {
  opacity: 1;
}

.environmental-chart-animate--compliance .environmental-compliance-chart__bar {
  opacity: 0;
  transform: scaleY(0.01);
  transform-box: fill-box;
  transform-origin: center bottom;
  transition:
    opacity 520ms var(--environmental-chart-ease),
    transform 860ms var(--environmental-chart-ease);
  transition-delay: calc(var(--environmental-chart-delay, 0ms) + 120ms + var(--environmental-chart-row-delay, 0ms));
  will-change: opacity, transform;
}

.environmental-chart-animate--compliance.is-chart-animated .environmental-compliance-chart__bar {
  opacity: 1;
  transform: scaleY(1);
}

.environmental-chart-animate--compliance .environmental-compliance-chart__callout,
.environmental-chart-animate--compliance .environmental-compliance-chart__line,
.environmental-chart-animate--compliance .environmental-compliance-chart__dot,
.environmental-chart-animate--compliance .environmental-compliance-chart__value,
.environmental-chart-animate--compliance .environmental-compliance-chart__year-label,
.environmental-chart-animate--compliance .environmental-compliance-chart__legend {
  opacity: 0;
  transform: translate3d(0, 6px, 0);
  transition:
    opacity 620ms var(--environmental-chart-ease),
    transform 620ms var(--environmental-chart-ease);
  transition-delay: calc(var(--environmental-chart-delay, 0ms) + 520ms + var(--environmental-chart-row-delay, 0ms));
  will-change: opacity, transform;
}

.environmental-chart-animate--compliance.is-chart-animated .environmental-compliance-chart__callout,
.environmental-chart-animate--compliance.is-chart-animated .environmental-compliance-chart__line,
.environmental-chart-animate--compliance.is-chart-animated .environmental-compliance-chart__dot,
.environmental-chart-animate--compliance.is-chart-animated .environmental-compliance-chart__value,
.environmental-chart-animate--compliance.is-chart-animated .environmental-compliance-chart__year-label,
.environmental-chart-animate--compliance.is-chart-animated .environmental-compliance-chart__legend {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .environmental-chart-animate *,
  .environmental-chart-animate *::before,
  .environmental-chart-animate *::after {
    opacity: 1 !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
    transform: none !important;
    clip-path: none !important;
    transition: none !important;
    will-change: auto !important;
  }
}

.environmental-template__media--compliance-refinery {
  width: 100%;
  margin-top: 0;
}

.environmental-template__media--compliance-refinery img {
  object-position: center 48%;
}

.environmental-waste-flow {
  display: block;
}

.environmental-waste-accounting-main .environmental-template__media {
  margin-top: clamp(24px, 2.8vw, 40px);
}

.environmental-waste-table-metrics,
.environmental-waste-history-metrics {
  align-self: start;
}

.environmental-waste-history-metrics {
  display: grid;
  gap: clamp(34px, 3.2vw, 46px);
}

.environmental-waste-section-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 62px 86px;
  padding-top: clamp(30px, 3vw, 44px);
  border-top: 2px solid rgba(60, 85, 129, 0.18);
}

.environmental-template--waste .environmental-metric-panel h3 {
  font-size: 15px;
  line-height: 1.28;
}

.environmental-waste-spill-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 62px 86px;
  align-items: start;
}

.environmental-energy-intensity {
  padding-top: clamp(28px, 3vw, 42px);
  border-top: 2px solid rgba(60, 85, 129, 0.18);
}

.environmental-energy-bars {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.environmental-energy-bar {
  display: grid;
  grid-template-columns: minmax(210px, 0.72fr) minmax(220px, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.environmental-energy-bar span,
.environmental-energy-bar strong {
  color: var(--template-heading);
  font-size: 16px;
  line-height: 1.25;
}

.environmental-energy-bar span {
  font-weight: 800;
}

.environmental-energy-bar strong {
  min-width: 54px;
  text-align: right;
  font-weight: 800;
}

.environmental-energy-bar i {
  display: block;
  height: 13px;
  overflow: hidden;
  border-radius: 999px;
  background: #e5edf3;
}

.environmental-energy-bar i::before {
  content: "";
  display: block;
  width: calc(var(--bar) * 1%);
  height: 100%;
  border-radius: inherit;
  background: #57b66a;
}

.environmental-energy-bar--average i::before {
  background: var(--template-green);
}

.environmental-energy-bar--average span,
.environmental-energy-bar--average strong {
  color: var(--template-green);
}

.environmental-template__motivation-layout {
  grid-column: 1 / -1;
  display: grid;
  grid-template-areas:
    "image side"
    "intro side";
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px 86px;
  align-items: start;
}

.environmental-template__motivation-intro {
  grid-area: intro;
}

.environmental-template__motivation-side {
  grid-area: side;
  display: grid;
  gap: 34px;
  align-content: start;
}

.environmental-template__motivation-side .environmental-template__motivation-chair,
.environmental-template__motivation-side .environmental-template__motivation-deputies {
  grid-area: auto;
}

.environmental-template__motivation-chair {
  grid-area: chair;
}

.environmental-template__motivation-deputies {
  grid-area: deputies;
}

.environmental-template__media--events img {
  aspect-ratio: 1.48;
  max-width: none;
  object-fit: cover;
  width: 100%;
}

.environmental-template__media--events-wide img {
  aspect-ratio: 2.2;
}

.environmental-template__media img {
  display: block;
  width: 100%;
  height: auto;
}

.environmental-documents-update__media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.environmental-template__media--emissions-pipes {
  margin-top: clamp(28px, 3vw, 42px);
}

.environmental-template__media--emissions-pipes img {
  aspect-ratio: 1.62;
  object-fit: cover;
  object-position: center;
}

.environmental-template__media--emissions-workers {
  margin-top: clamp(32px, 3.4vw, 52px);
}

.environmental-template__media--emissions-workers img {
  aspect-ratio: 1.8;
  object-fit: cover;
  object-position: center;
}

.environmental-practice-card {
  width: 100%;
  justify-self: stretch;
  overflow: hidden;
  border-radius: 28px 0 32px;
  background: #dbe6ec;
}

.environmental-practice-card__header {
  position: relative;
  z-index: 2;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 28px 17px;
  border-radius: 28px 0 28px 0;
  background: #3b5582;
}

.environmental-practice-card .environmental-practice-card__header h4 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.environmental-practice-card .environmental-practice-card__header h4 strong {
  color: inherit;
}

.environmental-practice-card__icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  background: url("assets/practice-icon.svg") center / contain no-repeat;
}

.environmental-practice-card__media {
  position: relative;
  z-index: 1;
  margin: -28px 0 0;
}

.environmental-practice-card__media img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
}

.environmental-practice-card__body {
  position: relative;
  min-height: 360px;
  padding: 42px 58px 86px;
  background: #dbe6ec;
}

.environmental-practice-card__body::after {
  content: "";
  position: absolute;
  left: 58px;
  right: 58px;
  bottom: 34px;
  height: 46px;
  background: url("assets/practice-ornament.svg") right bottom / 100% auto no-repeat;
  pointer-events: none;
}

.environmental-practice-card .environmental-practice-card__body p {
  margin: 0 0 24px;
  color: #3a3a3a;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.34;
}

.environmental-practice-card .environmental-practice-card__body h3 {
  margin: 0 0 24px;
  color: #20262c;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.15;
}

.environmental-practice-card .environmental-practice-card__body p:last-child {
  margin-bottom: 0;
}

.environmental-practice-card .environmental-practice-card__body strong {
  color: #3a3a3a;
  font-weight: 800;
}

.strategy-results-page,
.strategy-sustainability-management-page,
.strategy-material-topics-page,
.strategy-sdg-page,
.strategy-climate-page {
  --strategy-gold: var(--section-strategy-accent);
  --strategy-gold-soft: #fdf7e2;
  --strategy-cyan: #00aeef;
  --strategy-cyan-soft: #e9f7fe;
  --strategy-blue: #3b5582;
  --strategy-text: #3a3a3a;
  --strategy-heading: #20262c;
}

.strategy-climate-page .section-hero--strategy {
  background:
    linear-gradient(90deg, rgba(4, 43, 88, 0.98) 0%, rgba(4, 43, 88, 0.86) 58%, rgba(4, 43, 88, 0.52) 100%),
    url("assets/images/page_0032_xref_1052_dcc27e1a80e0.jpeg") right bottom / auto 100% no-repeat,
    linear-gradient(135deg, #042b58 0%, var(--navy) 58%, #001f44 100%);
}

.strategy-results-scroll-animations .strategy-results-content .strategy-results-scroll-animate {
  opacity: 0;
  will-change: opacity, transform;
}

.strategy-results-scroll-animations .strategy-results-content .strategy-results-scroll-animate.is-ready {
  transition-property: opacity, transform;
  transition-duration: var(--strategy-results-duration, 760ms);
  transition-timing-function: var(--strategy-results-easing, cubic-bezier(0.22, 1, 0.36, 1));
  transition-delay: var(--strategy-results-delay, 0ms);
}

.strategy-results-scroll-animations .strategy-results-content--calm-scroll .strategy-results-scroll-animate--soft-title {
  transform: translate3d(0, 20px, 0);
}

.strategy-results-scroll-animations .strategy-results-content--calm-scroll .strategy-results-scroll-animate--soft-rise {
  transform: translate3d(0, 16px, 0);
}

.strategy-results-scroll-animations .strategy-results-content--calm-scroll .strategy-results-scroll-animate--soft-heading {
  transform: translate3d(0, 10px, 0);
}

.strategy-results-scroll-animations .strategy-results-content--calm-scroll .strategy-results-scroll-animate--soft-image,
.strategy-results-scroll-animations .strategy-results-content--calm-scroll .strategy-results-scroll-animate--soft-table {
  transform: translate3d(0, 14px, 0);
}

.strategy-results-scroll-animations .strategy-results-content .strategy-results-scroll-animate.is-animated {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .strategy-results-scroll-animations .strategy-results-content .strategy-results-scroll-animate,
  .strategy-results-scroll-animations .strategy-results-content .strategy-results-scroll-animate.is-ready,
  .strategy-results-scroll-animations .strategy-results-content .strategy-results-scroll-animate.is-animated {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

.strategy-results-content {
  background: #f6fafc;
  padding: 92px 0 132px;
}

.strategy-results-content__inner {
  width: min(1500px, calc(100% - 220px));
  margin: 0 auto;
  color: var(--strategy-text);
  font-family: "Montserrat", Arial, sans-serif;
}

.strategy-results-heading,
.strategy-results-section__header {
  margin: 0 0 42px;
}

.strategy-results-heading h2,
.strategy-results-section__header h2 {
  max-width: 1180px;
  margin: 0;
  color: var(--strategy-gold);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.14;
  text-transform: uppercase;
}

.strategy-results-content .strategy-results-heading__gri {
  margin: 24px 0 0;
  color: var(--strategy-heading);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.52;
}

.strategy-results-content p,
.strategy-results-list li,
.strategy-wide-table th,
.strategy-wide-table td {
  color: var(--strategy-text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.52;
}

.strategy-results-content p {
  margin: 0 0 20px;
}

.strategy-results-content p:last-child {
  margin-bottom: 0;
}

.strategy-results-content h3 {
  margin: 0 0 22px;
  color: var(--strategy-heading);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
}

.strategy-results-lead,
.strategy-results-section__columns,
.strategy-performance__layout,
.strategy-management__bottom {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px 86px;
  align-items: start;
}

.strategy-results-lead {
  margin: 0 0 78px;
}

.strategy-results-lead__side {
  display: grid;
  gap: 28px;
  align-content: start;
}

.strategy-results-lead__aside {
  margin: 0;
}

.strategy-results-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #dce8ef;
}

.strategy-results-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.strategy-results-photo--lead {
  aspect-ratio: 1.42 / 1;
}

.strategy-results-section {
  margin-top: 86px;
}

.strategy-results-page .strategy-directions {
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
  padding-bottom: 14px;
}

.strategy-results-section--context,
.strategy-results-text-flow {
  margin-top: 42px;
}

.strategy-results-text-flow__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 86px;
  align-items: start;
  padding-top: 34px;
  border-top: 2px solid rgba(60, 85, 129, 0.18);
}

.strategy-results-text-flow__column {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.strategy-results-text-flow__column + .strategy-results-text-flow__column {
  padding-left: 0;
}

.strategy-results-text-flow__columns p {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.52;
}

.strategy-results-text-flow__column p {
  margin-bottom: 0;
}

.strategy-sustainability-status__intro {
  column-count: 2;
  column-gap: 86px;
  margin-bottom: 44px;
}

.strategy-sustainability-status__intro p {
  break-inside: avoid-column;
  margin: 0 0 20px;
}

.strategy-mission-vision {
  display: grid;
  grid-template-columns: minmax(360px, 43%) minmax(0, 57%);
  gap: 0;
  width: 100%;
  margin: 86px 0 0;
  overflow: hidden;
  height: 800px;
  border-radius: 52px 0 0 0;
  background: var(--strategy-cyan);
}

.strategy-directions__intro + .strategy-mission-vision,
.strategy-results-text-flow + .strategy-mission-vision {
  margin-top: 42px;
}

.strategy-mission-vision__panel {
  display: grid;
  align-content: center;
  gap: 72px;
  padding: 70px 72px;
  color: #fff;
}

.strategy-mission-vision__item {
  min-width: 0;
  color: #fff;
}

.strategy-mission-vision h3,
.strategy-mission-vision p {
  color: #fff;
}

.strategy-mission-vision__title {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 22px;
}

.strategy-mission-vision h3 {
  margin: 0;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.strategy-mission-vision p {
  max-width: 430px;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.32;
}

.strategy-mission-vision__icon {
  flex: 0 0 auto;
  width: 76px;
  height: 58px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.strategy-mission-vision__icon--eye {
  background-image: url("assets/strategy-vectors/page_19_ico_vision.svg");
}

.strategy-mission-vision__icon--flag {
  background-image: url("assets/strategy-vectors/page_19_ico_mission.svg");
}

.strategy-mission-vision__image {
  min-width: 0;
  min-height: 0;
  height: 100%;
  margin: 0;
}

.strategy-mission-vision__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.strategy-directions__intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-bottom: 42px;
}

.strategy-directions__intro p {
  margin-bottom: 0;
  font-size: 17px;
}

.strategy-directions__map {
  display: grid;
  min-width: 1120px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.52fr);
  gap: 0 18px;
  align-items: start;
}

.strategy-results-page .strategy-directions__map {
  width: max(100%, 1120px);
  max-width: none;
  min-width: 1120px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.52fr);
}

.strategy-results-page .strategy-directions__map > * {
  order: 0;
}

.strategy-results-page .strategy-directions__group--value {
  grid-column: 1 / span 3;
}

.strategy-results-page .strategy-directions__group--transition {
  grid-column: auto;
}

.strategy-results-page .strategy-directions__goals-label {
  grid-column: 1 / -1;
}

.strategy-results-page .strategy-directions__value-goals {
  grid-column: 1 / span 3;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  min-height: 184px;
  padding: 0 0 66px;
  background: none;
}

.strategy-results-page .strategy-direction-goal,
.strategy-results-page .strategy-direction-goal--transition {
  min-height: 118px;
  padding: 18px 22px 16px;
}

.strategy-results-page .strategy-direction-goal {
  border-color: var(--strategy-gold);
  background: var(--strategy-gold-soft);
}

.strategy-results-page .strategy-direction-goal--transition {
  grid-column: auto;
  border-color: var(--strategy-cyan);
  background: var(--strategy-cyan-soft);
}

.strategy-results-page .strategy-direction-goal::after,
.strategy-results-page .strategy-direction-connector {
  display: block;
}

.strategy-results-page .strategy-directions__value-goals .strategy-direction-goal::after {
  display: none;
}

.strategy-results-page .strategy-directions__tasks-label--value {
  grid-column: 1 / span 3;
}

.strategy-results-page .strategy-direction-tasks {
  min-height: 610px;
  margin-top: 0;
}

.strategy-results-page .strategy-directions__all {
  grid-column: 1 / -1;
}

.strategy-results-page .strategy-directions__all ul {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.strategy-directions__group {
  min-height: 44px;
  display: grid;
  place-items: center;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  color: var(--strategy-gold);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.strategy-directions__group--value {
  grid-column: 1 / span 3;
}

.strategy-directions__group--transition {
  color: var(--strategy-cyan);
}

.strategy-directions__goals-label {
  grid-column: 1 / -1;
  margin: 22px 0 16px;
  color: var(--strategy-cyan);
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.strategy-directions__value-goals {
  position: relative;
  grid-column: 1 / span 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  --value-connector-edge: calc((100% - 36px) / 6);
  min-height: 184px;
  padding: 0 0 66px;
}

.strategy-direction-goal {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 118px;
  padding: 18px 22px 16px;
  border: 1.5px solid var(--strategy-gold);
  border-radius: 8px;
  background: var(--strategy-gold-soft);
}

.strategy-direction-goal--transition {
  min-height: 118px;
  border-color: var(--strategy-cyan);
  background: var(--strategy-cyan-soft);
}

.strategy-direction-goal::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: -6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--strategy-gold);
  transform: translateX(-50%);
}

.strategy-direction-goal--transition::after {
  background: var(--strategy-cyan);
}

.strategy-directions__value-goals .strategy-direction-goal::after {
  display: none;
}

.strategy-direction-connector {
  z-index: 3;
  pointer-events: none;
}

.strategy-direction-connector--value {
  position: absolute;
  left: calc(var(--value-connector-edge) - 7px);
  right: calc(var(--value-connector-edge) - 7px);
  top: 113px;
  display: block;
  height: 62px;
  background: url("assets/strategy-vectors/page_19_line_scheme.svg") center / 100% 100% no-repeat;
}

.strategy-direction-connector--value::before,
.strategy-direction-connector--value::after {
  content: none;
}

.strategy-direction-connector--transition {
  position: absolute;
  left: 50%;
  top: 100%;
  width: 0;
  height: 39px;
  border-left: 2px solid var(--strategy-cyan);
  transform: translateX(-50%);
}

.strategy-direction-connector--transition::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 39px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid var(--strategy-cyan);
  transform: translateX(-50%);
}

.strategy-directions__tasks-label {
  align-self: end;
  margin: -2px 0 12px;
  color: var(--strategy-gold);
  font-size: 21px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.strategy-directions__tasks-label--value {
  grid-column: 1 / span 3;
}

.strategy-directions__tasks-label--transition {
  color: var(--strategy-cyan);
}

.strategy-direction-goal h3 {
  min-height: 0;
  margin: 0;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.16;
  text-align: center;
}

.strategy-direction-tasks {
  min-height: 610px;
  margin-top: 0;
  padding: 38px 26px 30px;
  border: 1.5px solid var(--strategy-gold);
  border-radius: 8px;
  background: var(--strategy-gold-soft);
}

.strategy-direction-tasks--transition {
  color: var(--strategy-heading);
  border-color: var(--strategy-cyan);
  background: var(--strategy-cyan-soft);
}

.strategy-directions__all h4 {
  margin: 0 0 22px;
  color: var(--strategy-heading);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.strategy-results-content .strategy-direction-tasks__lead,
.strategy-results-content .strategy-direction-tasks__sublead {
  margin: 0 0 12px;
  color: var(--strategy-heading);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
}

.strategy-results-content .strategy-direction-tasks__sublead {
  margin-top: 18px;
}

.strategy-direction-tasks ul,
.strategy-directions__all ul,
.strategy-results-list {
  display: grid;
  gap: 12px;
  align-content: start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.strategy-direction-tasks li,
.strategy-results-list li {
  position: relative;
  padding-left: 32px;
}

.strategy-direction-tasks li {
  color: var(--strategy-heading);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.32;
}

.strategy-direction-tasks strong {
  font-weight: 800;
}

.strategy-direction-tasks li::before,
.strategy-results-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid var(--strategy-gold);
}

.strategy-direction-tasks--transition li::before {
  border-left-color: var(--strategy-heading);
}

.strategy-direction-tasks li::before {
  left: 4px;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 50%;
  background: var(--strategy-heading);
}

.strategy-results-list li::before {
  border-left-color: var(--strategy-gold);
}

.strategy-directions__all {
  grid-column: 1 / -1;
  margin-top: 36px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.strategy-directions__all h4 {
  margin-bottom: 42px;
  color: var(--strategy-cyan);
  text-align: center;
}

.strategy-directions__all ul {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.strategy-directions__all li {
  position: relative;
  display: grid;
  justify-items: center;
  align-items: center;
  min-height: 96px;
  padding: 42px 16px 18px;
  border: 1.5px solid var(--strategy-cyan);
  border-radius: 8px;
  color: var(--strategy-heading);
  background: #f9fcfe;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.24;
  text-align: center;
}

.strategy-directions__all li::before {
  content: "";
  position: absolute;
  top: -33px;
  left: 50%;
  width: 66px;
  height: 66px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateX(-50%);
}

.strategy-directions__all-item--opex::before {
  background-image: url("assets/strategy-vectors/page_0019_icon_0009.svg");
}

.strategy-directions__all-item--assets::before {
  background-image: url("assets/strategy-vectors/page_0019_icon_0010.svg");
}

.strategy-directions__all-item--procurement::before {
  background-image: url("assets/strategy-vectors/page_0019_icon_0011.svg");
}

.strategy-directions__all-item--digital::before {
  background-image: url("assets/strategy-vectors/page_0019_icon_0012.svg");
}

.strategy-directions__all-item--project::before {
  background-image: url("assets/strategy-vectors/page_0019_icon_0013.svg");
}

.strategy-goals__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.strategy-goal-card,
.strategy-docs-card {
  min-width: 0;
  padding: 34px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(2, 45, 92, 0.08);
}

.strategy-goal-card {
  border-top: 6px solid var(--strategy-gold);
  overflow: hidden;
  padding-top: 0;
}

.strategy-goal-card:nth-child(4n) {
  border-top-color: var(--strategy-cyan);
}

.strategy-goal-card__image {
  margin: 0 -34px 30px;
  aspect-ratio: 1.8 / 1;
  overflow: hidden;
  background: #dbe7ef;
}

.strategy-goal-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.strategy-goal-card .strategy-goal-card__title {
  margin: 0 0 14px;
  color: var(--strategy-heading);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: none;
}

.strategy-goal-card .strategy-goal-card__subtitle {
  margin: 0 0 24px;
  color: var(--strategy-cyan);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.18;
}

.strategy-inline-measure {
  white-space: nowrap;
}

.strategy-performance__layout {
  margin-bottom: 0;
}

.strategy-performance__flow {
  display: grid;
  gap: 44px;
}

.strategy-performance__flow--pdf {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: start;
}

.strategy-performance__column {
  display: grid;
  gap: 20px;
  min-width: 0;
  align-content: start;
}

.strategy-performance__group {
  display: grid;
  gap: 20px;
}

.strategy-performance__group > p {
  max-width: 1050px;
  margin: 0;
}

.strategy-performance__group > p.strategy-results-fullwidth-paragraph {
  grid-column: 1 / -1;
  max-width: none;
  width: 100%;
  justify-self: stretch;
}

.strategy-performance__list {
  display: block;
  columns: 2;
  column-gap: 86px;
}

.strategy-performance__list-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 86px;
  align-items: start;
}

.strategy-performance__list--stacked {
  display: grid;
  columns: auto;
  gap: 16px;
  column-gap: 0;
}

.strategy-performance__list li {
  break-inside: avoid-column;
  padding-left: 38px;
  margin: 0 0 16px;
}

.strategy-performance__list--stacked li {
  margin-bottom: 0;
}

.strategy-performance__list li:last-child {
  margin-bottom: 0;
}

.strategy-performance__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 18px;
  height: 18px;
  border: 3px solid var(--strategy-gold);
  border-radius: 50%;
  background: #f6fafc;
  box-shadow: inset 0 0 0 3px #f6fafc, inset 0 0 0 7px var(--strategy-gold);
  box-sizing: border-box;
}

.strategy-performance__list li::after {
  content: none;
  display: none;
}

.strategy-performance__image {
  width: min(100%, 460px);
  margin: 34px 0 0;
  justify-self: end;
}

.strategy-performance__image img {
  display: block;
  width: 100%;
  height: auto;
}

.strategy-performance > .strategy-results-section__header {
  margin-bottom: 28px;
}

.strategy-results-content .strategy-performance__lead {
  max-width: 100%;
  margin: 0;
  color: var(--strategy-text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.52;
  text-align: left;
}

.strategy-performance__evaluation {
  margin-top: 64px;
}

.strategy-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.strategy-table-wrap--kpi {
  padding-top: 22px;
  background: transparent;
}

.strategy-table-wrap--kpi .strategy-wide-table {
  border-bottom: 3px solid var(--strategy-gold);
}

.strategy-table-wrap--kpi .strategy-wide-table th + th,
.strategy-table-wrap--kpi .strategy-wide-table td + td,
.strategy-table-wrap--status .strategy-wide-table th + th,
.strategy-table-wrap--status .strategy-wide-table tbody tr:not(.strategy-wide-table__section-row) > td + td {
  border-left: 1px solid #9aacbf;
}

.strategy-table-wrap--kpi .strategy-table-title,
.strategy-table-wrap--kpi .strategy-wide-table td {
  background: transparent;
}

.strategy-table-wrap--kpi .strategy-wide-table td:first-child {
  font-weight: 500;
}

.strategy-table-wrap--kpi .strategy-wide-table__roadmap p {
  margin: 0;
}

.strategy-table-wrap--kpi .strategy-wide-table__roadmap p + p {
  margin-top: 14px;
}

.strategy-table-wrap--kpi .strategy-wide-table__cell-note {
  font-style: italic;
}

.strategy-table-wrap--status {
  background: transparent;
}

.strategy-table-wrap--status .strategy-wide-table {
  border-bottom: 3px solid var(--strategy-gold);
}

.strategy-table-wrap--status .strategy-table-title,
.strategy-table-wrap--status .strategy-wide-table td {
  background: transparent;
}

.strategy-table-wrap--status .strategy-wide-table tbody tr:not(.strategy-wide-table__section-row) > td {
  font-weight: 500;
}

.strategy-table-wrap--status .strategy-wide-table td p {
  margin: 0;
}

.strategy-table-wrap--status .strategy-wide-table td p + p {
  margin-top: 18px;
}

.strategy-table-wrap--status .strategy-wide-table tbody tr:not(.strategy-wide-table__section-row) > td[rowspan] {
  border-right: 1px solid #9aacbf;
  font-weight: 800;
  vertical-align: middle;
}

.strategy-results-content .strategy-table-title {
  margin: 0;
  padding: 0 28px 42px;
  color: var(--strategy-heading);
  background: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.strategy-results-content .strategy-table-wrap--kpi .strategy-table-title {
  padding: 0 0 42px;
  background: transparent;
  font-weight: 800;
}

.strategy-results-content .strategy-table-wrap--status .strategy-table-title {
  max-width: 960px;
  padding: 0 0 34px;
  color: var(--strategy-heading);
  background: transparent;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.22;
  text-align: left;
}

.strategy-wide-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.strategy-wide-table th,
.strategy-wide-table td {
  padding: 18px 28px;
  border-top: 1px solid #b6c5d5;
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}

.strategy-wide-table th {
  color: #fff;
  background: var(--strategy-blue);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
}

.strategy-wide-table th:first-child {
  background: var(--strategy-gold);
}

.strategy-wide-table td {
  background: #fff;
  font-weight: 500;
}

.strategy-wide-table td:first-child {
  color: var(--strategy-heading);
  font-weight: 800;
}

.strategy-wide-table--status th:nth-child(1) {
  width: 24%;
}

.strategy-wide-table--status th:nth-child(2) {
  width: 36%;
}

.strategy-wide-table__section-row td {
  padding: 16px 24px;
  color: #fff;
  background: var(--strategy-blue);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.strategy-table-wrap--status .strategy-wide-table__section-row td {
  color: var(--strategy-heading);
  text-align: center;
}

.strategy-table-wrap--status .strategy-wide-table__section-row--environmental td {
  background: #cfe6c9;
}

.strategy-table-wrap--status .strategy-wide-table__section-row--social td {
  background: #c7e1e1;
}

.strategy-table-wrap--status .strategy-wide-table__section-row--governance td {
  background: #dfc6df;
}

.strategy-table-wrap--status .strategy-wide-table--status tbody tr:nth-child(n + 2):nth-child(-n + 15) > td {
  border-color: #b9d8b3;
}

.strategy-table-wrap--status .strategy-wide-table--status tbody tr:nth-child(n + 17):nth-child(-n + 26) > td {
  border-color: #afd6d8;
}

.strategy-table-wrap--status .strategy-wide-table--status tbody tr:nth-child(n + 28):nth-child(-n + 34) > td {
  border-color: #d6b5d4;
}

.strategy-table-note {
  margin: 0;
  padding: 34px 28px 28px;
  color: var(--strategy-text);
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.38;
}

.strategy-docs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 48px;
}

.strategy-docs-card {
  box-shadow: none;
  border: 1px solid #d7e2ea;
}

.strategy-docs-card h3 {
  color: var(--strategy-gold);
}

.strategy-docs-card .strategy-results-list li {
  font-size: 16px;
  line-height: 1.42;
}

.strategy-management__bottom {
  margin-top: 54px;
}

.strategy-management-content {
  --strategy-management-green: #cfe6c9;
  --strategy-management-teal: #c7e1e1;
  --strategy-management-purple: #dfc6df;
}

.strategy-management-heading {
  margin-bottom: 56px;
}

.strategy-management-intro,
.strategy-management-two-column,
.strategy-management-evaluation__layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px 86px;
  align-items: start;
}

.strategy-management-intro {
  margin-bottom: 86px;
}

.strategy-management-intro__text {
  min-width: 0;
}

.strategy-management-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #dce8ef;
}

.strategy-management-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.strategy-management-photo--intro {
  aspect-ratio: 1.18 / 1;
}

.strategy-management-photo--evaluation {
  aspect-ratio: 1.24 / 1;
}

.strategy-management-block-heading {
  margin: 0 0 30px;
}

.strategy-management-block-heading h3 {
  max-width: 980px;
  margin: 0;
  color: var(--strategy-heading);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
}

.strategy-management-block-heading .strategy-results-heading__gri {
  margin-top: 18px;
}

.strategy-management-system > p,
.strategy-management-documents > p {
  max-width: 980px;
}

.strategy-management-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.strategy-management-list--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 56px;
  margin-top: 28px;
}

.strategy-management-list-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 56px;
  margin-top: 28px;
}

.strategy-management-list li {
  position: relative;
  display: block;
  min-width: 0;
  padding-left: 38px;
  color: var(--strategy-text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.52;
}

.strategy-management-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 18px;
  height: 18px;
  border: 3px solid var(--strategy-gold);
  border-radius: 50%;
  background: #f6fafc;
  box-shadow: inset 0 0 0 3px #f6fafc, inset 0 0 0 7px var(--strategy-gold);
  box-sizing: border-box;
}

.strategy-management-list li::after {
  content: none;
}

.strategy-management-list + p {
  margin-top: 24px;
}

.strategy-management-list strong,
.strategy-management-content strong {
  color: var(--strategy-heading);
  font-weight: 800;
}

.strategy-management-documents__lead {
  margin-top: 26px;
  color: var(--strategy-heading);
  font-weight: 800;
}

.strategy-management-documents__lead--strong {
  font-weight: 800;
}

.strategy-management-docs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
  margin-top: 34px;
}

.strategy-management-docs-card {
  min-width: 0;
  margin: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.strategy-management-docs-card h4 {
  margin: 0 0 14px;
  padding: 0;
  color: var(--strategy-heading);
  background: transparent;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.32;
  text-align: left;
  text-transform: uppercase;
}

.strategy-management-docs-card--environmental h4 {
  background: transparent;
}

.strategy-management-docs-card--social h4 {
  background: transparent;
}

.strategy-management-docs-card--governance h4 {
  background: transparent;
}

.strategy-management-docs-list {
  display: block;
  column-count: 2;
  column-gap: 64px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.strategy-management-docs-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
}

.strategy-management-docs-columns .strategy-management-docs-list {
  column-count: 1;
  column-gap: 0;
}

.strategy-management-docs-list li {
  position: relative;
  display: block;
  break-inside: avoid-column;
  margin: 0 0 12px;
  padding-left: 38px;
  color: var(--strategy-text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.52;
}

.strategy-management-docs-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 18px;
  height: 18px;
  border: 3px solid var(--strategy-gold);
  border-radius: 50%;
  background: #f6fafc;
  box-shadow: inset 0 0 0 3px #f6fafc, inset 0 0 0 7px var(--strategy-gold);
  box-sizing: border-box;
}

.strategy-management-docs-list li::after {
  content: none;
}

.strategy-management-two-column--balanced {
  align-items: start;
}

.strategy-management-initiatives__lead .strategy-management-list {
  margin-top: 24px;
}

.strategy-management-initiatives + .strategy-management-evaluation {
  margin-top: 54px;
}

.strategy-management-evaluation__layout {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
}

.strategy-material-heading {
  margin-bottom: 56px;
}

.strategy-material-process__grid,
.strategy-material-review__layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px 86px;
  align-items: start;
}

.strategy-material-overview {
  width: 100%;
  max-width: none;
  margin-bottom: 86px;
}

.strategy-material-overview__intro,
.strategy-material-overview__intro p {
  width: 100%;
  max-width: none;
}

.strategy-material-process {
  margin-bottom: 86px;
}

.strategy-material-process__grid {
  gap: 38px 86px;
}

.strategy-material-step {
  min-width: 0;
  padding-top: 24px;
  border-top: 0;
}

.strategy-material-step h4 {
  margin: 0 0 18px;
  color: var(--strategy-heading);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.strategy-material-step .strategy-management-list {
  margin: 20px 0;
}

.strategy-material-review {
  margin-bottom: 90px;
}

.strategy-material-review__layout {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.94fr);
}

.strategy-material-review__column {
  display: grid;
  min-width: 0;
  align-content: start;
}

.strategy-material-review__column--left {
  gap: 56px;
}

.strategy-material-review__column--right {
  gap: 28px;
}

.strategy-material-review__photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #dce8ef;
  box-shadow: 0 18px 38px rgba(0, 53, 95, 0.08);
}

.strategy-material-review__photo img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 987 / 688;
  object-fit: cover;
}

.strategy-material-topics {
  margin-top: 0;
}

.strategy-material-topics__lead {
  width: 100%;
  max-width: none;
  margin-bottom: 38px;
}

.strategy-material-table-wrap {
  width: 100%;
  margin-top: 34px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
}

.strategy-results-content .strategy-material-table-title {
  margin: 0 0 18px;
  padding: 0;
  color: var(--strategy-heading);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.32;
  background: transparent;
  text-align: left;
  text-transform: uppercase;
}

.strategy-material-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  border-bottom: 3px solid var(--strategy-gold);
  color: var(--strategy-text);
  font-family: "Montserrat", Arial, sans-serif;
}

.strategy-material-table__num {
  width: 64px;
}

.strategy-material-table__topic {
  width: 360px;
}

.strategy-material-table__sdg {
  width: calc((100% - 424px) / 9);
}

.strategy-material-table th,
.strategy-material-table td {
  color: var(--strategy-text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
  vertical-align: middle;
  border-bottom: 1px solid #66789f;
}

.strategy-material-table th {
  padding: 10px 12px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  text-align: left;
}

.strategy-material-table th:first-child {
  background: var(--strategy-gold);
  text-align: center;
}

.strategy-material-table th:nth-child(2) {
  background: var(--strategy-blue);
}

.strategy-material-table th:nth-child(n + 3) {
  padding: 0;
  background: transparent;
  text-align: center;
}

.strategy-material-table th img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  object-fit: cover;
}

.strategy-material-table td {
  min-height: 54px;
  padding: 18px 16px;
  background: transparent;
}

.strategy-material-table td:first-child {
  padding: 18px 10px;
  background: #dbe6ec;
  color: var(--strategy-heading);
  font-weight: 800;
  text-align: center;
}

.strategy-material-table td:nth-child(2) {
  color: var(--strategy-heading);
}

.strategy-material-table strong {
  color: var(--strategy-heading);
  font-weight: 800;
}

.strategy-material-table td:nth-child(n + 3) {
  padding: 14px 8px;
  text-align: center;
}

.strategy-material-table tbody tr:last-child td {
  border-bottom: 0;
}

.strategy-material-check {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  width: 26px;
  height: 26px;
  color: var(--strategy-blue);
  border: 3px solid currentColor;
  border-radius: 50%;
  box-sizing: border-box;
}

.strategy-material-check::after {
  content: "";
  width: 10px;
  height: 6px;
  margin-top: -2px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-45deg);
}

.strategy-material-table td:nth-child(3) .strategy-material-check {
  color: #4c9f38;
}

.strategy-material-table td:nth-child(4) .strategy-material-check {
  color: #ff3a21;
}

.strategy-material-table td:nth-child(5) .strategy-material-check {
  color: #fcc30b;
}

.strategy-material-table td:nth-child(6) .strategy-material-check {
  color: #a21942;
}

.strategy-material-table td:nth-child(7) .strategy-material-check {
  color: #fd6925;
}

.strategy-material-table td:nth-child(8) .strategy-material-check {
  color: #fd9d24;
}

.strategy-material-table td:nth-child(9) .strategy-material-check {
  color: #bf8b2e;
}

.strategy-material-table td:nth-child(10) .strategy-material-check {
  color: #3f7e44;
}

.strategy-material-table td:nth-child(11) .strategy-material-check {
  color: #56c02b;
}

.strategy-sdg-content {
  padding-top: 92px;
}

.strategy-sdg-header {
  margin: 0 0 54px;
}

.strategy-sdg-heading {
  max-width: 1280px;
  margin: 0;
  color: var(--strategy-gold);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.14;
  text-transform: uppercase;
}

.strategy-sdg-global__intro {
  width: 100%;
  max-width: none;
}

.strategy-sdg-global h3,
.strategy-sdg-integration h3,
.strategy-sdg-priority__heading {
  max-width: 980px;
  margin: 0 0 22px;
  color: var(--strategy-heading);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
}

.strategy-sdg-certificate {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(59, 85, 130, 0.28);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(0, 53, 95, 0.08);
}

.strategy-sdg-certificate img {
  display: block;
  width: 100%;
  height: auto;
}

.strategy-sdg-principles-wrap {
  margin-top: 48px;
}

.strategy-sdg-principles {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  border-bottom: 3px solid var(--strategy-gold);
  color: var(--strategy-text);
  font-family: "Montserrat", Arial, sans-serif;
}

.strategy-sdg-principles th,
.strategy-sdg-principles td {
  padding: 20px 24px;
  border-bottom: 1px solid #66789f;
  color: var(--strategy-text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
  vertical-align: middle;
}

.strategy-sdg-principles thead th {
  color: #ffffff;
  font-weight: 800;
  text-align: left;
}

.strategy-sdg-principles thead th:first-child {
  width: 340px;
  background: var(--strategy-gold);
}

.strategy-sdg-principles thead th:last-child {
  background: var(--strategy-blue);
}

.strategy-sdg-principles tbody th {
  border-right: 1px solid #b7c3d6;
  color: var(--strategy-heading);
  font-weight: 800;
  text-align: left;
}

.strategy-sdg-principles tbody td {
  border-left: 1px solid #b7c3d6;
}

.strategy-sdg-principles tbody tr:last-child th,
.strategy-sdg-principles tbody tr:last-child td {
  border-bottom: 0;
}

.strategy-sdg-principles strong {
  color: var(--strategy-heading);
  font-weight: 800;
}

.strategy-sdg-integration {
  margin-top: 64px;
}

.strategy-sdg-integration__text {
  width: 100%;
  max-width: none;
}

.strategy-sdg-integration__text p {
  width: 100%;
  max-width: none;
}

.strategy-sdg-proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 34px;
  align-items: start;
  margin-top: 38px;
}

.strategy-sdg-proof__actions {
  --strategy-sdg-action-width: 220px;
  display: grid;
  gap: 18px;
  align-content: start;
  justify-items: center;
}

.strategy-sdg-qr {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--strategy-sdg-action-width);
  height: var(--strategy-sdg-action-width);
  padding: 22px;
  border: 1px solid rgba(59, 85, 130, 0.24);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(0, 53, 95, 0.08);
}

.strategy-sdg-qr img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.strategy-sdg-site-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: var(--strategy-sdg-action-width);
  min-height: 56px;
  padding: 14px 18px;
  border: 2px solid var(--strategy-blue);
  border-radius: 999px;
  color: var(--strategy-blue);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  background: #ffffff;
}

.strategy-sdg-site-button:hover,
.strategy-sdg-site-button:focus-visible {
  color: #ffffff;
  background: var(--strategy-blue);
}

.strategy-sdg-priority {
  display: grid;
  gap: 32px;
  margin-top: 72px;
}

.strategy-sdg-priority__heading {
  margin-bottom: 0;
}

.strategy-sdg-card {
  --strategy-sdg-icon-size: 104px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.strategy-sdg-card__header {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  border-bottom: 0;
  background: transparent;
}

.strategy-sdg-card__header img {
  display: block;
  flex: 0 0 var(--strategy-sdg-icon-size);
  width: var(--strategy-sdg-icon-size);
  height: var(--strategy-sdg-icon-size);
  box-shadow: none;
  object-fit: cover;
}

.strategy-sdg-card__header h3 {
  display: flex;
  align-items: center;
  align-self: stretch;
  flex: 1 1 auto;
  min-height: var(--strategy-sdg-icon-size);
  margin: 0;
  padding: 0 30px;
  color: var(--sdg-color);
  background: color-mix(in srgb, var(--sdg-color) 18%, #ffffff);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
}

.strategy-sdg-card--goal-7 .strategy-sdg-card__header {
  background: #ffe7b6;
}

.strategy-sdg-card--goal-7 .strategy-sdg-card__header img {
  flex-basis: var(--strategy-sdg-icon-size);
  width: var(--strategy-sdg-icon-size);
  height: var(--strategy-sdg-icon-size);
}

.strategy-sdg-card--goal-7 .strategy-sdg-card__header h3 {
  min-height: var(--strategy-sdg-icon-size);
  padding: 0 42px;
  color: var(--sdg-color);
  background: #ffe7b6;
  font-size: 29px;
  font-weight: 900;
  line-height: 1.14;
}

.strategy-sdg-card--goal-7 .strategy-sdg-card__body {
  grid-template-columns: 340px minmax(0, 1fr);
  column-gap: 78px;
  padding-top: 42px;
  background: #f6fafc;
}

.strategy-sdg-card--goal-7 .strategy-sdg-card__body h4 {
  color: var(--strategy-heading);
}

.strategy-sdg-card--goal-9 .strategy-sdg-card__header {
  background: #fbd9c7;
}

.strategy-sdg-card--goal-9 .strategy-sdg-card__header img {
  flex-basis: var(--strategy-sdg-icon-size);
  width: var(--strategy-sdg-icon-size);
  height: var(--strategy-sdg-icon-size);
}

.strategy-sdg-card--goal-9 .strategy-sdg-card__header h3 {
  min-height: var(--strategy-sdg-icon-size);
  padding: 0 34px;
  color: #f26a2e;
  background: #fbd9c7;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.08;
}

.strategy-sdg-card--goal-9 .strategy-sdg-card__body {
  grid-template-columns: 340px minmax(0, 1fr);
  column-gap: 78px;
  padding-top: 28px;
  padding-bottom: 22px;
  border-bottom: 0;
  background: #f6fafc;
}

.strategy-sdg-card--goal-9 .strategy-sdg-card__body h4 {
  color: var(--strategy-heading);
}

.strategy-sdg-card__body {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  grid-template-areas:
    "targets initiatives"
    "targets results";
  align-items: start;
  column-gap: 78px;
  row-gap: 24px;
  padding: 30px 0 10px;
  background: #f6fafc;
}

.strategy-sdg-card[style*="#4c9f38"] .strategy-sdg-card__header h3,
.strategy-sdg-card[style*="#56c02b"] .strategy-sdg-card__header h3 {
  background: #dee8d6;
}

.strategy-sdg-card[style*="#ff3a21"] .strategy-sdg-card__header h3 {
  background: #f3d5cd;
}

.strategy-sdg-card[style*="#f9b029"] .strategy-sdg-card__header h3 {
  background: #ffeac1;
}

.strategy-sdg-card[style*="#a21942"] .strategy-sdg-card__header h3 {
  background: #e6cecc;
}

.strategy-sdg-card[style*="#fd6925"] .strategy-sdg-card__header h3 {
  background: #fde4d0;
}

.strategy-sdg-card[style*="#fd9d24"] .strategy-sdg-card__header h3,
.strategy-sdg-card[style*="#bf8b2e"] .strategy-sdg-card__header h3 {
  background: #f7e8d3;
}

.strategy-sdg-card[style*="#3f7e44"] .strategy-sdg-card__header h3 {
  background: #dbdfd1;
}

.strategy-sdg-card[style*="#19486a"] .strategy-sdg-card__header h3 {
  background: #cccbdb;
}

.strategy-sdg-card__body section {
  min-width: 0;
  padding: 0;
  border: 0;
}

.strategy-sdg-card__body section:nth-child(1) {
  grid-area: targets;
}

.strategy-sdg-card__body section:nth-child(2) {
  grid-area: initiatives;
}

.strategy-sdg-card__body section:nth-child(3) {
  grid-area: results;
}

.strategy-sdg-card__body h4 {
  margin: 0 0 14px;
  color: var(--strategy-heading);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.22;
  text-transform: uppercase;
}

.strategy-sdg-list,
.strategy-sdg-task-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.strategy-sdg-list li,
.strategy-sdg-task-list li {
  position: relative;
  padding-left: 28px;
  color: var(--strategy-text);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.strategy-sdg-task-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 8px;
  align-items: start;
  padding-left: 0;
}

.strategy-sdg-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 13px;
  height: 13px;
  border: 2px solid var(--sdg-color);
  border-radius: 50%;
  background: #f6fafc;
  box-shadow: inset 0 0 0 2px #f6fafc, inset 0 0 0 5px var(--sdg-color);
  box-sizing: border-box;
}

.strategy-sdg-list strong,
.strategy-sdg-task-list strong {
  color: var(--strategy-heading);
  font-weight: 800;
}

.strategy-climate-content {
  padding-top: 92px;
}

.strategy-climate-content__inner {
  --climate-env: #cfe6c9;
  --climate-social: #c7e1e1;
  --climate-governance: #dfc6df;
  --climate-line: #66789f;
  --climate-soft-line: rgba(102, 120, 159, 0.38);
}

.strategy-climate-heading {
  margin-bottom: 56px;
}

.strategy-climate-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  gap: 28px 64px;
  align-items: start;
}

.strategy-climate-content .strategy-climate-overview__title {
  grid-column: 1 / -1;
  margin: 0;
}

.strategy-climate-content .strategy-climate-overview__title:not(:first-child) {
  margin-top: 30px;
}

.strategy-climate-overview__main,
.strategy-climate-overview__governance,
.strategy-climate-overview__system {
  min-width: 0;
}

.strategy-climate-overview__system {
  padding-top: 4px;
}

.strategy-climate-photo-grid {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.strategy-climate-photo-grid--intro {
  grid-template-columns: minmax(0, 1fr);
}

.strategy-climate-content h3 {
  margin: 0 0 20px;
  color: var(--strategy-heading);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
}

.strategy-climate-content h4 {
  margin: 0 0 12px;
  color: var(--strategy-heading);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.strategy-climate-photo {
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: #d8e6ee;
  box-shadow: 0 18px 38px rgba(0, 53, 95, 0.08);
}

.strategy-climate-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.strategy-climate-photo--intro img {
  height: 540px;
  min-height: 0;
  object-position: center center;
}

.strategy-climate-photo--governance {
  margin-top: 28px;
}

.strategy-climate-photo--governance img {
  height: 300px;
  min-height: 0;
}

.strategy-climate-photo--process img {
  aspect-ratio: 1.55;
  min-height: 280px;
}

.strategy-climate-photo--response {
  grid-column: 1 / -1;
}

.strategy-climate-photo--response img {
  aspect-ratio: 2.5;
  min-height: 300px;
}

.strategy-climate-list,
.strategy-climate-table-list {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.strategy-climate-list li,
.strategy-climate-table-list li {
  position: relative;
  padding-left: 38px;
  color: var(--strategy-text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.52;
}

.strategy-climate-table-list li {
  padding-left: 34px;
  font-size: 16px;
  line-height: 1.45;
}

.strategy-climate-list li::before,
.strategy-climate-table-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 18px;
  height: 18px;
  border: 3px solid var(--strategy-gold);
  border-radius: 50%;
  background: #f6fafc;
  box-shadow: inset 0 0 0 3px #f6fafc, inset 0 0 0 7px var(--strategy-gold);
  box-sizing: border-box;
}

.strategy-climate-table-list li::before {
  top: 0.3em;
  width: 16px;
  height: 16px;
  box-shadow: inset 0 0 0 3px #f6fafc, inset 0 0 0 6px var(--strategy-gold);
}

.strategy-climate-list--compact {
  gap: 10px;
}

.strategy-climate-list strong,
.strategy-climate-table-list strong {
  color: var(--strategy-heading);
  font-weight: 800;
}

.strategy-climate-sublist {
  display: grid;
  gap: 7px;
  margin: 10px 0 0;
  padding-left: 20px;
  list-style: disc;
}

.strategy-climate-sublist li {
  padding-left: 0 !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.42;
}

.strategy-climate-sublist li::before {
  display: none !important;
}

.strategy-climate-lines {
  margin-top: 88px;
}

.strategy-climate-lines .strategy-results-section__header h2,
.strategy-climate-lines .strategy-results-section__header h3,
.strategy-climate-risks .strategy-results-section__header h2,
.strategy-climate-msci .strategy-results-section__header h2 {
  max-width: 1320px;
  color: var(--strategy-gold);
}

.strategy-climate-lines .strategy-results-section__header h3#strategy-climate-lines-title {
  color: #000;
}

.strategy-climate-table-wrap {
  margin: 0;
  overflow-x: auto;
  padding-bottom: 2px;
}

.strategy-climate-lines-table {
  min-width: 1120px;
  table-layout: fixed;
  border-bottom: 3px solid var(--strategy-gold);
}

.strategy-climate-lines-table th,
.strategy-climate-lines-table td {
  border-bottom: 1px solid var(--climate-line);
  border-left: 1px solid #b7c3d6;
  color: var(--strategy-text);
  vertical-align: top;
}

.strategy-climate-lines-table th:first-child,
.strategy-climate-lines-table td:first-child {
  border-left: 0;
}

.strategy-climate-lines-table th {
  color: #ffffff;
  font-weight: 800;
}

.strategy-climate-lines-table th:first-child {
  width: 23%;
  background: var(--strategy-gold);
}

.strategy-climate-lines-table th:nth-child(2) {
  width: 33%;
  background: var(--strategy-blue);
}

.strategy-climate-lines-table th:nth-child(3) {
  width: 44%;
  background: var(--strategy-blue);
}

.strategy-climate-lines-table td:first-child {
  color: var(--strategy-heading);
  font-weight: 800;
}

.strategy-climate-lines-table tbody tr:last-child td {
  border-bottom: 0;
}

.strategy-climate-lines__summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 8px 52px;
  margin-top: 34px;
}

.strategy-climate-process {
  margin-top: 88px;
}

.strategy-climate-process__block + .strategy-climate-process__block {
  margin-top: 72px;
}

.strategy-climate-process__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 44px 64px;
  align-items: start;
}

.strategy-climate-process__grid > div {
  min-width: 0;
}

.strategy-climate-process__grid .strategy-climate-list + p {
  margin-top: 24px;
}

.strategy-climate-overview__system .strategy-climate-list + p {
  margin-top: 24px;
}

.strategy-climate-process__media {
  display: grid;
  gap: 24px;
}

.strategy-climate-response {
  margin-top: 88px;
}

.strategy-climate-between-image.strategy-climate-between-image--response {
  margin: 0 0 64px;
}

.strategy-climate-response__lead {
  max-width: none;
  margin: 0 0 24px;
  break-after: avoid;
}

.strategy-climate-response__flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: start;
}

.strategy-climate-response__column {
  min-width: 0;
}

.strategy-climate-response__item {
  position: relative;
  padding-left: 34px;
  margin: 0 0 28px;
  break-inside: avoid;
}

.strategy-climate-response__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 18px;
  height: 18px;
  border: 3px solid var(--strategy-gold);
  border-radius: 50%;
  background: #f6fafc;
  box-shadow: inset 0 0 0 3px #f6fafc, inset 0 0 0 7px var(--strategy-gold);
  box-sizing: border-box;
}

.strategy-climate-response__item h4 {
  margin: 0 0 6px;
  color: var(--strategy-heading);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.28;
}

.strategy-climate-response__item p {
  margin: 0;
}

.strategy-climate-response__column > p {
  margin: 0 0 24px;
}

.strategy-climate-response__column > p:last-child {
  margin-bottom: 0;
}

.strategy-climate-response__column > .strategy-climate-list {
  margin: 8px 0 24px;
}

.strategy-climate-risks {
  margin-top: 92px;
}

.strategy-climate-risks__lead {
  display: block;
  max-width: 980px;
  margin-bottom: 38px;
}

.strategy-climate-risks > .strategy-results-section__header {
  margin-bottom: 18px;
}

.strategy-climate-risk-grid {
  display: grid;
  gap: 42px;
  margin-top: 34px;
}

.strategy-climate-risk-table-block {
  min-width: 0;
  --climate-risk-arrow: #00aeef;
}

.strategy-climate-risk-table-title {
  margin: 0 0 22px;
  color: var(--strategy-heading);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.strategy-table-wrap--climate-risk {
  overflow-x: auto;
  background: transparent;
}

.strategy-climate-risk-table {
  min-width: 1120px;
  border-bottom: 3px solid var(--strategy-gold);
  table-layout: fixed;
}

.strategy-climate-risk-table th + th,
.strategy-climate-risk-table tbody tr:not(.strategy-wide-table__section-row) > td + td {
  border-left: 1px solid #9aacbf;
}

.strategy-climate-risk-table th:first-child {
  width: 41%;
  background: var(--strategy-gold);
}

.strategy-climate-risk-table th:nth-child(2) {
  width: 59%;
  background: var(--strategy-blue);
}

.strategy-climate-risk-table td,
.strategy-climate-risk-table td:first-child {
  color: var(--strategy-text);
  background: transparent;
  font-weight: 500;
}

.strategy-climate-risk-table td {
  padding: 24px 28px;
  font-size: 18px;
  line-height: 1.42;
}

.strategy-climate-risk-table p {
  margin: 0 0 18px;
}

.strategy-climate-risk-table .strategy-climate-list + p,
.strategy-climate-risk-table .strategy-climate-table-list + p {
  margin-top: 24px;
}

.strategy-climate-risk-table p:last-child,
.strategy-climate-risk-table ul:last-child {
  margin-bottom: 0;
}

.strategy-climate-risk-table strong {
  color: var(--strategy-heading);
  font-weight: 800;
}

.strategy-climate-risk-table .strategy-wide-table__section-row td {
  padding: 16px 24px;
  color: var(--strategy-heading);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.strategy-climate-risk-table .strategy-wide-table__section-row--environmental td {
  background: var(--climate-env);
}

.strategy-climate-risk-table .strategy-wide-table__section-row--social td {
  background: var(--climate-social);
}

.strategy-climate-risk-table .strategy-wide-table__section-row--governance td {
  background: var(--climate-governance);
}

.strategy-climate-risk-table__description {
  position: relative;
}

.strategy-climate-risk-table__description--arrow {
  padding-bottom: 108px !important;
}

.strategy-climate-risk-arrow {
  position: absolute;
  left: 30px;
  bottom: 30px;
  width: 62px;
  height: 62px;
  background: var(--climate-risk-arrow);
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='16' cy='16' r='14.8' fill='none' stroke='black' stroke-width='2.4'/%3E%3Cpath d='M5.8 16h20.4M10.8 20.8 5.8 16l5-4.8M21.2 11.2l5 4.8-5 4.8' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='butt' stroke-linejoin='miter'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='16' cy='16' r='14.8' fill='none' stroke='black' stroke-width='2.4'/%3E%3Cpath d='M5.8 16h20.4M10.8 20.8 5.8 16l5-4.8M21.2 11.2l5 4.8-5 4.8' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='butt' stroke-linejoin='miter'/%3E%3C/svg%3E") center / contain no-repeat;
}

.strategy-climate-risk-arrow::before {
  content: none;
}

.strategy-climate-risk-arrow::after {
  content: none;
}

.strategy-climate-risk-arrow--diagonal {
  --climate-risk-arrow: #d1555e;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='16' cy='16' r='14.8' fill='none' stroke='black' stroke-width='2.4'/%3E%3Cpath d='M8.1 23.6 23.9 8.3M17 8.45l6.9-.15-.35 6.95' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='butt' stroke-linejoin='miter'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='16' cy='16' r='14.8' fill='none' stroke='black' stroke-width='2.4'/%3E%3Cpath d='M8.1 23.6 23.9 8.3M17 8.45l6.9-.15-.35 6.95' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='butt' stroke-linejoin='miter'/%3E%3C/svg%3E") center / contain no-repeat;
}

.strategy-climate-between-image {
  overflow: hidden;
  margin: 12px 0 0;
  border-radius: 8px;
  background: #d8e6ee;
  box-shadow: 0 18px 38px rgba(0, 53, 95, 0.08);
}

.strategy-climate-between-image img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.strategy-climate-risk-image-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 0 0 6px;
}

.strategy-climate-risk-image-row .strategy-climate-between-image {
  margin: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.strategy-climate-risk-image-row .strategy-climate-between-image img {
  height: 300px;
}

.strategy-climate-continuous {
  margin-top: 76px;
  padding-top: 32px;
}

.strategy-climate-continuous h3:not(:first-child) {
  margin-top: 42px;
}

.strategy-climate-continuous p {
  max-width: 1180px;
  font-size: 17px;
  line-height: 1.48;
}

.strategy-climate-continuous .strategy-climate-list {
  max-width: 980px;
  margin: 12px 0 24px;
}

.strategy-climate-risk-card {
  overflow: hidden;
  border: 1px solid rgba(59, 85, 130, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 16px 34px rgba(0, 53, 95, 0.06);
}

.strategy-climate-risk-card > header {
  display: grid;
  gap: 8px;
  padding: 22px 28px 24px;
  color: var(--strategy-heading);
}

.strategy-climate-risk-card > header span {
  color: var(--strategy-heading);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.strategy-climate-risk-card > header h3 {
  margin: 0;
  color: var(--strategy-heading);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
}

.strategy-climate-risk-card--environmental > header {
  background: var(--climate-env);
}

.strategy-climate-risk-card--social > header {
  background: var(--climate-social);
}

.strategy-climate-risk-card--governance > header {
  background: var(--climate-governance);
}

.strategy-climate-risk-card__image {
  overflow: hidden;
  margin: 0;
  border-top: 1px solid rgba(59, 85, 130, 0.16);
  border-bottom: 1px solid rgba(59, 85, 130, 0.16);
  background: #d8e6ee;
}

.strategy-climate-risk-card__image img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.strategy-climate-risk-card--wide .strategy-climate-risk-card__image img {
  height: 320px;
}

.strategy-climate-risk-card__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
}

.strategy-climate-risk-card__body > section {
  min-width: 0;
  padding: 30px 32px 34px;
}

.strategy-climate-risk-card__body > section + section {
  border-left: 1px solid #b7c3d6;
}

.strategy-climate-risk-card__body h4 {
  margin-top: 24px;
  color: var(--strategy-blue);
  text-transform: uppercase;
}

.strategy-climate-risk-card__body h4:first-child {
  margin-top: 0;
}

.strategy-climate-risk-card__body p,
.strategy-climate-msci p,
.strategy-climate-reference p {
  font-size: 17px;
  line-height: 1.48;
}

.strategy-climate-msci {
  margin-top: 96px;
}

.strategy-climate-msci__hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.72fr);
  gap: 48px;
  align-items: start;
}

.strategy-climate-msci__image {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(0, 53, 95, 0.08);
}

.strategy-climate-msci__image img {
  display: block;
  width: 100%;
  height: auto;
}

.strategy-climate-msci__grid,
.strategy-climate-reference {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  margin-top: 54px;
}

.strategy-climate-msci__grid section,
.strategy-climate-reference section {
  min-width: 0;
  padding-top: 24px;
  border-top: 2px solid var(--climate-soft-line);
}

html:is([lang="en"], [lang="ru"], [lang="kk"]) .strategy-climate-reference__heading {
  min-height: 38px;
  font-size: 15px;
  line-height: 1.15;
}

html:is([lang="en"], [lang="ru"], [lang="kk"]) .strategy-climate-reference__heading span {
  display: block;
  white-space: nowrap;
}

html[lang="en"] .strategy-climate-msci__grid h3 {
  font-size: 16px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  html[lang="en"] .strategy-climate-msci__grid h3 {
    font-size: 30px;
    white-space: normal;
  }

  html:is([lang="en"], [lang="ru"], [lang="kk"]) .strategy-climate-reference__heading {
    min-height: 0;
    font-size: 30px;
  }

  html:is([lang="en"], [lang="ru"], [lang="kk"]) .strategy-climate-reference__heading span {
    white-space: normal;
  }
}

.strategy-climate-reference .strategy-climate-reference__info-card {
  align-self: start;
  min-height: 320px;
  padding: 44px 40px 50px;
  border-top: 0;
  border-radius: 0 34px 0 34px;
  background: #00aeef;
  color: #ffffff;
}

.strategy-climate-reference__info-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.78);
}

.strategy-climate-reference__info-head h3 {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.strategy-climate-reference__info-icon {
  flex: 0 0 auto;
  width: 66px;
  height: 58px;
  margin-bottom: -9px;
  color: #ffffff;
}

.strategy-climate-reference__info-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: butt;
  stroke-linejoin: miter;
}

.strategy-climate-reference .strategy-climate-reference__info-card p {
  margin: 24px 0 0;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.34;
}

.strategy-climate-msci__component-image {
  overflow: hidden;
  margin: 24px 0 0;
  border-radius: 0;
  background: transparent;
}

.strategy-climate-msci__component-image img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.strategy-climate-improvement {
  margin-top: 54px;
  padding-top: 28px;
  border-top: 3px solid var(--strategy-gold);
}

.strategy-climate-reference {
  margin-top: 58px;
}

.strategy-climate-reference__image {
  grid-column: 1 / -1;
  overflow: hidden;
  margin: 0 0 4px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(0, 53, 95, 0.08);
}

.strategy-climate-reference__image--footer {
  margin-top: 54px;
}

.strategy-climate-reference__image.strategy-climate-reference__image--footer img {
  height: 460px;
}

.strategy-climate-reference__image img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.strategy-climate-scroll-animations .strategy-climate-content .strategy-climate-scroll-animate {
  opacity: 0;
  will-change: opacity, transform;
}

.strategy-climate-scroll-animations .strategy-climate-content .strategy-climate-scroll-animate.is-ready {
  transition-property: opacity, transform;
  transition-duration: var(--strategy-climate-duration, 760ms);
  transition-timing-function: var(--strategy-climate-easing, cubic-bezier(0.22, 1, 0.36, 1));
  transition-delay: var(--strategy-climate-delay, 0ms);
}

.strategy-climate-scroll-animations .strategy-climate-content--calm-scroll .strategy-climate-scroll-animate--soft-title {
  transform: translate3d(0, 20px, 0);
}

.strategy-climate-scroll-animations .strategy-climate-content--calm-scroll .strategy-climate-scroll-animate--soft-rise {
  transform: translate3d(0, 16px, 0);
}

.strategy-climate-scroll-animations .strategy-climate-content--calm-scroll .strategy-climate-scroll-animate--soft-heading {
  transform: translate3d(0, 10px, 0);
}

.strategy-climate-scroll-animations .strategy-climate-content--calm-scroll .strategy-climate-scroll-animate--soft-image,
.strategy-climate-scroll-animations .strategy-climate-content--calm-scroll .strategy-climate-scroll-animate--soft-table {
  transform: translate3d(0, 14px, 0);
}

.strategy-climate-scroll-animations .strategy-climate-content .strategy-climate-scroll-animate.is-animated {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .strategy-climate-scroll-animations .strategy-climate-content .strategy-climate-scroll-animate,
  .strategy-climate-scroll-animations .strategy-climate-content .strategy-climate-scroll-animate.is-ready,
  .strategy-climate-scroll-animations .strategy-climate-content .strategy-climate-scroll-animate.is-animated {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

@media (max-width: 900px) {
  .strategy-sdg-global__intro {
    max-width: 100%;
  }

  .strategy-sdg-card__body {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "targets"
      "initiatives"
      "results";
  }

  .strategy-sdg-card--goal-7 .strategy-sdg-card__body {
    grid-template-columns: minmax(0, 1fr);
    column-gap: 0;
  }

  .strategy-sdg-card--goal-9 .strategy-sdg-card__body {
    grid-template-columns: minmax(0, 1fr);
    column-gap: 0;
  }

  .strategy-sdg-card__body section {
    padding: 0;
  }
}

@media (max-width: 900px) {
  .strategy-sdg-heading {
    font-size: 30px;
  }

  .strategy-sdg-global h3,
  .strategy-sdg-integration h3,
  .strategy-sdg-priority__heading {
    font-size: 26px;
  }

  .strategy-sdg-global__intro {
    max-width: 100%;
  }

  .strategy-sdg-proof {
    grid-template-columns: 1fr;
  }

  .strategy-sdg-proof__actions {
    --strategy-sdg-action-width: 180px;
    justify-self: center;
    width: min(240px, 100%);
    max-width: 240px;
    margin-inline: auto;
  }

  .strategy-sdg-qr,
  .strategy-sdg-site-button {
    margin-inline: auto;
  }

  .strategy-sdg-principles-wrap {
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .strategy-sdg-principles {
    min-width: 860px;
  }

  .strategy-sdg-card__header {
    align-items: center;
    padding: 0;
  }

  .strategy-sdg-card__header img {
    flex-basis: 72px;
    width: 72px;
    height: 72px;
  }

  .strategy-sdg-card--goal-7 .strategy-sdg-card__header img {
    flex-basis: 72px;
    width: 72px;
    height: 72px;
  }

  .strategy-sdg-card--goal-9 .strategy-sdg-card__header img {
    flex-basis: 72px;
    width: 72px;
    height: 72px;
  }

  .strategy-sdg-card__header h3 {
    min-height: 72px;
    min-width: 0;
    padding: 0 22px;
    font-size: 23px;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .strategy-sdg-card--goal-7 .strategy-sdg-card__header h3 {
    min-height: 72px;
    padding: 0 22px;
    font-size: 23px;
  }

  .strategy-sdg-card--goal-9 .strategy-sdg-card__header h3 {
    min-height: 72px;
    padding: 0 22px;
    font-size: 22px;
  }

  .strategy-sdg-card__body section {
    padding: 24px 22px 28px;
  }
}

@media (max-width: 560px) {
  .strategy-sdg-card__header {
    display: flex;
  }
}

@media (max-width: 1280px) {
  .strategy-climate-overview,
  .strategy-climate-process__grid,
  .strategy-climate-risks__lead,
  .strategy-climate-lines__summary,
  .strategy-climate-msci__hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .strategy-climate-response__flow {
    grid-template-columns: minmax(0, 1fr);
  }

  .strategy-climate-photo img {
    max-height: 520px;
  }

  .strategy-climate-photo--response {
    grid-column: auto;
  }

  .strategy-climate-msci__grid,
  .strategy-climate-reference {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .strategy-climate-content {
    padding-top: 64px;
  }

  .strategy-climate-risk-image-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .strategy-climate-content h3 {
    font-size: 26px;
  }

  .strategy-climate-lines .strategy-results-section__header h2,
  .strategy-climate-lines .strategy-results-section__header h3,
  .strategy-climate-risks .strategy-results-section__header h2,
  .strategy-climate-msci .strategy-results-section__header h2 {
    font-size: 30px;
  }

  .strategy-climate-risk-card__body {
    grid-template-columns: minmax(0, 1fr);
  }

  .strategy-climate-risk-card__body > section + section {
    border-top: 1px solid #b7c3d6;
    border-left: 0;
  }

  .strategy-climate-risk-card__image img {
    height: 220px;
  }

  .strategy-climate-between-image img {
    height: 280px;
  }

  .strategy-climate-risk-card > header h3 {
    font-size: 24px;
  }
}

@media (max-width: 560px) {
  .strategy-climate-list li,
  .strategy-climate-table-list li {
    font-size: 16px;
  }

  .strategy-climate-photo img {
    min-height: 240px;
  }

  .strategy-climate-photo--intro img,
  .strategy-climate-photo--governance img,
  .strategy-climate-photo--response img,
  .strategy-climate-risk-card__image img,
  .strategy-climate-between-image img,
  .strategy-climate-reference__image img,
  .strategy-climate-reference__image.strategy-climate-reference__image--footer img {
    min-height: 0;
    height: 210px;
  }

  .strategy-climate-risk-card__body > section,
  .strategy-climate-risk-card > header {
    padding-right: 22px;
    padding-left: 22px;
  }
}

@media (max-width: 1280px) {
  .strategy-results-content__inner {
    width: min(1500px, calc(100% - 80px));
  }

  .strategy-results-lead,
  .strategy-results-section__columns,
  .strategy-performance__flow--pdf,
  .strategy-performance__layout,
  .strategy-management__bottom,
  .strategy-management-intro,
  .strategy-management-list-columns,
  .strategy-management-two-column,
  .strategy-management-evaluation__layout,
  .strategy-material-overview,
  .strategy-material-process__grid,
  .strategy-material-review__layout {
    gap: 42px;
  }

  .strategy-results-text-flow__columns {
    gap: 52px;
  }

  .strategy-results-text-flow__column + .strategy-results-text-flow__column {
    padding-left: 0;
  }

  .strategy-sustainability-status__intro {
    column-gap: 52px;
  }

  .strategy-performance__list {
    column-gap: 52px;
  }

  .strategy-directions__intro,
  .strategy-directions__map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .strategy-directions__group--value,
  .strategy-directions__group--transition,
  .strategy-directions__all {
    grid-column: auto;
  }

  .strategy-directions__all {
    grid-column: 1 / -1;
  }

  .strategy-directions__all ul,
  .strategy-docs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .strategy-results-content {
    padding: 70px 0 96px;
  }

  .strategy-results-content__inner {
    width: calc(100% - 40px);
  }

  .strategy-results-heading h2,
  .strategy-results-section__header h2 {
    font-size: 30px;
  }

  .strategy-results-content h3 {
    font-size: 23px;
  }

  .strategy-results-lead,
  .strategy-results-section__columns,
  .strategy-performance__layout,
  .strategy-management__bottom,
  .strategy-management-intro,
  .strategy-management-docs-columns,
  .strategy-management-two-column,
  .strategy-management-evaluation__layout,
  .strategy-material-overview,
  .strategy-material-process__grid,
  .strategy-material-review__layout,
  .strategy-goals__grid,
  .strategy-docs-grid,
  .strategy-management-list--two {
    grid-template-columns: 1fr;
  }

  .strategy-material-table-wrap {
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .strategy-material-table {
    min-width: 1120px;
  }

  .strategy-management-docs-grid {
    gap: 32px;
  }

  .strategy-management-docs-list {
    column-count: 1;
  }

  .strategy-mission-vision {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .strategy-mission-vision__panel {
    padding: 48px 34px;
  }

  .strategy-mission-vision__image {
    aspect-ratio: 1.35 / 1;
  }

  .strategy-results-text-flow__columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .strategy-results-text-flow__column + .strategy-results-text-flow__column {
    margin-top: 28px;
    padding-top: 28px;
    padding-left: 0;
    border-top: 2px solid rgba(60, 85, 129, 0.18);
  }

  .strategy-sustainability-status__intro {
    column-count: 1;
  }

  .strategy-performance__list {
    columns: 1;
  }

  .strategy-performance__list-columns {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .strategy-performance__image {
    width: 100%;
    max-width: 460px;
    justify-self: start;
  }

  .strategy-directions__intro,
  .strategy-directions__map,
  .strategy-directions__all ul {
    grid-template-columns: 1fr;
  }

  .strategy-directions__group--value,
  .strategy-directions__group--transition,
  .strategy-directions__value-goals,
  .strategy-direction-goal--transition,
  .strategy-directions__all {
    grid-column: 1;
  }

  .strategy-directions__value-goals {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 0;
    padding: 0;
    background: none;
  }

  .strategy-direction-goal,
  .strategy-direction-goal--transition {
    min-height: 0;
    padding: 18px 20px;
    border: 1.5px solid var(--strategy-gold);
    border-radius: 8px;
    background: var(--strategy-gold-soft);
  }

  .strategy-direction-goal--transition {
    border-color: var(--strategy-cyan);
    background: var(--strategy-cyan-soft);
  }

  .strategy-direction-goal::after,
  .strategy-direction-connector {
    display: none;
  }

  .strategy-directions__tasks-label--value {
    order: 10;
  }

  .strategy-direction-tasks--resource {
    order: 11;
  }

  .strategy-direction-tasks--efficiency {
    order: 12;
  }

  .strategy-direction-tasks--portfolio {
    order: 13;
  }

  .strategy-directions__tasks-label--transition {
    order: 14;
  }

  .strategy-direction-tasks--transition {
    order: 15;
  }

  .strategy-direction-tasks {
    min-height: 0;
    margin-top: 16px;
  }

  .strategy-performance__list li {
    padding-left: 30px;
  }

  .strategy-performance__list li::before {
    top: 0.28em;
    width: 14px;
    height: 14px;
    border-width: 2px;
    box-shadow: inset 0 0 0 2px #f6fafc, inset 0 0 0 5px var(--strategy-gold);
  }

  .strategy-performance__list li::after {
    content: none;
    display: none;
  }

  .strategy-direction-goal h3 {
    min-height: 0;
  }

  .strategy-wide-table {
    min-width: 920px;
  }

  .strategy-management-photo--intro,
  .strategy-management-photo--evaluation {
    aspect-ratio: 1.35 / 1;
  }
}

@media (max-width: 560px) {
  .strategy-results-content__inner {
    width: calc(100% - 28px);
  }

  .strategy-results-content p,
  .strategy-results-list li,
  .strategy-wide-table th,
  .strategy-wide-table td {
    font-size: 16px;
  }

  .strategy-results-heading h2,
  .strategy-results-section__header h2 {
    font-size: 26px;
  }

  .strategy-mission-vision p {
    font-size: 18px;
  }

  .strategy-goal-card,
  .strategy-docs-card {
    padding: 26px 22px;
  }

  .strategy-goal-card__image {
    margin: 0 -22px 24px;
  }

  .strategy-table-title {
    padding: 22px;
    font-size: 17px;
  }
}

.page-switcher {
  --page-arrow-bg: var(--white);
  --page-arrow-border: var(--navy);
  --page-arrow-color: var(--navy);
  position: fixed;
  z-index: 45;
  top: min(66vh, calc(100vh - 160px));
  right: clamp(20px, 3.4vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateY(-50%);
}

.page-arrow {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 3px solid var(--page-arrow-border);
  border-radius: 50%;
  color: var(--page-arrow-color);
  background: var(--page-arrow-bg);
  box-shadow: 0 12px 28px rgba(2, 45, 92, 0.18);
  font-size: 41px;
  font-weight: 300;
  line-height: 1;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.page-switcher--on-dark {
  --page-arrow-bg: #0b4777;
  --page-arrow-border: var(--white);
  --page-arrow-color: var(--white);
}

.page-switcher--on-light {
  --page-arrow-bg: var(--white);
  --page-arrow-border: var(--navy);
  --page-arrow-color: var(--navy);
}

.page-arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--page-arrow-bg);
}

.page-arrow--disabled {
  pointer-events: none;
  opacity: 0.32;
}

.report-content {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  padding: clamp(54px, 7vw, 90px) 0 clamp(72px, 9vw, 120px);
}

.title-only-panel {
  min-height: 320px;
  min-width: 0;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 18px 38px rgba(2, 45, 92, 0.08);
}

.title-only-panel h2 {
  width: min(760px, calc(100% - 48px));
  margin: 0;
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.08;
  text-align: center;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.indicator-page {
  padding: clamp(56px, 6vw, 92px) clamp(48px, 5vw, 96px) clamp(70px, 8vw, 116px);
  color: var(--white);
  background: #002d5f;
}

.indicator-page__inner {
  width: min(100%, 1760px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.indicator-metrics {
  min-width: 0;
}

.indicator-page h2 {
  margin: 0 0 34px;
  color: var(--white);
  font-size: clamp(26px, 2.1vw, 36px);
  font-weight: 800;
  line-height: 1.12;
}

.indicator-block {
  --accent: var(--cyan);
  --history: #7489ae;
  margin-top: clamp(38px, 4.2vw, 70px);
}

.indicator-block:first-of-type {
  margin-top: 0;
}

.indicator-block--cyan {
  --accent: var(--cyan);
}

.indicator-block--magenta {
  --accent: #cf61b6;
}

.indicator-block--magenta .metric-card h4 {
  min-height: 3.72em;
}

.indicator-block--red {
  --accent: #f0535c;
}

.indicator-block h3 {
  margin: 0 0 30px;
  color: var(--accent);
  font-size: clamp(22px, 1.7vw, 30px);
  font-weight: 800;
  line-height: 1.12;
}

.indicator-block h3 sup,
.metric-card h4 sup,
.metric-value sup,
.indicator-footnotes sup {
  font-size: 0.62em;
  line-height: 0;
}

.indicator-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(34px, 4vw, 72px);
  align-items: start;
}

.indicator-grid--top {
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(270px, 0.95fr);
  align-items: start;
}

.indicator-grid--with-notes {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-card {
  min-width: 0;
}

.metric-card h4 {
  min-height: 48px;
  margin: 0 0 28px;
  color: var(--white);
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 800;
  line-height: 1.24;
}

.metric-chart {
  display: grid;
  gap: 18px;
}

.metric-chart--inline-svg {
  display: block;
  width: min(100%, 430px);
}

.metric-svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--accent);
}

.metric-svg__row {
  --svg-row-color: currentColor;
}

.metric-svg__row--history {
  --svg-row-color: #66789f;
}

.metric-svg__year-shape,
.metric-svg__bar,
.metric-svg__dot {
  fill: var(--svg-row-color);
}

.metric-svg__connector,
.metric-svg__value-pill {
  fill: none;
  stroke: var(--svg-row-color);
  stroke-width: 1;
  stroke-linecap: butt;
  stroke-linejoin: miter;
}

.metric-svg__year-text,
.metric-svg__value-text {
  fill: var(--svg-row-color);
  font-size: 9.6px;
  font-weight: 800;
  line-height: 1;
  text-anchor: middle;
  dominant-baseline: middle;
  paint-order: stroke;
  stroke: transparent;
  stroke-width: 0;
}

.metric-svg__year-text--current {
  fill: var(--white);
  font-size: 9.4px;
}

.metric-svg__value-sup {
  font-size: 5.8px;
  font-weight: 800;
}

.metric-card--footnote-hover,
.metric-chart--has-footnote {
  position: relative;
}

.metric-footnote-hotspot {
  position: absolute;
  z-index: 12;
  width: 34px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: help;
  appearance: none;
}

.metric-footnote-hotspot--three {
  top: -1px;
  right: -1px;
  width: 84px;
  height: 34px;
  --metric-footnote-tail-offset: 42px;
}

.metric-footnote-tooltip {
  position: absolute;
  right: 0;
  bottom: calc(100% + 34px);
  width: 520px;
  max-width: min(520px, 82vw);
  padding: 24px 30px 28px 34px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(0, 35, 70, 0.22);
  color: #19334c;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.55;
  text-align: left;
  opacity: 0;
  transform: translateY(8px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.metric-footnote-tooltip::after {
  content: "";
  position: absolute;
  right: var(--metric-footnote-tail-offset, 48px);
  bottom: -28px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 16px 0 16px;
  border-color: #ffffff transparent transparent transparent;
}

.metric-footnote-tooltip sup {
  margin-right: 10px;
  color: #003b6f;
  font-size: 12px;
  font-weight: 800;
}

.metric-footnote-hotspot:hover .metric-footnote-tooltip,
.metric-footnote-hotspot:focus-visible .metric-footnote-tooltip {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.metric-footnote-hotspot:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.92);
    outline-offset: 2px;
    border-radius: 999px;
}

.indicator-heading-unit-nowrap {
    display: inline-flex;
    align-items: baseline;
    white-space: nowrap;
    vertical-align: baseline;
}

.indicator-heading-unit-nowrap .indicator-inline-footnote {
    flex: 0 0 auto;
}

.indicator-inline-footnote {
    position: relative;
    z-index: 14;
    display: inline-block;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    line-height: 0;
    vertical-align: super;
    cursor: help;
    appearance: none;
    --indicator-inline-tooltip-width: 440px;
}

.indicator-inline-footnote::before {
    content: "";
    position: absolute;
    inset: -12px -16px;
}

.indicator-inline-footnote > sup {
    margin: 0;
    pointer-events: none;
}

.indicator-inline-footnote .metric-footnote-tooltip {
    right: auto;
    left: 50%;
    bottom: calc(100% + 40px);
    width: var(--indicator-inline-tooltip-width, 440px);
    max-width: min(var(--indicator-inline-tooltip-width, 440px), 82vw);
    transform: translate(-50%, 8px);
    white-space: normal;
}

.indicator-inline-footnote .metric-footnote-tooltip::after {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
}

.indicator-inline-footnote:hover .metric-footnote-tooltip,
.indicator-inline-footnote:focus-visible .metric-footnote-tooltip {
    opacity: 1;
    transform: translate(-50%, 0);
    visibility: visible;
}

.indicator-inline-footnote:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.92);
    outline-offset: 3px;
    border-radius: 999px;
}

.indicator-inline-footnote--one {
    --indicator-inline-tooltip-width: 580px;
}

.indicator-inline-footnote--two {
    --indicator-inline-tooltip-width: 470px;
}

.indicator-inline-footnote--four,
.indicator-inline-footnote--five {
    --indicator-inline-tooltip-width: 360px;
}

.indicator-inline-footnote--two .metric-footnote-tooltip {
    right: 0;
    left: auto;
    transform: translateY(8px);
}

.indicator-inline-footnote--two .metric-footnote-tooltip::after {
    right: 0.38em;
    left: auto;
    transform: none;
}

.indicator-inline-footnote--two:hover .metric-footnote-tooltip,
.indicator-inline-footnote--two:focus-visible .metric-footnote-tooltip {
    transform: translateY(0);
}

.metric-svg__row--demo-animate .metric-svg__bar {
  transform-box: fill-box;
  transform-origin: left center;
}

.metric-svg__row--demo-animate .metric-svg__connector,
.metric-svg__row--demo-animate .metric-svg__value-pill,
.metric-svg__row--demo-animate .metric-svg__dot {
  transform-box: fill-box;
  transform-origin: left center;
}

.metric-svg__row--demo-animate .metric-svg__value-text {
  transform-box: fill-box;
  transform-origin: center;
}

.metric-svg__row--demo-animate.is-ready:not(.is-animated) .metric-svg__bar {
  transform: scaleX(0);
}

.metric-svg__row--demo-animate.is-ready:not(.is-animated) .metric-svg__connector,
.metric-svg__row--demo-animate.is-ready:not(.is-animated) .metric-svg__value-pill,
.metric-svg__row--demo-animate.is-ready:not(.is-animated) .metric-svg__dot,
.metric-svg__row--demo-animate.is-ready:not(.is-animated) .metric-svg__value-text {
  opacity: 0;
}

.metric-svg__row--demo-animate.is-animated .metric-svg__bar {
  animation: metric-bar-grow 520ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.metric-svg__row--demo-animate.is-animated .metric-svg__connector {
  animation: metric-line-grow 180ms ease-out 430ms both;
}

.metric-svg__row--demo-animate.is-animated .metric-svg__value-pill,
.metric-svg__row--demo-animate.is-animated .metric-svg__dot {
  animation: metric-fade-in 180ms ease-out 520ms both;
}

.metric-svg__row--demo-animate.is-animated .metric-svg__value-text {
  animation: metric-value-pop 320ms cubic-bezier(0.2, 1.25, 0.36, 1) 520ms both;
}

@keyframes metric-bar-grow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes metric-line-grow {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes metric-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes metric-value-pop {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }
  72% {
    opacity: 1;
    transform: scale(1.18);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .metric-svg__row--demo-animate.is-animated .metric-svg__bar,
  .metric-svg__row--demo-animate.is-animated .metric-svg__connector,
  .metric-svg__row--demo-animate.is-animated .metric-svg__value-pill,
  .metric-svg__row--demo-animate.is-animated .metric-svg__dot,
  .metric-svg__row--demo-animate.is-animated .metric-svg__value-text,
  .sustainability-row--animate.is-animated .sustainability-bar,
  .sustainability-row--animate.is-animated .sustainability-track::after,
  .sustainability-row--animate.is-animated .sustainability-value {
    animation: none;
  }
}

.metric-row {
  --row-color: var(--history);
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(150px, 1fr);
  gap: 8px;
  align-items: center;
  color: var(--row-color);
  min-height: 24px;
}

.metric-row--current {
  --row-color: var(--accent);
}

.metric-year {
  position: relative;
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--row-color);
  font-size: clamp(13px, 0.84vw, 16px);
  font-weight: 800;
  line-height: 1;
}

.metric-row--current .metric-year {
  min-width: 0;
  padding: 0 0 0 10px;
  color: var(--white);
  background: none;
  clip-path: none;
}

.metric-year span {
  position: relative;
  z-index: 1;
}

.metric-year-svg {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 50%;
  width: 54px;
  height: 24px;
  object-fit: fill;
  transform: translateY(-50%);
  pointer-events: none;
}

.metric-track {
  position: relative;
  grid-column: 2;
  height: 24px;
  min-width: 0;
  display: block;
}

.metric-track::after {
  content: none;
}

.metric-row-svg {
  display: block;
  width: 100%;
  height: 24px;
  object-fit: fill;
  pointer-events: none;
}

.metric-bar {
  display: none;
}

.metric-value {
  position: absolute;
  right: -4px;
  top: 50%;
  min-width: 58px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--row-color);
  font-size: clamp(13px, 0.84vw, 16px);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transform: translateY(-50%);
}

.indicator-photo {
  margin: 0;
}

.indicator-photo img {
  display: block;
  width: 100%;
  height: clamp(150px, 10.8vw, 206px);
  object-fit: cover;
  object-position: center;
}

.indicator-service-panel {
  padding: clamp(28px, 2.6vw, 40px);
  border-left: 3px solid var(--cyan);
  background: rgba(0, 61, 117, 0.44);
  box-shadow: 0 18px 34px rgba(0, 20, 45, 0.18);
}

.indicator-service-panel h2 {
  margin: 0 0 24px;
  color: var(--white);
  font-size: clamp(21px, 1.5vw, 28px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.indicator-service-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.indicator-service-list li {
  position: relative;
  padding-left: 24px;
  color: var(--white);
  font-size: clamp(12px, 0.82vw, 14px);
  font-weight: 700;
  line-height: 1.34;
}

.indicator-service-list li::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
}

.indicator-footnotes {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 52px);
  align-self: start;
  margin-top: clamp(2px, 0.8vw, 14px);
  color: var(--white);
  font-size: clamp(11px, 0.78vw, 13px);
  font-weight: 500;
  line-height: 1.52;
}

.indicator-footnotes p {
  margin: 0;
}

.indicator-footnotes-section {
  padding-top: clamp(24px, 2.8vw, 42px);
  padding-bottom: clamp(72px, 7vw, 110px);
}

.indicator-footnotes--global {
  width: min(100%, 1760px);
  margin: 0 auto;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 34px);
  color: rgba(255, 255, 255, 0.72);
}

.indicator-footnotes--global p {
  max-width: 360px;
}

.service-strip {
  position: relative;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: clamp(28px, 3vw, 56px);
  margin-top: clamp(36px, 4vw, 64px);
  padding: clamp(34px, 3.4vw, 56px) clamp(42px, 4vw, 68px);
  border-radius: 0 42px 0 42px;
  background:
    linear-gradient(135deg, rgba(78, 110, 157, 0.88) 0%, rgba(9, 70, 118, 0.94) 52%, rgba(0, 54, 95, 0.98) 100%);
  box-shadow: 0 26px 52px rgba(0, 22, 53, 0.26);
  overflow: hidden;
}

.service-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent 36%);
  pointer-events: none;
}

.service-strip h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--white);
  font-size: clamp(22px, 1.45vw, 28px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.service-strip__list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-strip__list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 15px;
  min-height: 108px;
  padding: 18px 20px 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #f6fafc;
  font-size: clamp(11px, 0.72vw, 13px);
  font-weight: 500;
  line-height: 1.26;
}

.service-strip__list li:nth-child(-n + 5) {
  border-top: 0;
}

.service-strip__list li:not(:nth-child(5n + 1)) {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.service-strip__list img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.service-strip__list span {
  display: block;
}

.service-strip__corner {
  position: absolute;
  z-index: 1;
  width: 18px;
  height: 18px;
  opacity: 0.78;
  pointer-events: none;
}

.service-strip__corner--top {
  top: 32px;
  right: 32px;
}

.service-strip__corner--bottom {
  right: 32px;
  bottom: 32px;
}

.sustainability-page {
  position: relative;
  min-height: auto;
  padding: 96px 220px 120px 86px;
  overflow: hidden;
}

.sustainability-page::after {
  content: "";
  position: absolute;
  top: -42px;
  right: -58px;
  width: min(42vw, 720px);
  height: min(23vw, 395px);
  background: url("assets/environment-hero-ray.png") right top / contain no-repeat;
  opacity: 0.9;
  pointer-events: none;
}

.sustainability-page__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1760px);
  margin: 0 auto;
  display: block;
}

.sustainability-page h2 {
  margin: 0 0 42px;
  font-size: 34px;
}

.sustainability-block {
  --accent: #57b864;
  margin-top: 68px;
}

.sustainability-block:first-of-type {
  margin-top: 0;
}

.sustainability-block h3 {
  margin: 0 0 30px;
  color: var(--accent);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.1;
}

.sustainability-block--environment {
  --accent: #57b864;
}

.sustainability-block--economy {
  --accent: #cf61b6;
}

.sustainability-block--social {
  --accent: #57b7b8;
}

.sustainability-grid {
  display: grid;
  gap: 52px 76px;
  align-items: start;
}

.sustainability-grid--three,
.sustainability-grid--two,
.sustainability-grid--social-bottom {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sustainability-card {
  min-width: 0;
}

.sustainability-card--wide {
  width: auto;
}

.sustainability-card h4,
.donut-card h4 {
  min-height: 48px;
  margin: 0 0 22px;
  color: var(--white);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.18;
}

.sustainability-bars {
  display: grid;
  gap: 13px;
}

.sustainability-row {
  --row-color: #66789f;
  display: grid;
  grid-template-columns: 82px minmax(150px, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 28px;
  color: var(--row-color);
}

.sustainability-row.is-current {
  --row-color: var(--accent);
}

.sustainability-year {
  box-sizing: border-box;
  display: inline-grid;
  place-items: center start;
  min-width: 76px;
  min-height: 28px;
  padding-left: 12px;
  color: var(--row-color);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.sustainability-row.is-current .sustainability-year {
  width: 76px;
  min-width: 76px;
  padding: 5px 22px 5px 12px;
  color: var(--white);
  background: var(--row-color);
  clip-path: polygon(0 0, calc(100% - 17px) 0, 100% 50%, calc(100% - 17px) 100%, 0 100%);
}

.sustainability-track {
  position: relative;
  display: block;
  height: 11px;
}

.sustainability-track::after {
  content: "";
  position: absolute;
  top: 50%;
  left: var(--bar);
  right: -16px;
  height: 2px;
  background: var(--row-color);
  transform: translateY(-50%);
}

.sustainability-bar {
  position: relative;
  z-index: 1;
  display: block;
  width: var(--bar);
  height: 100%;
  background: var(--row-color);
}

.sustainability-value {
  box-sizing: border-box;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  min-width: 92px;
  min-height: 27px;
  padding: 2px 8px 3px;
  border: 2px solid var(--row-color);
  border-radius: 999px;
  color: var(--row-color);
  font-size: 18px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.sustainability-value::before {
  content: "";
  display: none;
  position: absolute;
  top: 50%;
  right: 100%;
  width: 18px;
  height: 2px;
  background: var(--row-color);
  transform: translateY(-50%);
}

.sustainability-value::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(100% - 5px);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--row-color);
  transform: translateY(-50%);
}

.sustainability-value sup,
.sustainability-year sup,
.donut-legend sup,
.sustainability-notes sup {
  font-size: 0.58em;
  line-height: 0;
}

.sustainability-value sup,
.donut-legend strong sup {
  display: inline-block;
  position: relative;
  top: -0.34em;
  margin-left: 2px;
  font-size: 0.7em;
  line-height: 1;
  vertical-align: baseline;
}

.sustainability-value sup {
  top: -0.36em;
  margin-left: 1px;
}

.sustainability-row--animate .sustainability-bar,
.sustainability-row--animate .sustainability-track::after {
  transform-origin: left center;
}

.sustainability-row--animate .sustainability-value {
  transform-origin: center;
}

.sustainability-row--animate.is-ready:not(.is-animated) .sustainability-bar,
.sustainability-row--animate.is-ready:not(.is-animated) .sustainability-track::after {
  transform: scaleX(0);
}

.sustainability-row--animate.is-ready:not(.is-animated) .sustainability-value {
  opacity: 0;
}

.sustainability-row--animate.is-animated .sustainability-bar {
  animation: metric-bar-grow 520ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.sustainability-row--animate.is-animated .sustainability-track::after {
  animation: metric-line-grow 180ms ease-out 430ms both;
}

.sustainability-row--animate.is-animated .sustainability-value {
  animation: metric-value-pop 320ms cubic-bezier(0.2, 1.25, 0.36, 1) 520ms both;
}

.donut-card {
  min-width: 0;
}

.donut-card__body {
  display: grid;
  grid-template-columns: 148px minmax(118px, 1fr);
  gap: 26px;
  align-items: center;
}

.donut-chart {
  --donut-progress: 1;
  position: relative;
  width: 140px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(var(--donut-a) 0 var(--slice-a), var(--donut-b) var(--slice-a) 100%);
  opacity: 1;
  -webkit-mask-image: conic-gradient(#000 0turn calc(var(--donut-progress) * 1turn), transparent calc(var(--donut-progress) * 1turn) 1turn);
  mask-image: conic-gradient(#000 0turn calc(var(--donut-progress) * 1turn), transparent calc(var(--donut-progress) * 1turn) 1turn);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.donut-chart.is-donut-waiting {
  --donut-progress: 0;
}

.donut-chart.is-donut-animated {
  animation: donut-radial-reveal 1000ms linear forwards;
}

.donut-chart::before {
  content: "";
  position: absolute;
  inset: 31px;
  border-radius: 50%;
  background: #002d5f;
}

.donut-chart::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 13px solid rgba(0, 0, 0, 0.12);
}

.donut-chart--gender {
  --donut-a: #cf61b6;
  --donut-b: #57b7b8;
  --slice-a: 18%;
}

.donut-chart--age {
  background: conic-gradient(#66789f 0 11%, #57b7b8 11% 69%, #cf61b6 69% 100%);
}

@property --donut-progress {
  syntax: "<number>";
  inherits: false;
  initial-value: 1;
}

@keyframes donut-radial-reveal {
  from {
    --donut-progress: 0;
  }

  to {
    --donut-progress: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .donut-chart {
    --donut-progress: 1;
    opacity: 1;
  }

  .donut-chart.is-donut-waiting {
    --donut-progress: 1;
    opacity: 1;
  }

  .donut-chart.is-donut-animated {
    animation: none;
  }
}

.donut-legend {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.donut-legend__item {
  display: grid;
  gap: 7px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.donut-legend__item strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-width: 76px;
  min-height: 28px;
  padding: 3px 13px;
  border: 2px solid currentColor;
  border-radius: 999px;
  font-size: 17px;
  line-height: 1;
}

.donut-legend__item--magenta strong {
  color: #cf61b6;
}

.donut-legend__item--teal strong {
  color: #57b7b8;
}

.donut-legend__item--history strong {
  color: #66789f;
}

.sustainability-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 48px;
  margin-top: 42px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  line-height: 1.45;
}

.sustainability-notes p {
  margin: 0;
}

.key-indicators-page .sustainability-page {
  padding: clamp(68px, 6.4vw, 104px) var(--key-indicators-content-gutter) clamp(82px, 7.2vw, 124px);
}

.key-indicators-page .sustainability-page__inner {
  width: min(100%, var(--key-indicators-content-width));
}

.key-indicators-page .sustainability-page h2 {
  margin-bottom: clamp(34px, 3vw, 48px);
  font-size: clamp(30px, 2.1vw, 38px);
  line-height: 1.08;
}

.key-indicators-page .sustainability-block {
  margin-top: clamp(58px, 5vw, 82px);
}

.key-indicators-page .sustainability-block:first-of-type {
  margin-top: 0;
}

.key-indicators-page .sustainability-block h3 {
  margin-bottom: clamp(26px, 2.4vw, 34px);
  font-size: clamp(26px, 1.9vw, 34px);
}

.key-indicators-page .sustainability-grid {
  gap: clamp(42px, 3.5vw, 60px) clamp(42px, 4vw, 76px);
}

.key-indicators-page .sustainability-row {
  grid-template-columns: minmax(82px, max-content) minmax(120px, 1fr) minmax(82px, max-content);
}

.key-indicators-page .sustainability-track {
  min-width: 0;
}

.key-indicators-page .sustainability-value {
  width: auto;
  min-width: 92px;
}

.key-indicators-page .donut-card__body {
  grid-template-columns: minmax(124px, 148px) minmax(0, 1fr);
}

.key-indicators-page .indicator-footnotes-section {
  padding: clamp(32px, 3vw, 48px) var(--key-indicators-content-gutter) clamp(76px, 7vw, 112px);
}

.key-indicators-page .indicator-footnotes--global {
  width: min(100%, var(--key-indicators-content-width));
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.key-indicators-page .indicator-footnotes--global p {
  max-width: none;
}

@media (min-width: 981px) and (max-width: 1280px) {
  .key-indicators-page .sustainability-page {
    padding-top: 64px;
    padding-bottom: 96px;
  }

  .key-indicators-page .sustainability-grid--three,
  .key-indicators-page .sustainability-grid--two,
  .key-indicators-page .sustainability-grid--social-bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 52px;
  }

  .key-indicators-page .sustainability-card h4,
  .key-indicators-page .donut-card h4 {
    min-height: 0;
  }

  .key-indicators-page .sustainability-row {
    grid-template-columns: 78px minmax(98px, 1fr) minmax(78px, max-content);
    gap: 12px;
  }

  .key-indicators-page .sustainability-year {
    min-width: 70px;
    font-size: 16px;
  }

  .key-indicators-page .sustainability-row.is-current .sustainability-year {
    width: 70px;
    min-width: 70px;
    padding-right: 18px;
  }

  .key-indicators-page .sustainability-value {
    min-width: 78px;
    font-size: 16px;
  }

  .key-indicators-page .donut-card__body {
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 22px;
  }

  .key-indicators-page .donut-chart {
    width: 132px;
  }

  .key-indicators-page .sustainability-notes {
    grid-template-columns: 1fr;
  }
}

.message-article {
  display: block;
}

.message-body {
  min-width: 0;
  width: 100%;
  padding: clamp(34px, 5vw, 64px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 38px rgba(2, 45, 92, 0.08);
}

.message-body p {
  margin: 0 0 18px;
  color: #3a3a3a;
  font-size: clamp(14px, 0.9vw, 16px);
  font-weight: 500;
  line-height: 1.62;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.message-body > p:first-child {
  margin-bottom: 22px;
  color: #20262c;
  font-size: clamp(14px, 0.95vw, 16px);
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.message-body h2 {
  margin: 34px 0 14px;
  color: #20262c;
  font-size: clamp(20px, 1.55vw, 25px);
  font-weight: 800;
  line-height: 1.2;
}

.message-body h2:first-child {
  margin-top: 0;
}

.message-signature {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(2, 45, 92, 0.16);
}

.message-signature strong {
  display: block;
  margin: 8px 0 4px;
  color: #20262c;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

@media (max-width: 1280px) {
  .section-card,
  .section-card--feature,
  .section-card--deep {
    grid-column: span 6;
  }

  .indicator-page__inner {
    grid-template-columns: 1fr;
  }

  .indicator-grid,
  .indicator-grid--top,
  .indicator-grid--with-notes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .indicator-footnotes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-hero {
    grid-template-columns: minmax(360px, 0.86fr) minmax(380px, 1fr);
    gap: 46px;
    padding-inline: 72px;
  }

  .section-hero--redesign {
    height: 560px;
    min-height: 560px;
    padding: 76px 56px 60px;
  }

  .section-hero--redesign .section-hero__content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 64px;
  }

  .section-hero--redesign .section-hero__section-label {
    font-size: clamp(38px, 4.4vw, 56px);
  }

  .section-hero--redesign .section-hero__current-title {
    font-size: clamp(14px, 1.2vw, 16px);
  }

  .section-hero--redesign .section-hero__tabs {
    gap: 15px 54px;
  }

  .section-hero--redesign .section-hero__tab {
    min-height: 20px;
    padding: 0 0 0 34px;
  }

  .section-hero--redesign.section-hero--company .section-hero__section-label {
    grid-row: 1;
    max-width: 980px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: 1.25;
  }

  .section-hero--redesign.section-hero--company .section-hero__current-title {
    grid-row: 2;
    margin: 8px 0 34px;
    color: var(--environment-green);
    font-size: clamp(38px, 4.4vw, 56px);
    line-height: 0.98;
  }

  .section-hero__title {
    font-size: clamp(42px, 5vw, 72px);
  }
}

@media (max-width: 980px) {
  :root {
    --rail-width: min(86vw, 420px);
  }

  .topbar {
    gap: 16px;
  }

  .download-link span:last-child,
  .top-slogan {
    display: none;
  }

  .download-link {
    min-width: 0;
  }

  .concept {
    grid-template-columns: 1fr;
  }

  .concept .section-kicker,
  .concept h2,
  .concept-text {
    grid-column: 1;
    grid-row: auto;
  }

  .message-article {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 720px) {
  .topbar {
    padding-inline: 18px;
  }

  .brand-logo {
    width: 172px;
  }

  .top-actions {
    gap: 14px;
  }

  .download-link {
    display: none;
  }

  .language-switcher {
    gap: 4px;
    font-size: 12px;
  }

  .hero {
    min-height: 720px;
    justify-content: flex-start;
    padding: 58px 24px 52px;
  }

  .hero::before {
    left: -92px;
    bottom: -82px;
    width: 930px;
  }

  .hero-copy {
    width: min(100%, 430px);
    margin-top: 0;
  }

  .report-lockup {
    gap: 20px;
    margin-bottom: 48px;
  }

  .hero-controls {
    margin-top: 52px;
  }

  .hero-arrow {
    width: 68px;
    height: 68px;
  }

  .section-card,
  .section-card--feature,
  .section-card--deep {
    grid-column: 1 / -1;
  }

  .footer {
    flex-direction: column;
  }

  .report-hero {
    min-height: 360px;
    padding: 92px 24px 64px;
  }

  .report-hero--message {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .report-hero-content {
    width: 100%;
    max-width: calc(100vw - 48px);
    margin-left: 0;
  }

  .report-hero--message .report-hero-content {
    width: 100%;
    max-width: none;
    padding: 92px 24px 42px;
  }

  .report-hero--message .report-title {
    max-width: calc(100vw - 48px);
  }

  .report-portrait {
    width: 100%;
    min-height: 320px;
    aspect-ratio: 1.05 / 1;
  }

  .report-title {
    font-size: clamp(24px, 6.6vw, 28px);
    line-height: 1.06;
  }

  .report-kicker {
    max-width: calc(100% - 108px);
  }

  .report-hero::before {
    left: -180px;
    bottom: -120px;
    width: 760px;
  }

  .page-switcher {
    position: fixed;
    top: 50%;
    right: 12px;
    gap: 10px;
    transform: translateY(-50%);
  }

  .page-arrow {
    width: 50px;
    height: 50px;
    border-width: 2px;
    font-size: 31px;
  }

  .report-content {
    width: min(calc(100% - 32px), 1180px);
  }

  .section-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 92px 24px 72px;
  }

  .section-hero--redesign {
    height: auto;
    min-height: auto;
    padding: 92px 24px 76px;
  }

  .section-hero__content {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section-hero__section-label,
  .section-hero__current-title,
  .section-hero__tabs {
    grid-column: 1;
    grid-row: auto;
    align-self: auto;
  }

  .section-hero--redesign .section-hero__number-art {
    left: 0;
    top: 0;
    bottom: auto;
    width: min(520px, 100%);
    opacity: 0.28;
  }

  .section-hero--company .section-hero__number-art,
  .section-hero--strategy .section-hero__number-art,
  .section-hero--governance .section-hero__number-art,
  .section-hero--social .section-hero__number-art,
  .section-hero--safety .section-hero__number-art {
    width: min(520px, 100%);
  }

  .section-hero--strategy .section-hero__current-title,
  .section-hero--governance .section-hero__current-title,
  .section-hero--social .section-hero__current-title,
  .section-hero--safety .section-hero__current-title {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .section-hero__tabs {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-flow: row;
    padding-top: 0;
  }

  .section-hero__left {
    gap: 42px;
  }

  .section-hero__right {
    min-height: auto;
    justify-content: stretch;
  }

  .section-hero__ray {
    right: -88px;
    height: 100%;
    min-height: 480px;
  }

  .section-hero__subsections {
    width: 100%;
    padding-left: 24px;
  }

  .message-body {
    padding: 28px 22px;
  }

  .title-only-panel h2 {
    width: calc(100% - 32px);
    font-size: clamp(22px, 6.8vw, 26px);
  }

  .indicator-page {
    padding: 44px 24px 64px;
  }

  .indicator-grid,
  .indicator-grid--top,
  .indicator-grid--with-notes {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .indicator-footnotes {
    grid-template-columns: 1fr;
  }

  .metric-card h4 {
    min-height: 0;
  }

  .metric-row {
    grid-template-columns: 64px minmax(150px, 1fr);
    gap: 8px;
  }
}

@media (max-width: 560px) {
  .topbar {
    gap: 12px;
    padding-inline: 16px;
  }

  .brand-logo {
    width: 126px;
  }

  .language-switcher a {
    min-width: 20px;
  }
}

@media (max-width: 980px) {
  .environmental-template {
    padding: 68px 0 96px;
  }

  .environmental-template__inner {
    width: min(100% - 64px, 720px);
  }

  .environmental-template__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .environmental-template__block h3.environmental-template__single-line-heading {
    font-size: 26px;
    white-space: normal;
  }

  .environmental-documents-update__media {
    min-height: 260px;
  }

  .environmental-template__motivation-layout {
    grid-template-areas:
      "image"
      "intro"
      "side";
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .environmental-climate-effects-flow {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .environmental-climate-projects__flow {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .environmental-template__media.environmental-template__media--climate-policy img,
  .environmental-template__media.environmental-template__media--climate-transparency img {
    height: auto;
  }

  .environmental-template__media.environmental-template__media--climate-policy img {
    aspect-ratio: 1.3;
  }

  .environmental-template__media.environmental-template__media--climate-transparency img {
    aspect-ratio: 1.14;
  }

  .environmental-energy-consumption-grid,
  .environmental-energy-reduction {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .environmental-energy-saving-summary {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .environmental-energy-intensity-hero {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .environmental-emissions-flow {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .environmental-water-chart-grid,
  .environmental-water-kpi-grid,
  .environmental-water-projects-flow,
  .environmental-water-infrastructure-flow,
  .environmental-water-innovation-flow,
  .environmental-water-footprint-flow,
  .environmental-water-footprint-layout,
  .environmental-water-discharge-layout,
  .environmental-water-produced-layout,
  .environmental-compliance-media-row,
  .environmental-waste-section-row,
  .environmental-waste-spill-columns,
  .environmental-template__list--columns,
  .environmental-metric-grid--two,
  .environmental-metric-grid--three,
  .environmental-compliance-fines__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .environmental-water-projects-flow--balanced {
    columns: 1;
  }

  .environmental-water-donut-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .environmental-water-donut {
    max-width: 240px;
  }

  .environmental-template__media--water-tanker {
    align-self: start;
    height: auto;
    margin-top: 0;
  }

  .environmental-template__media--water-tanker img {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .environmental-water-table {
    min-width: 720px;
  }

  .environmental-data-table {
    min-width: 720px;
  }

  .environmental-data-table--wide {
    min-width: 920px;
  }

  .environmental-emissions-table {
    min-width: 820px;
  }

  .environmental-emissions-table th,
  .environmental-emissions-table td {
    padding: 14px 15px;
    font-size: 14px;
  }

  .environmental-energy-initiative-grid,
  .environmental-energy-table-pair,
  .environmental-air-table-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .environmental-air-table-grid .environmental-air-table-wrap:first-child {
    grid-column: 1;
  }

  .environmental-air-table-wrap--full,
  .environmental-air-gas-feature {
    grid-column: 1;
  }

  .environmental-air-gas-feature,
  .environmental-air-gas-copy__columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .environmental-air-gas-feature__media img {
    min-height: 260px;
  }

  .environmental-energy-table {
    min-width: 780px;
  }

  .environmental-air-table {
    min-width: 720px;
  }

  .environmental-energy-table--compact {
    min-width: 640px;
  }

  .environmental-template__section-heading,
  .environmental-template__block--wide,
  .environmental-template__media--wide {
    grid-column: 1;
  }

  .environmental-template__section-heading {
    margin: 6px 0 -14px;
  }
}

@media (max-width: 720px) {
  .section-hero--redesign {
    padding: 78px 24px 58px;
  }

  .section-hero--redesign::before {
    background-size: auto 100%;
    background-position: center top;
  }

  .section-hero--redesign .section-hero__content {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-hero--redesign .section-hero__number-art {
    width: min(520px, 100%);
    opacity: 0.24;
  }

  .section-hero--redesign .section-hero__current-title {
    grid-column: 1;
    grid-row: 1;
    max-width: calc(100% - 42px);
    font-size: 13px;
    line-height: 1.28;
  }

  .section-hero--redesign .section-hero__section-label {
    grid-column: 1;
    grid-row: 2;
    margin: 4px 0 8px;
    width: 100%;
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.02;
    overflow-wrap: break-word;
  }

  .section-hero--redesign .section-hero__tabs {
    grid-column: 1;
    grid-row: 3;
    gap: 16px;
    max-width: calc(100% - 58px);
  }

  .section-hero--redesign .section-hero__tab {
    min-height: 22px;
    padding-left: 34px;
    font-size: 14px;
    line-height: 1.24;
  }

  .section-hero--redesign .section-hero__tab::before {
    top: 0.32em;
    width: 12px;
    height: 12px;
  }

  .section-hero--redesign.section-hero--company .section-hero__section-label {
    grid-row: 1;
    margin: 0;
    width: auto;
    max-width: calc(100% - 42px);
    font-size: 13px;
    line-height: 1.28;
    overflow-wrap: normal;
  }

  .section-hero--redesign.section-hero--company .section-hero__current-title {
    grid-row: 2;
    margin: 4px 0 8px;
    width: 100%;
    max-width: 100%;
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.02;
    overflow-wrap: break-word;
  }

  .environmental-template {
    padding: 52px 0 76px;
  }

  .environmental-template__inner {
    width: calc(100% - 40px);
  }

  .environmental-template__header {
    margin-bottom: 34px;
  }

  .environmental-template__header h2 {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.08;
  }

  .environmental-template__grid {
    gap: 40px;
  }

  .environmental-template__section-heading {
    margin: 4px 0 -8px;
  }

  .environmental-template__section-heading h3 {
    font-size: 26px;
    line-height: 1.16;
  }

  .environmental-template__block h3 {
    margin-bottom: 16px;
    font-size: 22px;
    line-height: 1.18;
  }

  .environmental-template__gri,
  .environmental-template__block p,
  .environmental-template__list li {
    font-size: 16px;
    line-height: 1.46;
  }

  .environmental-template__gri {
    margin-bottom: 20px;
  }

  .environmental-template__block p {
    margin-bottom: 16px;
  }

  .environmental-template__list {
    gap: 12px;
    margin-bottom: 20px;
  }

  .environmental-template__list li {
    padding-left: 30px;
  }

  .environmental-template__list li::before {
    top: 0.28em;
    width: 14px;
    height: 14px;
    border-width: 2px;
    background: #f9fcfd;
    box-shadow: inset 0 0 0 2px #f9fcfd, inset 0 0 0 5px var(--template-green);
  }

  .environmental-template__list li::after {
    content: none;
    display: none;
  }

  .environmental-template__media {
    margin-top: 22px;
  }

  .environmental-template__media--events {
    margin: 24px 0 0;
  }

  .environmental-energy-initiative-grid {
    gap: 26px;
    margin: 22px 0 28px;
  }

  .environmental-energy-table th,
  .environmental-energy-table td,
  .environmental-air-table th,
  .environmental-air-table td,
  .environmental-water-table th,
  .environmental-water-table td,
  .environmental-data-table th,
  .environmental-data-table td {
    padding: 13px 14px;
    font-size: 13px;
  }

  .environmental-energy-table-title,
  .environmental-air-table-title,
  .environmental-water-table-title,
  .environmental-data-table-title {
    font-size: 15px;
  }

  .environmental-water-principles li {
    min-height: 0;
  }

  .environmental-water-stack-row,
  .environmental-water-bars div {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 8px 12px;
  }

  .environmental-metric-bars div {
    grid-template-columns: 52px minmax(0, 1fr) minmax(62px, auto);
    gap: 8px;
  }

  .environmental-water-stack-row strong,
  .environmental-water-bars strong {
    grid-column: 2;
  }

  .environmental-water-source-table,
  .environmental-water-source-legend--inline {
    grid-template-columns: 1fr;
  }

  .environmental-energy-share-row span,
  .environmental-energy-share-row strong,
  .environmental-energy-bar span,
  .environmental-energy-bar strong {
    font-size: 15px;
  }

  .environmental-energy-bar {
    grid-template-columns: 1fr auto;
    gap: 8px 14px;
  }

  .environmental-energy-bar i {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .environmental-energy-bar strong {
    grid-column: 2;
    grid-row: 1;
  }

  .environmental-practice-card {
    border-radius: 24px 0 28px;
  }

  .environmental-practice-card__header {
    min-height: 58px;
    gap: 14px;
    padding: 14px 20px;
    border-radius: 24px 0 24px 0;
  }

  .environmental-practice-card .environmental-practice-card__header h4 {
    font-size: 16px;
  }

  .environmental-practice-card__icon {
    width: 34px;
    height: 34px;
  }

  .environmental-practice-card__media {
    margin-top: -22px;
  }

  .environmental-practice-card__body {
    min-height: 0;
    padding: 28px 24px 78px;
  }

  .environmental-practice-card__body::after {
    left: 24px;
    right: 24px;
    bottom: 24px;
    height: 34px;
  }

  .environmental-practice-card .environmental-practice-card__body h3 {
    margin-bottom: 18px;
    font-size: 22px;
  }

  .environmental-practice-card .environmental-practice-card__body p {
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.38;
  }

  .page-switcher {
    top: auto;
    right: 6px;
    bottom: 18px;
    gap: 7px;
    transform: none;
  }

  .page-arrow {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
}

@media (max-width: 980px) {
  .key-indicators-page {
    background: #002d5f;
  }

  .key-indicators-page .report-hero--indicators {
    min-height: 520px;
    padding: 104px 24px 48px;
    background:
      linear-gradient(90deg, rgba(0, 45, 95, 0.96) 0%, rgba(0, 45, 95, 0.82) 48%, rgba(0, 45, 95, 0.2) 100%),
      url("assets/key-indicators-hero-bg.jpg") 62% bottom / auto 74% no-repeat,
      #002d5f;
  }

  .key-indicators-page .report-hero--indicators::before,
  .key-indicators-page .report-hero--indicators::after {
    content: none;
  }

  .key-indicators-page .report-hero--compact.report-hero--indicators .report-hero-content {
    width: min(100%, 460px);
    margin: 0;
  }

  .key-indicators-page .report-hero--compact .report-kicker {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: 12px;
  }

  .key-indicators-page .report-hero--compact .report-title {
    max-width: 430px;
    font-size: clamp(34px, 8.5vw, 50px);
    line-height: 0.98;
  }

  .key-indicators-page .indicator-page {
    padding: 56px 24px 72px;
  }

  .key-indicators-page .page-switcher {
    position: static;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin: 0;
    padding: 18px 24px 0;
    background: #003665;
    justify-content: flex-end;
    flex-direction: row;
    gap: 10px;
    transform: none;
    z-index: 2;
  }

  .key-indicators-page .page-arrow {
    width: 46px;
    height: 46px;
    border-width: 2px;
    font-size: 27px;
  }

  .key-indicators-page .indicator-page__inner,
  .key-indicators-page .sustainability-page__inner,
  .key-indicators-page .indicator-footnotes--global {
    width: 100%;
  }

  .key-indicators-page .indicator-page h2,
  .key-indicators-page .sustainability-page h2 {
    margin-bottom: 28px;
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1.12;
  }

  .key-indicators-page .indicator-block,
  .key-indicators-page .sustainability-block {
    margin-top: 52px;
  }

  .key-indicators-page .indicator-block:first-of-type,
  .key-indicators-page .sustainability-block:first-of-type {
    margin-top: 0;
  }

  .key-indicators-page .indicator-block h3,
  .key-indicators-page .sustainability-block h3 {
    margin-bottom: 24px;
    font-size: clamp(23px, 6.4vw, 30px);
  }

  .key-indicators-page .indicator-grid,
  .key-indicators-page .indicator-grid--top,
  .key-indicators-page .indicator-grid--with-notes,
  .key-indicators-page .sustainability-grid,
  .key-indicators-page .sustainability-grid--three,
  .key-indicators-page .sustainability-grid--two,
  .key-indicators-page .sustainability-grid--social-bottom {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .key-indicators-page .metric-card h4,
  .key-indicators-page .sustainability-card h4,
  .key-indicators-page .donut-card h4 {
    min-height: 0;
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.22;
  }

  .key-indicators-page .metric-chart--inline-svg {
    width: 100%;
    max-width: 520px;
  }

  .key-indicators-page .metric-svg__row--demo-animate.is-ready:not(.is-animated) .metric-svg__bar {
    transform: none;
  }

  .key-indicators-page .metric-svg__row--demo-animate.is-ready:not(.is-animated) .metric-svg__connector,
  .key-indicators-page .metric-svg__row--demo-animate.is-ready:not(.is-animated) .metric-svg__value-pill,
  .key-indicators-page .metric-svg__row--demo-animate.is-ready:not(.is-animated) .metric-svg__dot,
  .key-indicators-page .metric-svg__row--demo-animate.is-ready:not(.is-animated) .metric-svg__value-text {
    opacity: 1;
  }

  .key-indicators-page .indicator-photo img {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .key-indicators-page .service-strip {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 42px;
    padding: 32px 24px;
    border-radius: 0 30px 0 30px;
  }

  .key-indicators-page .service-strip h3 {
    font-size: 24px;
  }

  .key-indicators-page .service-strip__list {
    grid-template-columns: 1fr;
  }

  .key-indicators-page .service-strip__list li,
  .key-indicators-page .service-strip__list li:nth-child(-n + 5),
  .key-indicators-page .service-strip__list li:not(:nth-child(5n + 1)) {
    min-height: auto;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .key-indicators-page .service-strip__list li:first-child {
    border-top: 0;
  }

  .key-indicators-page .service-strip__corner--top {
    top: 22px;
    right: 22px;
  }

  .key-indicators-page .service-strip__corner--bottom {
    right: 22px;
    bottom: 22px;
  }

  .key-indicators-page .sustainability-page {
    padding: 58px 24px 78px;
  }

  .key-indicators-page .sustainability-page::after {
    top: -12px;
    right: -48vw;
    width: 112vw;
    height: 58vw;
    opacity: 0.48;
  }

  .key-indicators-page .sustainability-row {
    grid-template-columns: 78px minmax(86px, 1fr) auto;
    gap: 12px;
  }

  .key-indicators-page .sustainability-year {
    min-width: 70px;
    padding-left: 10px;
    font-size: 16px;
  }

  .key-indicators-page .sustainability-row.is-current .sustainability-year {
    width: 70px;
    min-width: 70px;
    padding: 5px 18px 5px 10px;
  }

  .key-indicators-page .sustainability-value {
    width: 78px;
    min-width: 78px;
    min-height: 25px;
    padding: 2px 8px 3px;
    font-size: 16px;
  }

  .key-indicators-page .donut-card__body {
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 22px;
  }

  .key-indicators-page .indicator-footnotes-section {
    padding: 36px 24px 86px;
  }

  .key-indicators-page .indicator-footnotes--global {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .key-indicators-page .indicator-footnotes--global p {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .key-indicators-page .report-hero--indicators {
    min-height: 470px;
    padding: 90px 20px 40px;
    background:
      linear-gradient(90deg, rgba(0, 45, 95, 0.98) 0%, rgba(0, 45, 95, 0.86) 56%, rgba(0, 45, 95, 0.34) 100%),
      url("assets/key-indicators-hero-bg.jpg") 58% bottom / auto 62% no-repeat,
      #002d5f;
  }

  .key-indicators-page .report-hero--compact.report-hero--indicators .report-hero-content {
    max-width: calc(100vw - 40px);
  }

  .key-indicators-page .report-hero--compact .report-title {
    font-size: clamp(28px, 10.5vw, 40px);
  }

  .key-indicators-page .indicator-page,
  .key-indicators-page .sustainability-page {
    padding-inline: 20px;
  }

  .key-indicators-page .page-switcher {
    width: 100%;
    margin: 0;
    padding: 16px 20px 0;
    gap: 8px;
  }

  .key-indicators-page .page-arrow {
    width: 38px;
    height: 38px;
    font-size: 23px;
  }

  .key-indicators-page .indicator-grid,
  .key-indicators-page .indicator-grid--top,
  .key-indicators-page .indicator-grid--with-notes,
  .key-indicators-page .sustainability-grid,
  .key-indicators-page .sustainability-grid--three,
  .key-indicators-page .sustainability-grid--two,
  .key-indicators-page .sustainability-grid--social-bottom {
    gap: 34px;
  }

  .key-indicators-page .metric-chart--inline-svg {
    width: min(100%, 320px);
    max-width: 100%;
  }

  .key-indicators-page .service-strip {
    padding: 28px 20px;
  }

  .key-indicators-page .service-strip__list li {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 13px;
    font-size: 12px;
  }

  .key-indicators-page .service-strip__list img {
    width: 25px;
    height: 25px;
  }

  .key-indicators-page .sustainability-row {
    grid-template-columns: 68px minmax(68px, 1fr) auto;
    gap: 8px;
  }

  .key-indicators-page .sustainability-year {
    min-width: 62px;
    padding-left: 8px;
    font-size: 14px;
  }

  .key-indicators-page .sustainability-row.is-current .sustainability-year {
    width: 62px;
    min-width: 62px;
    padding: 5px 16px 5px 8px;
  }

  .key-indicators-page .sustainability-track::after {
    right: -10px;
  }

  .key-indicators-page .sustainability-value {
    width: 64px;
    min-width: 64px;
    font-size: 14px;
  }

  .key-indicators-page .donut-card__body {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .key-indicators-page .donut-chart {
    width: 132px;
  }

  .key-indicators-page .indicator-footnotes-section {
    padding-inline: 20px;
  }
}

@media (max-width: 420px) {
  .key-indicators-page .indicator-page h2,
  .key-indicators-page .sustainability-page h2 {
    font-size: 25px;
  }

  .key-indicators-page .metric-card h4,
  .key-indicators-page .sustainability-card h4,
  .key-indicators-page .donut-card h4 {
    font-size: 15px;
  }

  .key-indicators-page .sustainability-row {
    grid-template-columns: 56px minmax(58px, 1fr) auto;
    gap: 6px;
  }

  .key-indicators-page .sustainability-row.is-current .sustainability-year {
    width: 56px;
    min-width: 56px;
  }

  .key-indicators-page .sustainability-value {
    width: 56px;
    min-width: 56px;
    padding-inline: 7px;
    font-size: 13px;
  }
}

@media (max-width: 1200px) {
  .section-hero--strategy .section-hero__section-label,
  .section-hero--governance .section-hero__section-label,
  .section-hero--social .section-hero__section-label,
  .section-hero--safety .section-hero__section-label {
    font-size: clamp(14px, 1.2vw, 16px);
  }

  .section-hero--strategy .section-hero__current-title,
  .section-hero--governance .section-hero__current-title,
  .section-hero--social .section-hero__current-title,
  .section-hero--safety .section-hero__current-title {
    font-size: clamp(38px, 4.4vw, 56px);
  }
}

@media (max-width: 720px) {
  .section-hero--strategy .section-hero__section-label,
  .section-hero--governance .section-hero__section-label,
  .section-hero--social .section-hero__section-label,
  .section-hero--safety .section-hero__section-label {
    grid-row: 1;
    max-width: calc(100% - 42px);
    font-size: 13px;
  }

  .section-hero--strategy .section-hero__current-title,
  .section-hero--governance .section-hero__current-title,
  .section-hero--social .section-hero__current-title,
  .section-hero--safety .section-hero__current-title {
    grid-row: 2;
    max-width: 100%;
    font-size: clamp(32px, 10vw, 44px);
  }

  .section-hero--strategy .section-hero__tabs,
  .section-hero--governance .section-hero__tabs,
  .section-hero--social .section-hero__tabs,
  .section-hero--safety .section-hero__tabs {
    grid-row: 3;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-flow: row;
  }
}

/* Custom key events spreads */
.events-page {
  min-height: 100vh;
  padding-top: var(--topbar-height);
  background: #f6f3ee;
  color: #51463d;
}

.events-page > section {
  scroll-margin-top: var(--topbar-height);
}

.events-screen-markers {
  --events-marker-color: var(--navy);
  --events-marker-fill: var(--gold);
  position: fixed;
  z-index: 46;
  top: min(66vh, calc(100vh - 160px));
  right: clamp(112px, 8.2vw, 156px);
  display: grid;
  gap: 14px;
  transform: translateY(-50%);
}

.events-screen-markers--on-dark {
  --events-marker-color: var(--white);
  --events-marker-fill: #ffcc25;
}

.events-screen-marker {
  position: relative;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  outline-offset: 4px;
}

.events-screen-marker::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 2px solid var(--events-marker-color);
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 10px 22px rgba(2, 45, 92, 0.14);
  transition: width 180ms ease, height 180ms ease, background 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.events-screen-marker::after {
  content: attr(aria-label);
  position: absolute;
  top: 50%;
  right: 34px;
  max-width: 220px;
  padding: 7px 10px;
  border-radius: 6px;
  color: var(--white);
  background: rgba(0, 45, 92, 0.92);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.18;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(8px, -50%, 0);
  transition: opacity 160ms ease, transform 160ms ease;
  white-space: nowrap;
}

.events-screen-marker:hover::after,
.events-screen-marker:focus-visible::after {
  opacity: 1;
  transform: translate3d(0, -50%, 0);
}

.events-screen-marker.is-active::before {
  width: 16px;
  height: 16px;
  border-color: var(--events-marker-fill);
  background: var(--events-marker-fill);
}

@media (prefers-reduced-motion: reduce) {
  .events-screen-marker::before,
  .events-screen-marker::after {
    transition: none;
  }
}

.events-anniversary {
  position: relative;
  min-height: calc(100vh - var(--topbar-height));
  padding: clamp(72px, 6.2vw, 112px) 0;
  overflow: hidden;
  background: #f6f3ee;
}

.events-anniversary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/key-events-anniversary-bg.svg") center / cover no-repeat;
  pointer-events: none;
}

.events-anniversary__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  width: min(1500px, calc(100vw - 132px));
  margin: 0 auto;
}

.events-anniversary__content {
  max-width: none;
  min-width: 0;
}

.events-anniversary__logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(36px, 6vw, 96px);
  width: 100%;
  margin-bottom: clamp(48px, 4.6vw, 74px);
}

.events-anniversary__logo {
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

.events-anniversary__logo--combined {
  width: clamp(330px, 25.5vw, 480px);
  max-width: 100%;
  height: auto;
}

.events-anniversary__logo--anpz80 {
  width: clamp(92px, 6.6vw, 126px);
  max-width: 18%;
  height: auto;
  margin-left: auto;
}

.events-anniversary__logo--shymkent40 {
  width: clamp(148px, 11vw, 210px);
  max-width: 24%;
  height: auto;
  margin-left: auto;
}

.events-anniversary__logo--vega120 {
  width: clamp(164px, 12vw, 230px);
  max-width: 26%;
  height: auto;
  margin-left: auto;
}

.events-anniversary__title {
  margin: 0 0 clamp(38px, 4.2vw, 64px);
  max-width: min(1180px, 100%);
  color: #7f6f61;
  font-size: clamp(34px, 2.8vw, 52px);
  font-weight: 500;
  line-height: 1.16;
  text-transform: uppercase;
}

.events-anniversary__title-lead {
  display: block;
  color: #a37b51;
  font-weight: 800;
}

.events-anniversary__title::first-line {
  color: #a37b51;
  font-weight: 800;
}

.events-anniversary__title span {
  display: block;
}

html[lang="kk"] .events-anniversary__title {
  color: #7f6f61;
  font-weight: 300;
}

html[lang="kk"] .events-anniversary__title::first-line,
html[lang="kk"] .events-anniversary__title-lead {
  color: #7f6f61;
  font-weight: 300;
}

html[lang="kk"] .events-anniversary__title > span:not(.events-anniversary__title-lead) {
  color: #a37b51;
  font-weight: 800;
}

.events-anniversary--title-animate .events-anniversary__title-lead,
.events-anniversary--title-animate .events-anniversary__title > span:not(.events-anniversary__title-lead) {
  opacity: 0;
  will-change: opacity, transform;
}

.events-anniversary--title-animate .events-anniversary__title-lead {
  transform: translate3d(0, 18px, 0);
}

.events-anniversary--title-animate .events-anniversary__title > span:not(.events-anniversary__title-lead) {
  transform: translate3d(0, 22px, 0);
}

.events-anniversary--title-animate.is-title-animated .events-anniversary__title-lead,
.events-anniversary--title-animate.is-title-animated .events-anniversary__title > span:not(.events-anniversary__title-lead) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-property: opacity, transform;
  transition-duration: 820ms;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.events-anniversary--title-animate.is-title-animated .events-anniversary__title > span:not(.events-anniversary__title-lead) {
  transition-delay: 160ms;
}

@media (prefers-reduced-motion: reduce) {
  .events-anniversary--title-animate .events-anniversary__title-lead,
  .events-anniversary--title-animate .events-anniversary__title > span:not(.events-anniversary__title-lead),
  .events-anniversary--title-animate.is-title-animated .events-anniversary__title-lead,
  .events-anniversary--title-animate.is-title-animated .events-anniversary__title > span:not(.events-anniversary__title-lead) {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

.events-anniversary__main {
  display: grid;
  grid-template-columns: minmax(660px, 0.95fr) minmax(520px, 0.78fr);
  gap: clamp(44px, 5vw, 82px);
  align-items: start;
}

.events-anniversary__copy {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(28px, 3vw, 46px);
  align-items: start;
}

.events-anniversary__lead,
.events-anniversary__body p {
  margin: 0;
}

.events-anniversary__lead {
  color: #a2774f;
  font-size: clamp(13px, 0.82vw, 15px);
  font-weight: 800;
  line-height: 1.46;
  text-transform: uppercase;
}

.events-anniversary__body {
  display: grid;
  gap: 18px;
  color: #62564c;
  font-size: clamp(13px, 0.82vw, 15px);
  font-weight: 500;
  line-height: 1.54;
}

.events-anniversary__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(248px, 1fr);
  gap: 12px;
  align-self: stretch;
}

.events-anniversary__photo {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #e9e3da;
}

.events-anniversary__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.events-anniversary__photo:nth-child(-n + 3) img {
  filter: grayscale(1);
}

.events-work {
  --events-work-left-column: minmax(500px, 0.82fr);
  --events-work-right-column: minmax(620px, 1.18fr);
  --events-work-column-gap: clamp(34px, 4.4vw, 72px);
  position: relative;
  min-height: calc(100vh - var(--topbar-height));
  padding: clamp(72px, 6.2vw, 112px) 0;
  overflow: hidden;
  background: #06356f;
  color: #ffffff;
}

.events-work__inner {
  width: min(1500px, calc(100vw - 132px));
  margin: 0 auto;
}

.events-work__intro {
  display: grid;
  grid-template-columns: var(--events-work-left-column) var(--events-work-right-column);
  column-gap: var(--events-work-column-gap);
  align-items: stretch;
  margin-bottom: clamp(42px, 4.6vw, 74px);
}

.events-work__intro-text {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(6px, 1vw, 18px);
}

.events-work h2 {
  margin: 0 0 clamp(24px, 2.4vw, 38px);
  color: #00aeef;
  font-size: clamp(48px, 4.25vw, 82px);
  font-weight: 900;
  line-height: 0.94;
  text-transform: uppercase;
}

.events-work h2 span {
  display: block;
}

.events-work__intro-text p {
  max-width: 620px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(20px, 1.45vw, 28px);
  font-weight: 800;
  line-height: 1.18;
}

.events-work__hero-photo,
.events-work__photo {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.events-work__hero-photo img,
.events-work__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.events-work__hero-photo {
  aspect-ratio: 2072 / 871;
  align-self: start;
  justify-self: center;
  width: 94%;
  min-height: 0;
}

.events-work__content {
  display: grid;
  grid-template-columns: var(--events-work-left-column) var(--events-work-right-column);
  gap: clamp(24px, 2.8vw, 46px) var(--events-work-column-gap);
  align-items: start;
}

.events-work__text {
  display: grid;
  min-width: 0;
  gap: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(15px, 0.94vw, 18px);
  font-weight: 500;
  line-height: 1.5;
  overflow-wrap: break-word;
}

.events-work__text p {
  margin: 0;
}

.events-work__metrics {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
}

.events-work__metric {
  display: grid;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(0, 174, 239, 0.48);
}

.events-work__metric > strong {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  column-gap: 0.18em;
  row-gap: 0.05em;
  color: #ffcc25;
  font-size: clamp(24px, 1.9vw, 36px);
  font-weight: 900;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  text-transform: uppercase;
}

.events-work__metric > strong > span {
  color: inherit;
  font: inherit;
  line-height: inherit;
  text-transform: inherit;
}

.events-work__metric > span {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(13px, 0.82vw, 15px);
  font-weight: 700;
  line-height: 1.34;
}

.events-work__metric > span strong {
  color: #fff;
  font-weight: 900;
  text-shadow: 0 0 0.01px currentColor;
}

.events-work__gallery {
  grid-column: 1 / -1;
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(10px, 1.8vw, 28px);
}

.events-work__photo {
  aspect-ratio: 1.72;
  min-height: 0;
}

.events-work__photo--wide {
  aspect-ratio: 1.72;
  grid-row: span 1;
}

.events-esg {
  position: relative;
  min-height: calc(100vh - var(--topbar-height));
  padding: clamp(72px, 6.2vw, 112px) 0;
  overflow: hidden;
  background: #f6fafc;
  color: #3a3a3a;
}

.events-esg__inner {
  width: min(1500px, calc(100vw - 132px));
  margin: 0 auto;
}

.events-esg__header {
  margin-bottom: clamp(34px, 4vw, 64px);
}

.events-esg h2 {
  margin: 0;
  color: #00aeef;
  font-size: clamp(82px, 10vw, 172px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.events-esg__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 2.6vw, 46px);
  align-items: start;
}

.events-esg__column {
  display: grid;
  min-width: 0;
  gap: clamp(24px, 2vw, 34px);
  align-content: start;
}

.events-esg__column-head {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 0;
  padding-bottom: 0;
  white-space: nowrap;
}

.events-esg__column-head::after {
  content: none;
  display: none;
}

.events-esg__column-head span {
  color: currentColor;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.1;
}

.events-esg__column-head p {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: none;
}

.events-esg__column-head p::before {
  content: "–";
  margin: 0 0.32em;
}

.events-esg__column--e,
.events-esg__column--s,
.events-esg__column--g {
  color: #00aeef;
}

.events-esg__item h3 {
  margin: 0 0 9px;
  color: #20262c;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.32;
}

.events-esg__item p {
  margin: 0;
  color: #3a3a3a;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.48;
}

.events-esg__photo {
  min-width: 0;
  min-height: clamp(170px, 13vw, 240px);
  margin: 0;
  overflow: hidden;
  background: #e9e3da;
}

.events-esg__photo--tall {
  min-height: clamp(260px, 20vw, 380px);
}

.events-esg__photo--wide {
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.events-esg__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.events-esg--animate .events-esg__column-head span,
.events-esg--animate .events-esg__column-head p,
.events-esg--animate .events-esg__column-head::after,
.events-esg--animate .events-esg__column > .events-esg__item,
.events-esg--animate .events-esg__column > .events-esg__photo {
  opacity: 0;
  will-change: opacity, transform;
}

.events-esg--animate .events-esg__column-head span {
  transform: translate3d(-22px, 0, 0);
}

.events-esg--animate .events-esg__column-head p {
  transform: translate3d(-18px, 0, 0);
}

.events-esg--animate .events-esg__column-head::after {
  opacity: 1;
  transform: scaleX(0);
  will-change: transform;
}

.events-esg--animate .events-esg__column > .events-esg__item,
.events-esg--animate .events-esg__column > .events-esg__photo {
  transform: translate3d(0, 14px, 0);
}

.events-esg--animate.is-animated .events-esg__column-head span,
.events-esg--animate.is-animated .events-esg__column-head p,
.events-esg--animate.is-animated .events-esg__column-head::after,
.events-esg--animate.is-animated .events-esg__column > .events-esg__item,
.events-esg--animate.is-animated .events-esg__column > .events-esg__photo {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-property: opacity, transform;
  transition-duration: 720ms;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.events-esg--animate.is-animated .events-esg__column-head span {
  transition-delay: calc(var(--events-esg-index, 0) * 360ms);
}

.events-esg--animate.is-animated .events-esg__column-head p {
  transition-delay: calc((var(--events-esg-index, 0) * 360ms) + 120ms);
}

.events-esg--animate.is-animated .events-esg__column-head::after {
  transform: scaleX(1);
  transition-delay: calc((var(--events-esg-index, 0) * 360ms) + 180ms);
  transition-duration: 640ms;
}

.events-esg--animate.is-animated .events-esg__column > .events-esg__item,
.events-esg--animate.is-animated .events-esg__column > .events-esg__photo {
  transition-delay: calc((var(--events-esg-index, 0) * 360ms) + 300ms);
}

@media (prefers-reduced-motion: reduce) {
  .events-esg--animate .events-esg__column-head span,
  .events-esg--animate .events-esg__column-head p,
  .events-esg--animate .events-esg__column-head::after,
  .events-esg--animate .events-esg__column > .events-esg__item,
  .events-esg--animate .events-esg__column > .events-esg__photo,
  .events-esg--animate.is-animated .events-esg__column-head span,
  .events-esg--animate.is-animated .events-esg__column-head p,
  .events-esg--animate.is-animated .events-esg__column-head::after,
  .events-esg--animate.is-animated .events-esg__column > .events-esg__item,
  .events-esg--animate.is-animated .events-esg__column > .events-esg__photo {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

@media (min-width: 1600px) and (min-height: 1000px) {
  .events-anniversary,
  .events-work,
  .events-esg {
    box-sizing: border-box;
    min-height: calc(100vh - var(--topbar-height));
    padding: clamp(24px, 2.1vh, 32px) 0;
  }

  .events-work {
    padding: 12px 0;
  }

  .events-work__inner {
    width: min(1548px, calc(100vw - 132px));
  }

  .events-anniversary__logos {
    margin-bottom: clamp(30px, 2.6vh, 42px);
  }

  .events-anniversary__title {
    margin-bottom: clamp(92px, 8vh, 112px);
    font-size: clamp(42px, 3.15vw, 60px);
  }

  .events-anniversary__gallery {
    grid-auto-rows: clamp(274px, 22vh, 318px);
  }

  .events-work__intro {
    margin-bottom: clamp(42px, 3.8vh, 58px);
  }

  .events-work h2 {
    margin-bottom: clamp(18px, 1.8vh, 26px);
  }

  .events-work__hero-photo {
    margin-top: clamp(20px, 1.8vh, 28px);
    width: 92%;
    min-height: 0;
  }

  .events-work__content {
    gap: clamp(28px, 2.8vw, 52px) var(--events-work-column-gap);
  }

  .events-work__gallery {
    margin-top: clamp(28px, 2.6vh, 40px);
  }

  .events-work__photo {
    min-height: 0;
  }

  .events-esg__header {
    margin-top: clamp(42px, 4vh, 58px);
    margin-bottom: clamp(44px, 4vh, 58px);
  }

  .events-esg h2 {
    font-size: clamp(82px, 7.2vh, 112px);
  }

  .events-esg__columns {
    gap: clamp(24px, 2.3vw, 38px);
  }

  .events-esg__column {
    gap: clamp(20px, 1.7vh, 24px);
  }

  .events-esg__column-head {
    gap: 0;
    padding-bottom: 0;
  }

  .events-esg__column-head span {
    font-size: 28px;
  }

  .events-esg__column-head p {
    font-size: 28px;
  }

  .events-esg__photo {
    min-height: 0;
    height: clamp(190px, 16vh, 230px);
  }

  .events-esg__photo--wide {
    aspect-ratio: auto;
  }
}

@media (min-width: 1600px) and (max-height: 1300px) {
  .events-anniversary,
  .events-work,
  .events-esg {
    height: calc(100vh - var(--topbar-height));
    min-height: calc(100vh - var(--topbar-height));
    padding: 0;
  }

  .events-esg {
    height: auto;
    padding-bottom: 32px;
  }

  .events-anniversary__logos {
    margin-bottom: 18px;
  }

  .events-anniversary__title {
    margin-bottom: clamp(86px, 7.8vh, 104px);
    font-size: clamp(40px, 3vw, 58px);
    line-height: 1.12;
  }

  .events-anniversary__main {
    gap: clamp(34px, 3.8vw, 60px);
  }

  .events-anniversary__copy {
    gap: clamp(20px, 2vw, 30px);
  }

  .events-anniversary__lead,
  .events-anniversary__body {
    font-size: 15px;
    line-height: 1.4;
  }

  .events-anniversary__body {
    gap: 12px;
  }

  .events-anniversary__gallery {
    grid-auto-rows: clamp(260px, 20.5vh, 288px);
  }

  .events-work {
    --events-work-left-column: minmax(420px, 0.74fr);
    --events-work-right-column: minmax(560px, 1fr);
    --events-work-column-gap: clamp(28px, 2.6vw, 40px);
    padding: 0;
  }

  .events-work__intro {
    margin-bottom: 30px;
  }

  .events-work h2 {
    margin-bottom: 14px;
    font-size: clamp(44px, 3.4vw, 64px);
  }

  .events-work__intro-text p {
    font-size: clamp(18px, 1.15vw, 22px);
    line-height: 1.14;
  }

  .events-work__hero-photo {
    aspect-ratio: 2072 / 871;
    height: auto;
    margin-top: clamp(22px, 2vh, 28px);
    width: 92%;
    min-height: 0;
  }

  .events-work__content {
    gap: 22px var(--events-work-column-gap);
  }

  .events-work__text {
    gap: 12px;
    font-size: 16px;
    line-height: 1.36;
  }

  .events-work__metrics {
    gap: 12px 16px;
  }

  .events-work__metric {
    gap: 6px;
    padding-bottom: 10px;
  }

  .events-work__metric > strong {
    font-size: clamp(22px, 1.55vw, 30px);
  }

  .events-work__metric > span {
    font-size: 13px;
    line-height: 1.26;
  }

  .events-work__gallery {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 22px;
  }

  .events-work__photo {
    aspect-ratio: 1.72;
    height: auto;
    min-height: 0;
  }

  .events-work__photo--wide {
    aspect-ratio: 1.72;
  }

  .events-esg__header {
    margin-top: clamp(40px, 3.8vh, 54px);
    margin-bottom: 30px;
  }

  .events-esg h2 {
    font-size: 78px;
  }

  .events-esg__columns {
    gap: 28px;
  }

  .events-esg__column {
    gap: 20px;
  }

  .events-esg__column-head {
    gap: 0;
    padding-bottom: 0;
  }

  .events-esg__column-head span {
    font-size: 28px;
  }

  .events-esg__column-head p {
    font-size: 28px;
  }

  .events-esg__item h3 {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.3;
  }

  .events-esg__item p {
    font-size: 15px;
    line-height: 1.44;
  }

  .events-esg__photo {
    height: 142px;
  }
}

@media (min-width: 1600px) and (max-height: 1100px) {
  .events-anniversary__title {
    margin-bottom: clamp(52px, 5.2vh, 64px);
    font-size: clamp(40px, 2.65vw, 52px);
  }

  .events-anniversary__main {
    gap: clamp(30px, 3.2vw, 48px);
  }

  .events-anniversary__copy {
    gap: clamp(18px, 1.6vw, 24px);
  }

  .events-anniversary__lead,
  .events-anniversary__body {
    font-size: 14px;
    line-height: 1.36;
  }

  .events-anniversary__body {
    gap: 10px;
  }

  .events-anniversary__gallery {
    grid-auto-rows: clamp(226px, 20vh, 244px);
  }

  .events-work__inner {
    width: min(1320px, calc(100vw - 120px));
  }

  .events-work {
    --events-work-left-column: minmax(390px, 0.76fr);
    --events-work-right-column: minmax(520px, 1fr);
    --events-work-column-gap: 30px;
  }

  .events-work__intro {
    margin-bottom: 20px;
    transform: translateY(-22px);
  }

  .events-work__intro-text {
    justify-content: flex-end;
    padding-bottom: 0;
  }

  .events-work__hero-photo {
    margin-top: 84px;
    width: 88%;
  }

  .events-work h2 {
    margin-bottom: 10px;
    font-size: 50px;
  }

  .events-work__intro-text p {
    font-size: 17px;
    line-height: 1.12;
  }

  .events-work__content {
    gap: 14px var(--events-work-column-gap);
  }

  .events-work__gallery {
    margin-top: 12px;
  }

  .events-work__text {
    gap: 9px;
    font-size: 14px;
    line-height: 1.3;
  }

  .events-work__metrics {
    gap: 9px 14px;
  }

  .events-work__metric {
    gap: 5px;
    padding-bottom: 8px;
  }

  .events-work__metric > strong {
    font-size: clamp(21px, 1.42vw, 27px);
  }

  .events-work__metric > span {
    font-size: 12px;
    line-height: 1.22;
  }

  .events-esg__header {
    margin-top: 36px;
    margin-bottom: 44px;
  }

  .events-esg h2 {
    font-size: 70px;
  }

  .events-esg__columns {
    gap: 22px;
  }

  .events-esg__column {
    gap: 18px;
  }

  .events-esg__column-head {
    gap: 0;
    padding-bottom: 0;
  }

  .events-esg__column-head span {
    font-size: 28px;
  }

  .events-esg__column-head p {
    font-size: 28px;
  }

  .events-esg__item h3 {
    margin-bottom: 7px;
    font-size: 15px;
    line-height: 1.28;
  }

  .events-esg__item p {
    font-size: 15px;
    line-height: 1.4;
  }

  .events-esg__photo {
    height: 124px;
  }
}

@media (max-width: 1280px) {
  .events-anniversary__inner,
  .events-anniversary__main,
  .events-work__intro,
  .events-work__content,
  .events-esg__columns {
    grid-template-columns: 1fr;
  }

  .events-anniversary__inner,
  .events-work__inner,
  .events-esg__inner {
    width: min(1040px, calc(100vw - 72px));
  }

  .events-anniversary__content {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .events-screen-markers {
    display: none;
  }

  .events-anniversary,
  .events-work,
  .events-esg {
    padding: 44px 0;
  }

  .events-anniversary__inner,
  .events-work__inner,
  .events-esg__inner {
    width: calc(100% - 32px);
    max-width: 640px;
  }

  .events-anniversary__copy,
  .events-anniversary__gallery,
  .events-work__metrics,
  .events-work__gallery {
    grid-template-columns: 1fr;
  }

  .events-anniversary__logos {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 24px;
    margin-bottom: 36px;
  }

  .events-anniversary__logo--anpz80 {
    max-width: 30%;
    margin-left: 0;
  }

  .events-anniversary__logo--shymkent40 {
    max-width: 38%;
    margin-left: 0;
  }

  .events-anniversary__logo--vega120 {
    max-width: 42%;
    margin-left: 0;
  }

  .events-anniversary__gallery {
    grid-auto-rows: 220px;
  }

  .events-work h2 {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: clamp(34px, 10.4vw, 48px);
    line-height: 0.98;
  }

  .events-work__intro-text p {
    max-width: 100%;
    overflow-wrap: break-word;
    font-size: 18px;
    line-height: 1.24;
  }

  .events-esg__photo,
  .events-esg__photo--tall {
    min-height: 220px;
  }

  .events-esg__photo--wide {
    min-height: 0;
  }

  /* The ESG section can be taller than the viewport, so an intersection-ratio
     animation may never start on mobile Safari. Keep all content readable. */
  .events-esg--animate .events-esg__column-head span,
  .events-esg--animate .events-esg__column-head p,
  .events-esg--animate .events-esg__column > .events-esg__item,
  .events-esg--animate .events-esg__column > .events-esg__photo {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

/* Mobile stability fixes: shareholder marks and the strategic directions map. */
.strategy-results-page .strategy-directions {
  overflow: visible;
}

.strategy-directions__map-scroll {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 12px;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable;
}

@media (max-width: 900px) {
  .strategy-results-page .strategy-directions__map {
    width: 1120px;
    min-width: 1120px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.52fr);
  }

  .strategy-results-page .strategy-directions__map > * {
    order: 0;
  }

  .strategy-results-page .strategy-directions__value-goals {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    min-height: 184px;
    padding: 0 0 66px;
  }

  .strategy-results-page .strategy-direction-goal,
  .strategy-results-page .strategy-direction-goal--transition {
    min-height: 118px;
    padding: 18px 22px 16px;
  }

  .strategy-results-page .strategy-direction-goal::after,
  .strategy-results-page .strategy-direction-connector {
    display: block;
  }

  .strategy-results-page .strategy-directions__value-goals .strategy-direction-goal::after {
    display: none;
  }

  .strategy-results-page .strategy-direction-tasks {
    min-height: 610px;
    margin-top: 0;
  }

  .strategy-results-page .strategy-directions__all ul {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .shareholder-card {
    grid-template-rows: 76px auto auto;
    row-gap: 12px;
  }

  .shareholder-logo {
    height: 76px;
    overflow: hidden;
  }

  .shareholder-logo img {
    width: auto;
    max-width: 100%;
    max-height: 76px;
  }

  .shareholder-logo--emblem img {
    width: 76px;
    height: 76px;
  }

  .shareholder-card p {
    min-height: 0;
    margin: 0;
  }
}

/* Strategy results subsection heading overrides */
.strategy-results-page .strategy-results-section__header h2#strategy-directions-title,
.strategy-results-page .strategy-results-section__header h2#strategy-goals-title,
.strategy-results-page .strategy-results-section__header h2#strategy-kpi-title,
.strategy-results-page .strategy-results-section__header h2#strategy-performance-title,

.strategy-results-page .strategy-results-section__header h2#strategy-status-title {
  color: #111;
  text-transform: none;
}

@media (max-width: 900px) {
  .strategy-results-page .strategy-directions {
    max-width: 100%;
    overflow: visible;
    padding-bottom: 0;
  }

  .strategy-results-page .strategy-directions__map {
    width: 1120px;
    max-width: none;
    min-width: 1120px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.52fr);
    gap: 0 18px;
  }

  .strategy-results-page .strategy-directions__map > * {
    order: 0;
  }

  .strategy-results-page .strategy-directions__group--value {
    grid-column: 1 / span 3;
  }

  .strategy-results-page .strategy-directions__group--transition {
    grid-column: auto;
  }

  .strategy-results-page .strategy-directions__goals-label {
    grid-column: 1 / -1;
  }

  .strategy-results-page .strategy-directions__value-goals {
    grid-column: 1 / span 3;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    min-height: 184px;
    padding: 0 0 66px;
  }

  .strategy-results-page .strategy-direction-goal,
  .strategy-results-page .strategy-direction-goal--transition {
    min-height: 118px;
    padding: 18px 22px 16px;
  }

  .strategy-results-page .strategy-direction-goal {
    border-color: var(--strategy-gold);
    background: var(--strategy-gold-soft);
  }

  .strategy-results-page .strategy-direction-goal--transition {
    grid-column: auto;
    border-color: var(--strategy-cyan);
    background: var(--strategy-cyan-soft);
  }

  .strategy-results-page .strategy-direction-goal::after,
  .strategy-results-page .strategy-direction-connector {
    display: block;
  }

  .strategy-results-page .strategy-directions__value-goals .strategy-direction-goal::after {
    display: none;
  }

  .strategy-results-page .strategy-directions__tasks-label--value {
    grid-column: 1 / span 3;
  }

  .strategy-results-page .strategy-direction-tasks {
    min-height: 610px;
    margin-top: 0;
  }

  .strategy-results-page .strategy-directions__all {
    grid-column: 1 / -1;
  }

  .strategy-results-page .strategy-directions__all ul {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .strategy-results-page .strategy-table-wrap {
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .strategy-results-page .strategy-wide-table {
    min-width: 1040px;
  }
}

.strategy-management-content .strategy-management-documents__lead.strategy-management-documents__lead--strong {
  font-weight: 800;
}

/* Corporate governance system */
.corporate-governance-page,
.corporate-governance-content {
  --corporate-blue: #3b5582;
  --corporate-cyan: #00aeef;
  --corporate-magenta: #b369aa;
  --corporate-text: #3a3a3a;
  --corporate-heading: #202832;
  --corporate-line: #b6c5d5;
  --corporate-vline: #9aacbf;
}

.corporate-governance-content {
  padding: clamp(78px, 7vw, 118px) 0 clamp(92px, 8vw, 140px);
  background: #f6fafc;
}

.corporate-governance-content__inner {
  width: min(1500px, calc(100vw - 132px));
  margin: 0 auto;
}

.corporate-governance-header {
  margin: 0 0 clamp(44px, 5vw, 72px);
}

.corporate-governance-header h2,
.corporate-governance-section__header h3,
.corporate-governance-section h3 {
  margin: 0;
  color: var(--corporate-heading);
  font-size: clamp(34px, 3vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
}

.corporate-governance-header h2 {
  color: var(--section-governance-accent, var(--corporate-magenta));
}

.corporate-governance-section h3 {
  font-size: clamp(28px, 2.15vw, 38px);
  color: var(--corporate-heading);
  text-transform: none;
}

.corporate-governance-gri {
  margin: 24px 0 0;
  color: var(--corporate-heading);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.52;
}

.corporate-governance-content p,
.corporate-governance-content li,
.corporate-governance-content td,
.corporate-governance-content th {
  color: var(--corporate-text);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.52;
}

.corporate-governance-content p {
  margin: 0 0 22px;
}

.corporate-governance-content .corporate-governance-gri {
  margin: 24px 0 0;
  color: var(--corporate-heading);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.52;
}

.corporate-governance-content p:last-child {
  margin-bottom: 0;
}

.corporate-governance-content strong,
.corporate-governance-content b {
  color: var(--corporate-heading);
  font-weight: 800;
}

.corporate-governance-inline-label {
  color: var(--corporate-heading);
  font-weight: 800;
}

.corporate-governance-scroll-animations .corporate-governance-content .corporate-governance-scroll-animate {
  opacity: 0;
  transform: translate3d(0, var(--corporate-governance-y, 16px), 0);
  transition:
    opacity var(--corporate-governance-duration, 760ms) cubic-bezier(0.22, 1, 0.36, 1),
    transform var(--corporate-governance-duration, 760ms) cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--corporate-governance-delay, 0ms);
  will-change: opacity, transform;
}

.corporate-governance-content--calm-scroll .corporate-governance-scroll-animate--soft-title {
  --corporate-governance-y: 22px;
  --corporate-governance-duration: 860ms;
}

.corporate-governance-content--calm-scroll .corporate-governance-scroll-animate--soft-heading {
  --corporate-governance-y: 12px;
  --corporate-governance-duration: 760ms;
}

.corporate-governance-content--calm-scroll .corporate-governance-scroll-animate--soft-rise {
  --corporate-governance-y: 18px;
  --corporate-governance-duration: 780ms;
}

.corporate-governance-content--calm-scroll .corporate-governance-scroll-animate--soft-image {
  --corporate-governance-y: 20px;
  --corporate-governance-duration: 900ms;
}

.corporate-governance-content--calm-scroll .corporate-governance-scroll-animate--soft-table {
  --corporate-governance-y: 14px;
  --corporate-governance-duration: 820ms;
}

.corporate-governance-scroll-animations .corporate-governance-content .corporate-governance-scroll-animate.is-animated {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .corporate-governance-scroll-animations .corporate-governance-content .corporate-governance-scroll-animate {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.corporate-governance-lead,
.corporate-governance-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(48px, 5vw, 86px);
  align-items: start;
}

.corporate-governance-lead {
  margin-bottom: clamp(72px, 7vw, 112px);
}

.corporate-governance-lead__text {
  min-width: 0;
}

.corporate-governance-two-column > * {
  min-width: 0;
}

.corporate-governance-flow-columns {
  column-count: 2;
  column-gap: clamp(48px, 5vw, 86px);
}

.corporate-governance-flow-columns > p {
  break-inside: avoid;
}

.corporate-governance-flow-columns .corporate-governance-list {
  display: block;
  margin-bottom: 22px;
}

.corporate-governance-flow-columns .corporate-governance-list li {
  break-inside: avoid;
}

.corporate-governance-flow-columns .corporate-governance-list li + li {
  margin-top: 14px;
}

.corporate-governance-flow-columns + p {
  margin-top: 34px;
}

.corporate-governance-section {
  margin-top: clamp(72px, 7vw, 112px);
}

.corporate-governance-section:first-of-type {
  margin-top: 0;
}

.corporate-governance-section__header {
  margin-bottom: 34px;
}

.corporate-governance-section__header .corporate-governance-gri {
  margin-top: 14px;
}

.corporate-governance-section h4 {
  margin: 0 0 18px;
  color: var(--corporate-heading);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.18;
}

.corporate-governance-section .corporate-governance-subheading--after-note {
  margin-top: 26px;
  margin-bottom: 18px;
}

.corporate-governance-conflict-disclosure {
  margin-top: clamp(34px, 4vw, 56px);
}

.corporate-governance-conflict-disclosure h4 {
  margin-bottom: 18px;
}

.corporate-governance-conflict-disclosure__right > p {
  margin-top: 22px;
}

.corporate-governance-photo {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #dfeaf1;
  box-shadow: 0 18px 38px rgba(0, 35, 70, 0.08);
}

.corporate-governance-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.corporate-governance-photo--lead {
  min-height: clamp(420px, 34vw, 580px);
}

.corporate-governance-photo--wide {
  margin: clamp(72px, 7vw, 112px) 0 0;
  aspect-ratio: 1500 / 460;
}

.corporate-governance-photo--chairman {
  margin-top: 34px;
  aspect-ratio: 700 / 330;
}

.corporate-governance-photo--conflict {
  margin-top: 42px;
  aspect-ratio: 700 / 390;
}

.corporate-governance-photo--skills {
  margin-top: 34px;
  aspect-ratio: 700 / 520;
}

.corporate-governance-two-column--skills {
  align-items: start;
}

.corporate-governance-steps.corporate-governance-steps--skills {
  margin-top: 22px;
}

.corporate-governance-steps.corporate-governance-steps--skills > li + li {
  margin-top: 24px;
}

.corporate-governance-steps.corporate-governance-steps--skills .corporate-governance-list {
  margin-top: 14px;
}

.corporate-governance-steps.corporate-governance-steps--start-3 {
  counter-reset: corporate-step 2;
}

.corporate-governance-skills-final {
  margin-top: 24px;
}

.corporate-governance-two-column--media {
  align-items: stretch;
}

.corporate-governance-two-column--media .corporate-governance-photo {
  min-height: 420px;
}

.corporate-governance-two-column--stakeholder-pack {
  align-items: start;
}

.corporate-governance-stakeholder-pack__text,
.corporate-governance-stakeholder-pack__aside {
  min-width: 0;
}

.corporate-governance-stakeholder-pack__text > p:last-of-type {
  margin-bottom: clamp(34px, 3vw, 48px);
}

.corporate-governance-two-column--stakeholder-pack .corporate-governance-photo {
  min-height: 0;
}

.corporate-governance-photo--stakeholder-consultation {
  aspect-ratio: 700 / 390;
  margin-bottom: clamp(32px, 3vw, 46px);
}

.corporate-governance-list--stakeholder-pack {
  margin-bottom: 0;
}

.corporate-governance-two-column--compact {
  margin-top: 38px;
  gap: clamp(36px, 4vw, 66px);
}

.corporate-governance-two-column--communication-divider,
.corporate-governance-two-column--anti-corruption-divider {
  margin-top: clamp(48px, 5vw, 72px);
  padding-top: clamp(30px, 3vw, 44px);
  border-top: 2px solid rgba(60, 85, 129, 0.18);
}

.corporate-governance-two-column--section-gap {
  margin-top: clamp(56px, 5vw, 72px);
}

.corporate-governance-board-summary h4:not(:first-child) {
  margin-top: 30px;
}

.corporate-governance-content .corporate-governance-board-summary__lead {
  font-weight: 800;
}

.corporate-governance-list {
  display: grid;
  gap: 14px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.corporate-governance-list:last-child {
  margin-bottom: 0;
}

.corporate-governance-list--facts {
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 24px 0 42px;
}

.corporate-governance-list li {
  position: relative;
  padding-left: 36px;
}

.corporate-governance-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.43em;
  width: 17px;
  height: 17px;
  border: 3px solid var(--corporate-list-bullet, var(--corporate-magenta));
  border-radius: 50%;
  background: #f6fafc;
  box-shadow: inset 0 0 0 3px #f6fafc, inset 0 0 0 6.5px var(--corporate-list-bullet, var(--corporate-magenta));
  box-sizing: border-box;
}

.corporate-governance-list li::after {
  content: none;
  display: none;
}

.corporate-governance-sublist {
  display: grid;
  gap: 8px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.corporate-governance-list .corporate-governance-sublist li {
  padding-left: 24px;
}

.corporate-governance-list .corporate-governance-sublist li::before {
  content: "›";
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  color: var(--corporate-magenta);
  font-weight: 800;
  line-height: 1.35;
  background: transparent;
  box-shadow: none;
}

.corporate-governance-list .corporate-governance-sublist li::after {
  content: none;
}

.corporate-governance-steps {
  display: grid;
  gap: 14px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  counter-reset: corporate-step;
}

.corporate-governance-steps > li {
  position: relative;
  padding-left: 32px;
  counter-increment: corporate-step;
}

.corporate-governance-steps > li::before {
  content: counter(corporate-step) ".";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 24px;
  height: auto;
  border: 0;
  border-radius: 0;
  color: var(--corporate-heading);
  font-size: inherit;
  font-weight: 800;
  line-height: inherit;
  text-align: left;
}

.corporate-governance-steps--wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px clamp(42px, 5vw, 76px);
  margin-top: 26px;
}

.corporate-governance-steps--oversight {
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: 28px clamp(46px, 5vw, 80px);
  margin-top: 28px;
}

.corporate-governance-steps--oversight > li {
  display: block;
}

.corporate-governance-steps--oversight > li:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.corporate-governance-steps--oversight > li:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

.corporate-governance-steps--oversight > li:nth-child(3) {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.corporate-governance-steps--oversight .corporate-governance-list {
  margin-top: 16px;
}

.corporate-governance-steps--oversight .corporate-governance-list li {
  counter-increment: none;
}

.corporate-governance-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 28px 0 42px;
}

.corporate-governance-facts article {
  min-height: 148px;
  padding: 0;
  border-top: 2px solid var(--corporate-magenta);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.corporate-governance-facts strong {
  display: block;
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.16;
}

.corporate-governance-facts span {
  color: var(--corporate-text);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

.corporate-governance-table-wrap {
  margin: 36px 0 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
  background: transparent;
}

.corporate-governance-table-wrap .strategy-table-title {
  max-width: 1120px;
  padding: 0 0 28px;
  background: transparent;
  color: var(--corporate-heading);
  font-weight: 800;
}

.corporate-governance-table-wrap .strategy-table-title--regular {
  font-weight: 400;
}

.corporate-governance-table-wrap .strategy-wide-table {
  border-bottom: 3px solid var(--corporate-magenta);
}

.corporate-governance-table-wrap .strategy-wide-table th,
.corporate-governance-table-wrap .strategy-wide-table td {
  background: transparent;
  border-top-color: var(--corporate-line);
  font-size: 16px;
  line-height: 1.42;
  overflow-wrap: break-word;
}

.corporate-governance-table-wrap .strategy-wide-table th {
  color: #fff;
  background: var(--corporate-blue);
  font-size: 16px;
}

.corporate-governance-table-wrap .strategy-wide-table th:first-child {
  background: var(--corporate-magenta);
}

.corporate-governance-table-wrap .strategy-wide-table th + th,
.corporate-governance-table-wrap .strategy-wide-table td + td {
  border-left: 1px solid var(--corporate-vline);
}

.corporate-governance-board-table th:nth-child(1),
.corporate-governance-board-table td:nth-child(1) {
  width: 6%;
  text-align: center;
}

.corporate-governance-board-table th:nth-child(2) {
  width: 20%;
}

.corporate-governance-board-table th:nth-child(3) {
  width: 22%;
}

.corporate-governance-board-table th:nth-child(4) {
  width: 15%;
}

.corporate-governance-board-table td:nth-child(2) {
  color: var(--corporate-heading);
  font-weight: 800;
}

.corporate-governance-critical-table th:nth-child(1) {
  width: 28%;
}

.corporate-governance-table-wrap .corporate-governance-critical-table tbody td:first-child {
  color: var(--corporate-heading);
  font-weight: 800;
  vertical-align: middle;
}

.corporate-governance-indicators {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 96px;
  align-items: start;
  margin: 44px 0 58px;
}

.corporate-governance-board-svg {
  display: block;
  width: min(100%, 390px);
  height: auto;
  overflow: visible;
  font-family: "Montserrat", Arial, sans-serif;
}

.corporate-governance-board-svg--donut {
  justify-self: start;
  width: min(100%, 420px);
}

.corporate-governance-board-svg__heading {
  fill: var(--corporate-heading);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}

.corporate-governance-board-svg__bar {
  shape-rendering: crispEdges;
}

.corporate-governance-board-svg__bar--magenta,
.corporate-governance-board-svg__legend-dot--magenta {
  fill: #b369aa;
}

.corporate-governance-board-svg__bar--blue,
.corporate-governance-board-svg__legend-dot--blue {
  fill: #3b5582;
}

.corporate-governance-board-svg__bar--steel {
  fill: #66789f;
}

.corporate-governance-board-svg__legend-dot--cyan {
  fill: #00aeef;
}

.corporate-governance-board-svg__bar-value {
  fill: #f6fafc;
  font-size: 18px;
  font-weight: 900;
  dominant-baseline: middle;
  text-anchor: middle;
}

.corporate-governance-board-svg__bar-label,
.corporate-governance-board-svg__legend-text {
  fill: var(--corporate-text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.corporate-governance-board-svg__donut-source {
  fill-rule: nonzero;
}

.corporate-governance-board-svg__donut-slice--independent {
  fill: #b369aa;
}

.corporate-governance-board-svg__donut-slice--representatives {
  fill: #00aeef;
}

.corporate-governance-board-svg__donut-slice--executive {
  fill: #304e7c;
}

.corporate-governance-board-svg__donut-source-shadow {
  fill: #35577f;
  opacity: 0.34;
}

.corporate-governance-board-svg__donut-source-core {
  fill: #f6fafc;
}

.corporate-governance-board-svg__donut-value {
  fill: #f6fafc;
  font-size: 18px;
  font-weight: 900;
  dominant-baseline: middle;
  text-anchor: middle;
}

.corporate-governance-indicators--chart-animate .corporate-governance-board-svg__bar,
.corporate-governance-indicators--chart-animate .corporate-governance-board-svg__bar-label,
.corporate-governance-indicators--chart-animate .corporate-governance-board-svg__bar-value,
.corporate-governance-indicators--chart-animate .corporate-governance-board-svg__donut-value,
.corporate-governance-indicators--chart-animate .corporate-governance-board-svg__legend > * {
  will-change: opacity, transform;
}

.corporate-governance-indicators--chart-animate .corporate-governance-board-svg__donut-source {
  --corporate-donut-progress: 0;
  opacity: 1;
  -webkit-mask-image: conic-gradient(
    #000 0turn calc(var(--corporate-donut-progress) * 1turn),
    transparent calc(var(--corporate-donut-progress) * 1turn) 1turn
  );
  mask-image: conic-gradient(
    #000 0turn calc(var(--corporate-donut-progress) * 1turn),
    transparent calc(var(--corporate-donut-progress) * 1turn) 1turn
  );
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  will-change: mask-image;
}

.corporate-governance-indicators--chart-animate .corporate-governance-board-svg__bar {
  transform: scaleX(0);
  transform-box: fill-box;
  transform-origin: left center;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--corporate-chart-delay, 0ms);
}

.corporate-governance-indicators--chart-animate .corporate-governance-board-svg__bar-label {
  opacity: 0;
  transform: translate(-8px, 0);
  transition:
    opacity 220ms ease-out,
    transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: calc(var(--corporate-chart-delay, 0ms) + 520ms);
}

.corporate-governance-indicators--chart-animate .corporate-governance-board-svg__bar-value,
.corporate-governance-indicators--chart-animate .corporate-governance-board-svg__donut-value {
  opacity: 0;
  transform: scale(0.82);
  transform-box: fill-box;
  transform-origin: center;
  transition:
    opacity 180ms ease-out,
    transform 320ms cubic-bezier(0.2, 1.25, 0.36, 1);
}

.corporate-governance-indicators--chart-animate .corporate-governance-board-svg__bar-value {
  transition-delay: calc(var(--corporate-chart-delay, 0ms) + 520ms);
}

.corporate-governance-indicators--chart-animate .corporate-governance-board-svg__donut-value {
  transition-delay: var(--corporate-chart-delay, 720ms);
}

.corporate-governance-indicators--chart-animate .corporate-governance-board-svg__legend > * {
  opacity: 0;
  transform: translate(-6px, 0);
  transition:
    opacity 220ms ease-out,
    transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.corporate-governance-indicators--chart-animate .corporate-governance-board-svg__legend > *:nth-child(-n+3) {
  transition-delay: 940ms;
}

.corporate-governance-indicators--chart-animate .corporate-governance-board-svg__legend > *:nth-child(n+4):nth-child(-n+6) {
  transition-delay: 1040ms;
}

.corporate-governance-indicators--chart-animate .corporate-governance-board-svg__legend > *:nth-child(n+7) {
  transition-delay: 1140ms;
}

.corporate-governance-indicators--chart-animate.is-chart-animated .corporate-governance-board-svg__bar {
  transform: scaleX(1);
}

.corporate-governance-indicators--chart-animate.is-chart-animated .corporate-governance-board-svg__donut-source {
  animation: corporate-donut-clockwise-reveal 1000ms linear 260ms forwards;
}

.corporate-governance-indicators--chart-animate.is-chart-animated .corporate-governance-board-svg__bar-label,
.corporate-governance-indicators--chart-animate.is-chart-animated .corporate-governance-board-svg__bar-value,
.corporate-governance-indicators--chart-animate.is-chart-animated .corporate-governance-board-svg__donut-value,
.corporate-governance-indicators--chart-animate.is-chart-animated .corporate-governance-board-svg__legend > * {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .corporate-governance-indicators--chart-animate .corporate-governance-board-svg__bar,
  .corporate-governance-indicators--chart-animate .corporate-governance-board-svg__bar-label,
  .corporate-governance-indicators--chart-animate .corporate-governance-board-svg__bar-value,
  .corporate-governance-indicators--chart-animate .corporate-governance-board-svg__donut-source,
  .corporate-governance-indicators--chart-animate .corporate-governance-board-svg__donut-value,
  .corporate-governance-indicators--chart-animate .corporate-governance-board-svg__legend > * {
    --corporate-donut-progress: 1;
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }

  .corporate-governance-indicators--chart-animate.is-chart-animated .corporate-governance-board-svg__donut-source {
    --corporate-donut-progress: 1;
    animation: none;
  }
}

@property --corporate-donut-progress {
  syntax: "<number>";
  inherits: false;
  initial-value: 1;
}

@keyframes corporate-donut-clockwise-reveal {
  from {
    --corporate-donut-progress: 0;
  }

  to {
    --corporate-donut-progress: 1;
  }
}

.corporate-governance-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.corporate-governance-process-grid article {
  min-width: 0;
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(0, 35, 70, 0.06);
}

.corporate-governance-process-grid span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--corporate-magenta);
  color: var(--corporate-heading);
  font-size: 16px;
  font-weight: 900;
}

.corporate-governance-process-grid h4 {
  margin-bottom: 12px;
  font-size: 18px;
}

.corporate-governance-process-grid p {
  font-size: 16px;
  line-height: 1.42;
}

.corporate-governance-management {
  margin-top: 42px;
}

.corporate-governance-management__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.corporate-governance-management__grid article {
  min-height: 126px;
  padding: 22px;
  border: 1px solid var(--corporate-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.corporate-governance-management__grid strong,
.corporate-governance-management__grid span {
  display: block;
}

.corporate-governance-management__grid strong {
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 1.24;
}

.corporate-governance-management__grid span {
  color: var(--corporate-text);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.34;
}

.corporate-governance-table-wrap--management {
  margin-top: 42px;
}

.corporate-governance-table-wrap--management .corporate-governance-management-title {
  margin: 0 0 24px;
  color: var(--corporate-heading);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: none;
}

.corporate-governance-table-wrap--management .strategy-table-title {
  padding-bottom: 16px;
  text-transform: none;
}

.corporate-governance-management-table th:first-child,
.corporate-governance-management-table td:first-child {
  width: 29%;
}

.corporate-governance-table-wrap .corporate-governance-management-table {
  border-top: 7px solid var(--corporate-magenta);
}

.corporate-governance-management-table td:first-child {
  color: var(--corporate-heading);
  font-weight: 800;
  vertical-align: middle;
}

.corporate-governance-management-table td:nth-child(2) {
  color: var(--corporate-text);
  font-weight: 500;
  vertical-align: middle;
}

.corporate-governance-table-wrap .corporate-governance-management-table td + td {
  border-left: 0;
}

.corporate-governance-corruption-summary {
  display: block;
  padding-top: clamp(44px, 4vw, 64px);
  margin-top: clamp(32px, 3vw, 44px);
  margin-bottom: 28px;
}

.corporate-governance-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 42px 0 28px;
}

.corporate-governance-highlight-grid article {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 168px;
  padding: 28px;
  border-top: 3px solid var(--corporate-magenta);
  border-radius: 0;
  background: transparent;
}

.corporate-governance-highlight-grid strong {
  color: var(--corporate-magenta);
  font-size: 38px;
  line-height: 1;
}

.corporate-governance-highlight-grid sup {
  font-size: 0.42em;
}

.corporate-governance-highlight-grid span {
  color: var(--corporate-heading);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.34;
}

/* Corporate economic performance */
.corporate-economic-content {
  background: #f6fafc;
}

.corporate-economic-content .corporate-governance-header h2 {
  color: var(--section-governance-accent, var(--corporate-magenta));
}

.corporate-economic-content a {
  color: var(--corporate-blue);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.corporate-economic-content sup {
  font-size: 0.62em;
  line-height: 0;
  vertical-align: super;
}

.corporate-economic-content .corporate-economic-alpha-footnote {
  color: #43a047;
  font-weight: 800;
}

.corporate-economic-section h4 {
  margin: 0 0 18px;
  color: var(--corporate-heading);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.18;
}


.corporate-economic-subsection-gri {
  margin: -6px 0 18px !important;
}

.corporate-economic-section h5 {
  margin: 0 0 16px;
  color: var(--corporate-heading);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.22;
  text-transform: uppercase;
}

.corporate-economic-section h6 {
  margin: 0 0 14px;
  color: var(--corporate-heading);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.28;
}

.corporate-economic-flow-columns {
  column-count: 2;
  column-gap: clamp(48px, 5vw, 86px);
}

.corporate-economic-flow-columns > * {
  break-inside: avoid;
}
.corporate-economic-flow-columns--category {
  column-count: auto;
  column-gap: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(48px, 5vw, 86px);
  align-items: start;
}

.corporate-economic-flow-column {
  min-width: 0;
}

.corporate-economic-flow-column > :first-child {
  margin-top: 0;
}

.corporate-economic-flow-column > :last-child {
  margin-bottom: 0;
}

.corporate-economic-text-block {
  break-inside: avoid;
  margin-bottom: 34px;
}

.corporate-economic-text-block:last-child {
  margin-bottom: 0;
}

.corporate-economic-flow-columns .corporate-governance-list {
  display: block;
  margin-bottom: 24px;
}

.corporate-economic-flow-columns .corporate-governance-list li {
  break-inside: avoid;
}

.corporate-economic-flow-columns .corporate-governance-list li + li {
  margin-top: 14px;
}

.corporate-economic-flow-column > .corporate-governance-list:last-child {
  margin-bottom: 0;
}

.corporate-economic-photo {
  background: #dfeaf1;
}

.corporate-economic-photo--split {
  width: min(760px, 100%);
  margin: clamp(64px, 6vw, 94px) auto 0;
  aspect-ratio: 1015 / 980;
}

.corporate-economic-section--intro {
  margin-top: 0;
}

.corporate-economic-intro-layout {
  margin-top: 0;
}

.corporate-economic-photo--intro {
  min-height: clamp(440px, 38vw, 620px);
  aspect-ratio: 1015 / 980;
}

.corporate-economic-after-table {
  margin-top: clamp(34px, 4vw, 54px);
}

.corporate-economic-after-table p {
  margin: 0;
}

.corporate-economic-after-table p + p {
  margin-top: 18px;
}

.corporate-economic-after-table__layout {
  align-items: start;
}

.corporate-economic-after-table__text {
  min-width: 0;
}

.corporate-economic-after-table__photo {
  width: 100%;
  aspect-ratio: 760 / 445;
  margin: 0;
}

.corporate-economic-photo--wide {
  margin-top: clamp(72px, 7vw, 112px);
  aspect-ratio: 1500 / 500;
}

.corporate-economic-photo--portfolio {
  margin-top: clamp(34px, 4vw, 58px);
  aspect-ratio: 1500 / 460;
}

.corporate-economic-investment-summary .corporate-economic-photo--portfolio {
  width: 100%;
  max-width: none;
  margin-top: 26px;
  margin-right: 0;
  margin-left: 0;
  aspect-ratio: 700 / 330;
}

.corporate-economic-photo--sustainable {
  margin-top: 24px;
  aspect-ratio: 1500 / 620;
}

.corporate-economic-project-flow > .corporate-economic-photo--sustainable {
  break-inside: avoid;
  margin: 0 0 28px;
}

.corporate-economic-table-wrap {
  margin-top: 42px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
  background: transparent;
}

.corporate-economic-table-wrap .strategy-table-title {
  max-width: none;
  padding: 0 0 24px;
  background: transparent;
  color: var(--corporate-heading);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.42;
  text-transform: uppercase;
}

.corporate-economic-table-title-number {
  color: var(--section-governance-accent, var(--corporate-magenta));
}

.corporate-economic-table-wrap .strategy-wide-table {
  width: 100%;
  border-bottom: 3px solid var(--corporate-magenta);
}

.corporate-economic-table-wrap .strategy-wide-table th,
.corporate-economic-table-wrap .strategy-wide-table td {
  padding: 16px 22px;
  background: transparent;
  border-top-color: var(--corporate-line);
  color: var(--corporate-text);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.42;
  vertical-align: middle;
  overflow-wrap: break-word;
}

.corporate-economic-table-wrap .strategy-wide-table th {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.corporate-economic-table-wrap .strategy-wide-table th {
  color: #fff;
  background: var(--corporate-blue);
  font-weight: 800;
}

.corporate-economic-table-wrap .strategy-wide-table th:first-child {
  background: var(--corporate-magenta);
}

.corporate-economic-table-wrap .strategy-wide-table th + th,
.corporate-economic-table-wrap .strategy-wide-table td + td {
  border-left: 1px solid var(--corporate-vline);
}

.corporate-economic-table-wrap .strategy-wide-table td:first-child {
  color: var(--corporate-heading);
  font-weight: 800;
}

.corporate-economic-table-wrap .strategy-wide-table td:not(:first-child) {
  color: var(--corporate-text);
  font-weight: 500;
}

.corporate-economic-table__group td,
.corporate-economic-table__total td {
  color: var(--corporate-heading);
  font-weight: 800;
}

.corporate-economic-table--value td:not(:first-child),
.corporate-economic-table--procurement td:not(:first-child),
.corporate-economic-table-wrap--narrow td:not(:first-child) {
  text-align: center;
}

.corporate-economic-table-wrap .corporate-economic-table--value {
  border-collapse: collapse;
}

.corporate-economic-table-wrap .corporate-economic-table--value th,
.corporate-economic-table-wrap .corporate-economic-table--value td {
  border-left: 0;
  border-right: 0;
}

.corporate-economic-table-wrap .corporate-economic-table--value th + th {
  border-left: 1px solid var(--corporate-vline);
}

.corporate-economic-table-wrap .corporate-economic-table--value td + td {
  border-left: 0;
}

.corporate-economic-table-wrap .corporate-economic-table--value tbody td {
  background: transparent;
  border-top: 1px solid #7d8fa9;
  color: var(--corporate-text);
  font-weight: 500;
}

.corporate-economic-table-wrap .corporate-economic-table--value tbody td:first-child {
  color: var(--corporate-text);
  font-weight: 500;
  text-align: left;
}

.corporate-economic-table-wrap .corporate-economic-table--value tbody tr.corporate-economic-table__group td {
  background: #e2edf2;
  color: var(--corporate-heading);
  font-weight: 800;
}

.corporate-economic-table-wrap .corporate-economic-table--value tbody tr.corporate-economic-table__group td:not(:first-child) {
  color: var(--corporate-heading);
  font-weight: 800;
}

.corporate-economic-table--multi thead tr:nth-child(2) th {
  background: #4b638d;
}

.corporate-economic-table--procurement {
  border-collapse: collapse;
}

.corporate-economic-table-wrap .corporate-economic-table--procurement th,
.corporate-economic-table-wrap .corporate-economic-table--procurement td {
  border-left: 0;
  border-right: 0;
}

.corporate-economic-table-wrap .corporate-economic-table--procurement th + th,
.corporate-economic-table-wrap .corporate-economic-table--procurement td + td {
  border-left: 0;
}

.corporate-economic-table-wrap .corporate-economic-table--procurement thead th {
  padding: 14px 24px;
  color: #fff;
  background: var(--corporate-blue);
  text-align: center;
}

.corporate-economic-table-wrap .corporate-economic-table--procurement thead tr:first-child th:first-child {
  background: var(--corporate-magenta);
}

.corporate-economic-table-wrap .corporate-economic-table--procurement thead tr:first-child th:nth-child(2),
.corporate-economic-table-wrap .corporate-economic-table--procurement thead tr:first-child th:nth-child(4),
.corporate-economic-table-wrap .corporate-economic-table--procurement thead tr:nth-child(2) th:nth-child(1),
.corporate-economic-table-wrap .corporate-economic-table--procurement thead tr:nth-child(2) th:nth-child(2),
.corporate-economic-table-wrap .corporate-economic-table--procurement thead tr:nth-child(2) th:nth-child(5),
.corporate-economic-table-wrap .corporate-economic-table--procurement thead tr:nth-child(2) th:nth-child(6) {
  background: #345987;
}

.corporate-economic-table-wrap .corporate-economic-table--procurement thead tr:first-child th:nth-child(3),
.corporate-economic-table-wrap .corporate-economic-table--procurement thead tr:nth-child(2) th:nth-child(3),
.corporate-economic-table-wrap .corporate-economic-table--procurement thead tr:nth-child(2) th:nth-child(4) {
  background: #687a9d;
}

.corporate-economic-table-wrap .corporate-economic-table--procurement tbody td {
  padding: 14px 24px;
  background: transparent;
  border-top: 1px solid #7d8fa9;
  text-align: center;
}

.corporate-economic-table-wrap .corporate-economic-table--procurement:not(.corporate-economic-table--local) tbody td {
  color: var(--corporate-heading);
  font-weight: 800;
}

.corporate-economic-table-wrap .corporate-economic-table--procurement tbody tr:first-child td {
  color: var(--corporate-magenta);
  font-weight: 800;
}

.corporate-economic-table-wrap .corporate-economic-table--procurement tbody td:first-child {
  text-align: left;
}

.corporate-economic-table-wrap .corporate-economic-table--local thead th {
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.18;
  vertical-align: middle;
}

.corporate-economic-table-wrap .corporate-economic-table--local thead tr:nth-child(2) th {
  font-size: 12px;
}

.corporate-economic-table-unit {
  display: block;
  margin-top: 2px;
  white-space: nowrap;
}

.corporate-economic-table-wrap .corporate-economic-table--local tbody td {
  padding: 12px 14px;
  font-size: 14px;
}

.corporate-economic-table-wrap .corporate-economic-table--local tbody td:first-child {
  text-align: center;
}

.corporate-economic-table-note-lines {
  margin-top: 22px;
}

.corporate-economic-table-note-lines p {
  max-width: 100%;
  font-size: 15px;
  line-height: 1.32;
}

.corporate-economic-table-note-lines p + p {
  margin-top: 12px;
}

.corporate-economic-table-note-lines .corporate-economic-alpha-footnote {
  color: #43a047;
  font-weight: 800;
}

.corporate-economic-table--imports {
  border-collapse: collapse;
}

.corporate-economic-table-wrap .corporate-economic-table--imports th,
.corporate-economic-table-wrap .corporate-economic-table--imports td {
  border-left: 0;
  border-right: 0;
}

.corporate-economic-table-wrap .corporate-economic-table--imports th + th,
.corporate-economic-table-wrap .corporate-economic-table--imports td + td {
  border-left: 0;
}

.corporate-economic-table-wrap .corporate-economic-table--imports thead th {
  padding: 14px 18px;
  color: #fff;
  background: #345987;
  font-weight: 800;
  text-align: center;
}

.corporate-economic-table-wrap .corporate-economic-table--imports thead th:first-child {
  background: var(--corporate-magenta);
  text-align: left;
}

.corporate-economic-table-wrap .corporate-economic-table--imports tbody td {
  padding: 14px 18px;
  background: transparent;
  border-top: 1px solid #7d8fa9;
  color: var(--corporate-text);
  font-weight: 500;
  text-align: center;
}

.corporate-economic-table-wrap .corporate-economic-table--imports tbody td:first-child {
  color: var(--corporate-text);
  font-weight: 500;
  text-align: left;
}

.corporate-economic-table-wrap .corporate-economic-table--imports tbody tr:first-child td {
  color: var(--corporate-magenta);
  font-weight: 800;
}

.corporate-economic-table-wrap .corporate-economic-table--offtake tbody tr:first-child td {
  color: var(--corporate-magenta);
  font-weight: 800;
}

.corporate-economic-table--category {
  border-collapse: collapse;
}

.corporate-economic-table-wrap .corporate-economic-table--category th,
.corporate-economic-table-wrap .corporate-economic-table--category td {
  border-left: 0;
  border-right: 0;
}

.corporate-economic-table-wrap .corporate-economic-table--category th + th,
.corporate-economic-table-wrap .corporate-economic-table--category td + td {
  border-left: 0;
}

.corporate-economic-table-wrap .corporate-economic-table--category thead th {
  padding: 14px 18px;
  color: #fff;
  background: #345987;
  font-weight: 800;
  text-align: center;
}

.corporate-economic-table-wrap .corporate-economic-table--category thead th:first-child {
  width: 34%;
  background: var(--corporate-magenta);
  text-align: left;
}

.corporate-economic-table-wrap .corporate-economic-table--category tbody td {
  padding: 14px 18px;
  background: transparent;
  border-top: 1px solid #7d8fa9;
  color: var(--corporate-text);
  font-weight: 500;
  text-align: center;
}

.corporate-economic-table-wrap .corporate-economic-table--category tbody td:first-child {
  color: var(--corporate-text);
  font-weight: 500;
  text-align: left;
}

.corporate-economic-table-wrap .corporate-economic-table--category tbody td:last-child {
  color: var(--corporate-heading);
  font-weight: 800;
}

.corporate-economic-table--portfolio thead tr:first-child th:first-child {
  width: 230px;
  min-width: 230px;
}

.corporate-economic-table--portfolio thead tr:nth-child(2) th {
  background: #dbe8ed;
  color: var(--corporate-heading);
  font-weight: 800;
  text-align: center;
}

.corporate-economic-table--portfolio thead tr:nth-child(2) th:first-child {
  background: #dbe8ed;
}

.corporate-economic-table--portfolio tbody tr.corporate-economic-table__total td {
  background: #dbe8ed;
  color: var(--corporate-heading);
  font-weight: 800;
}

.corporate-economic-table--portfolio tbody tr.corporate-economic-table__total td:not(:first-child) {
  font-weight: 800;
}

.corporate-economic-table-wrap .corporate-economic-table--portfolio tbody td:first-child {
  text-align: left;
}

.corporate-economic-table-wrap .corporate-economic-table--portfolio tbody td:not(:first-child) {
  text-align: center;
}

.corporate-economic-table-after {
  margin-top: 28px;
}

.corporate-economic-investment-summary {
  display: block;
  margin-top: 28px;
  max-width: none;
}

.corporate-governance-two-column--media .corporate-economic-investment-summary {
  margin-top: 0;
}

.corporate-economic-investment-summary p {
  margin: 0 0 18px;
}

.corporate-economic-investment-summary p:last-child {
  margin-bottom: 0;
}

.corporate-economic-footnotes {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 2px solid var(--corporate-line);
}

.corporate-economic-footnotes p {
  margin: 0 0 10px;
  color: #596674;
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.45;
}


.corporate-economic-projects {
  margin-top: 58px;
}

.corporate-economic-project-blocks {
  display: grid;
  gap: clamp(46px, 5vw, 76px);
}

.corporate-economic-project-block {
  padding-top: clamp(30px, 3.8vw, 48px);
}

.corporate-economic-project-block:first-child {
  padding-top: 0;
}

.corporate-economic-project-block--continuation {
  padding-top: clamp(26px, 2.7vw, 38px);
  border-top: 2px solid rgba(60, 85, 129, 0.18);
}

.corporate-economic-project-block--continuation .corporate-economic-project-item {
  padding-top: 0;
  border-top: 0;
}

.corporate-economic-project-block h5 {
  margin-bottom: 24px;
  max-width: 980px;
  color: var(--corporate-heading);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.28;
  text-transform: uppercase;
}

.corporate-economic-project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(48px, 5vw, 86px);
  align-items: start;
}

.corporate-economic-project-grid > div {
  min-width: 0;
}

.corporate-economic-project-flow {
  column-count: 2;
  column-gap: clamp(48px, 5vw, 86px);
}

.corporate-economic-project-item {
  break-inside: avoid;
  margin: 0 0 28px;
}

.corporate-economic-project-item:last-child {
  margin-bottom: 0;
}

.corporate-economic-project-block--petrochem-main .corporate-economic-project-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  column-count: initial;
  gap: clamp(48px, 5vw, 86px);
  align-items: start;
}

.corporate-economic-project-block--petrochem-main .corporate-economic-project-item {
  margin-bottom: 0;
}

.corporate-economic-project-column {
  min-width: 0;
  display: grid;
  gap: 28px;
  align-content: start;
}

.corporate-economic-project-column--petrochem-right {
  gap: 38px;
}

.corporate-economic-project-column--petrochem-left > .corporate-economic-project-item:nth-child(2) {
  margin-top: 12px;
}

.corporate-economic-photo--petrochem {
  width: 100%;
  margin: 0;
  aspect-ratio: 1 / 1;
}

@media (min-width: 1281px) {
  html[lang="en"] .corporate-economic-photo--petrochem {
    aspect-ratio: 1.1 / 1;
  }
}

.corporate-economic-project-item h6 {
  margin-top: 0;
}

.corporate-economic-heading-list {
  margin: 0 0 14px;
}

.corporate-economic-heading-list li h6 {
  margin: 0;
}

.corporate-economic-heading-list li p {
  margin: 14px 0 0;
}

.corporate-economic-project-item--group h5 {
  margin: 0 0 16px;
  max-width: none;
  font-weight: 800;
}

.corporate-economic-project-flow .corporate-governance-list {
  display: block;
  margin-bottom: 18px;
}

.corporate-economic-project-flow .corporate-governance-list li {
  break-inside: avoid;
}

.corporate-economic-project-flow .corporate-governance-list li + li {
  margin-top: 14px;
}

@media (max-width: 1280px) {
  .corporate-economic-project-block--petrochem-main .corporate-economic-project-flow {
    grid-template-columns: 1fr;
  }

  .corporate-economic-photo--petrochem {
    grid-column: 1;
    aspect-ratio: 980 / 640;
  }
}

.corporate-economic-project-grid h6 {
  margin-top: 26px;
}

.corporate-economic-project-heading-note {
  font-weight: 500;
}

.corporate-economic-project-grid h6:first-child,
.corporate-economic-project-grid p:first-child {
  margin-top: 0;
}

.corporate-economic-project-grid .corporate-governance-list {
  display: block;
  margin-bottom: 24px;
}

.corporate-economic-project-grid .corporate-governance-list li {
  break-inside: avoid;
}

.corporate-economic-project-grid .corporate-governance-list li + li {
  margin-top: 14px;
}

.corporate-economic-table-wrap--narrow {
  max-width: 960px;
}

.corporate-economic-table-wrap--inline {
  margin-top: 24px;
}

.corporate-economic-practice {
  margin-top: 0;
}

.corporate-economic-practice .environmental-practice-card__header {
  background: var(--corporate-blue);
}

.corporate-economic-practice .environmental-practice-card__body {
  min-height: auto;
}

.corporate-economic-practice .environmental-practice-card__body p {
  color: var(--corporate-heading);
}

.corporate-economic-offtake-layout {
  align-items: start;
}

.corporate-economic-offtake-main {
  min-width: 0;
}

.corporate-economic-offtake-main .corporate-economic-table-wrap {
  margin-top: 34px;
}

.corporate-economic-offtake-main .corporate-economic-table-wrap--narrow {
  max-width: none;
}

.corporate-economic-practice--offtake {
  margin-top: 0;
}

.corporate-economic-contractor-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 4vw, 58px);
  align-items: start;
}

.corporate-economic-contractor-layout > .corporate-economic-practice {
  display: none;
}

.corporate-economic-contractor-text {
  min-width: 0;
  order: 1;
}

.corporate-economic-contractor-photo {
  width: 100%;
  margin: 0;
}

.corporate-economic-contractor-photo--primary {
  order: 2;
  aspect-ratio: 766 / 1044;
}

.corporate-economic-contractor-photo--secondary {
  margin-top: 28px;
  aspect-ratio: 760 / 445;
}

/* Corporate stakeholder engagement */
.corporate-stakeholder-content .corporate-governance-header h2 {
  max-width: 1220px;
}

.corporate-stakeholder-lead h3 {
  margin: 0 0 28px;
  color: var(--corporate-heading);
  font-size: clamp(28px, 2.15vw, 38px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.corporate-stakeholder-photo--lead {
  min-height: clamp(430px, 32vw, 560px);
}

.corporate-stakeholder-principles-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  align-content: start;
  gap: 18px clamp(48px, 5vw, 86px);
}

.corporate-stakeholder-stages {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  align-items: start;
  gap: 26px clamp(48px, 5vw, 86px);
  margin-top: 30px;
}

.corporate-stakeholder-stage {
  position: relative;
  grid-column: 1;
  min-width: 0;
  padding-left: 32px;
}

.corporate-stakeholder-stage--wide {
  grid-column: auto;
  max-width: none;
}

.corporate-stakeholder-stage__number {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 24px;
  height: auto;
  border: 0;
  border-radius: 0;
  color: var(--corporate-heading);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.18;
  text-align: left;
}

.corporate-stakeholder-stage__number::after {
  content: ".";
}

.corporate-stakeholder-stage h4 {
  margin-bottom: 14px;
}

.corporate-stakeholder-stage .corporate-governance-list {
  gap: 10px;
  margin-bottom: 0;
}

.corporate-stakeholder-stage .corporate-governance-list li {
  font-size: 16px;
  line-height: 1.44;
}

.corporate-stakeholder-stages__aside {
  grid-column: 2;
  grid-row: 1 / span 5;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  min-width: 0;
}

.corporate-stakeholder-section-note {
  max-width: none;
  margin: 0;
  font-weight: 700;
}

.corporate-stakeholder-photo--wide {
  flex: 1 1 auto;
  min-height: 360px;
  margin-top: 30px;
  aspect-ratio: auto;
}

.corporate-stakeholder-results .corporate-governance-two-column--compact {
  margin-top: 0;
}

.corporate-stakeholder-systems {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  margin-top: 48px;
}

.corporate-stakeholder-system {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-flow: row dense;
  column-gap: clamp(42px, 5vw, 76px);
  row-gap: 0;
  min-width: 0;
  padding-top: 0;
}

.corporate-stakeholder-system--wide {
  grid-column: 1 / -1;
}

.corporate-stakeholder-system:nth-of-type(2) {
  order: 1;
}

.corporate-stakeholder-system:nth-of-type(5) {
  order: 2;
}

.corporate-stakeholder-system:nth-of-type(7) {
  order: 3;
}

.corporate-stakeholder-system:nth-of-type(1) {
  order: 4;
}

.corporate-stakeholder-system:nth-of-type(3) {
  order: 5;
}

.corporate-stakeholder-system:nth-of-type(4) {
  order: 6;
}

.corporate-stakeholder-system:nth-of-type(6) {
  order: 7;
}

.corporate-stakeholder-system h4 {
  position: relative;
  z-index: 0;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  min-height: 74px;
  margin: 0;
  padding: 18px 28px 16px 130px;
  overflow: visible;
  border-radius: 0 28px 0 0;
  background: linear-gradient(to right, transparent 0 53px, #ead9ea 53px 100%);
  color: var(--corporate-heading);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.12;
  text-transform: none;
}

.corporate-stakeholder-system h4::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  z-index: 2;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto 86px;
  transform: translateY(-50%);
}

.corporate-stakeholder-system h4::after {
  content: none;
}

.corporate-stakeholder-system:nth-of-type(1) h4::before {
  background-image: url("assets/vectors/groups/page_0060_group_0001.svg");
}

.corporate-stakeholder-system:nth-of-type(2) h4::before {
  background-image: url("assets/vectors/groups/page_0060_group_0002.svg");
}

.corporate-stakeholder-system:nth-of-type(3) h4::before {
  background-image: url("assets/vectors/groups/page_0060_group_0003.svg");
}

.corporate-stakeholder-system:nth-of-type(4) h4::before {
  background-image: url("assets/vectors/groups/page_0060_group_0004.svg");
}

.corporate-stakeholder-system:nth-of-type(5) h4 {
  background: linear-gradient(to right, transparent 0 53px, #cceefa 53px 100%);
}

.corporate-stakeholder-system:nth-of-type(3) h4 {
  background: linear-gradient(to right, transparent 0 53px, #cceefa 53px 100%);
}

.corporate-stakeholder-system:nth-of-type(6) h4 {
  background: linear-gradient(to right, transparent 0 53px, #cceefa 53px 100%);
}

.corporate-stakeholder-system:nth-of-type(5) h4::before {
  background-image: url("assets/vectors/groups/page_0060_group_0005.svg");
}

.corporate-stakeholder-system:nth-of-type(6) h4::before {
  background-image: url("assets/vectors/groups/page_0060_group_0006.svg");
}

.corporate-stakeholder-system:nth-of-type(7) h4::before {
  background-image: url("assets/vectors/groups/page_0060_group_0007.svg");
}

.corporate-stakeholder-system__ribbon {
  grid-column: 1 / -1;
  margin: 30px 24px 0;
}

.corporate-stakeholder-system__ribbon img {
  display: none;
}

.corporate-stakeholder-system__ribbon span {
  display: block;
  max-width: none;
  padding: 0;
  color: var(--corporate-heading);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.12;
  text-transform: uppercase;
}

.corporate-stakeholder-system h5 {
  grid-column: 2;
  margin: 20px 0 14px;
  color: var(--corporate-heading);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.22;
}

.corporate-stakeholder-system p {
  grid-column: 2;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.46;
}

.corporate-stakeholder-system > p:first-of-type {
  grid-column: 2;
}

.corporate-stakeholder-system > p:nth-of-type(2) {
  margin-top: 20px;
}

.corporate-stakeholder-system > p:has(> strong:first-child) {
  grid-column: 1;
}

.corporate-stakeholder-system p:last-child {
  margin-bottom: 0;
}

.corporate-stakeholder-system h4 ~ * {
  break-inside: avoid;
}

.corporate-stakeholder-system h4 {
  grid-column: 1 / -1;
}

.corporate-stakeholder-system__columns {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 4vw, 62px);
}

.corporate-stakeholder-system {
  display: block;
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.corporate-stakeholder-system__ribbon {
  margin: 28px 24px 0;
}

.corporate-stakeholder-system__body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(42px, 5vw, 76px);
  width: 100%;
  margin: 20px 0 0;
  padding: 0 24px;
  box-sizing: border-box;
}

.corporate-stakeholder-system__side,
.corporate-stakeholder-system__main {
  min-width: 0;
}

.corporate-stakeholder-system__main h5 {
  margin: 0 0 14px;
}

.corporate-stakeholder-system__body p {
  margin: 0 0 16px;
}

.corporate-stakeholder-system__body p:last-child {
  margin-bottom: 0;
}

.corporate-stakeholder-closing {
  max-width: 1260px;
  margin-top: 46px;
  padding-top: 26px;
  border-top: 3px solid var(--corporate-magenta);
  font-weight: 700;
}

/* Corporate memberships */
.corporate-memberships-header h2 {
  max-width: 1280px;
}

.corporate-memberships-intro {
  margin-top: 0;
}

.corporate-memberships-intro p {
  width: 100%;
  max-width: none;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.52;
}

.corporate-memberships-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px clamp(42px, 4.8vw, 76px);
  align-items: stretch;
}

.corporate-memberships-grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.corporate-memberships-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  min-width: 0;
  padding: 24px 0;
  border-top: 1px solid rgba(154, 172, 191, 0.42);
}

.corporate-memberships-card:nth-child(1),
.corporate-memberships-card:nth-child(2) {
  border-top-color: rgba(154, 172, 191, 0.7);
}

.corporate-memberships-card--right-column {
  grid-column: 2;
}

.corporate-memberships-grid--single .corporate-memberships-card {
  max-width: 860px;
}

.corporate-memberships-card__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  min-height: 118px;
}

.corporate-memberships-card__logo img {
  display: block;
  width: var(--corporate-membership-logo-width, 150px);
  max-width: 100%;
  max-height: var(--corporate-membership-logo-height, 104px);
  height: auto;
  object-fit: contain;
}

.corporate-memberships-card__logo--wide img {
  --corporate-membership-logo-width: 170px;
}

.corporate-memberships-card__logo--world-bank {
  --corporate-membership-logo-width: 204px;
  --corporate-membership-logo-height: 54px;
}

.corporate-memberships-card__logo--iogp {
  --corporate-membership-logo-width: 188px;
  --corporate-membership-logo-height: 64px;
}

.corporate-memberships-card__logo--gmi {
  --corporate-membership-logo-width: 184px;
  --corporate-membership-logo-height: 100px;
}

.corporate-memberships-card__logo--ogdc {
  gap: 7px;
}

.corporate-memberships-card__logo--ogdc .corporate-memberships-card__logo-mark {
  width: 62px;
  max-height: 28px;
  flex: 0 0 auto;
}

.corporate-memberships-card__logo--ogdc .corporate-memberships-card__logo-wordmark {
  width: 126px;
  max-height: 28px;
}

.corporate-memberships-card__logo--ungc {
  flex-direction: column;
  align-items: center;
  gap: 9px;
}

.corporate-memberships-card__logo--ungc .corporate-memberships-card__logo-mark {
  width: 108px;
  max-height: 108px;
}

.corporate-memberships-card__logo--ungc .corporate-memberships-card__logo-wordmark {
  width: 154px;
  max-height: 34px;
}

.corporate-memberships-card__logo--dark img {
  --corporate-membership-logo-width: 122px;
  --corporate-membership-logo-height: 122px;
}

.corporate-memberships-card p {
  margin: 0;
}

.corporate-memberships-card strong {
  display: inline;
}

.corporate-memberships-pwc-logo {
  position: relative;
  width: clamp(220px, 19vw, 320px);
  aspect-ratio: 84 / 67;
  margin: 0 0 clamp(30px, 3.2vw, 48px);
}

.corporate-memberships-pwc-logo img {
  position: absolute;
  display: block;
  max-width: none;
  height: auto;
}

.corporate-memberships-pwc-logo__mark {
  top: 0;
  left: 44%;
  width: 57%;
}

.corporate-memberships-pwc-logo__wordmark {
  top: 61%;
  left: 0;
  width: 76%;
}

.corporate-memberships-disclosure .corporate-governance-two-column {
  margin-bottom: clamp(42px, 5vw, 72px);
}

.corporate-memberships-diplomas {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(46px, 5.6vw, 88px);
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(22px, 3vw, 38px);
}

.corporate-memberships-diplomas::before {
  content: "";
  position: absolute;
  inset: clamp(36px, 4vw, 64px) clamp(8px, 1.6vw, 28px) 0;
  border-radius: 8px;
  background: rgba(20, 48, 82, 0.12);
  filter: blur(16px);
  transform: translateY(18px);
  pointer-events: none;
}

.corporate-memberships-diploma {
  position: relative;
  z-index: 1;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 28px 58px rgba(12, 34, 64, 0.18);
}

.corporate-memberships-diploma img {
  display: block;
  width: 100%;
  height: auto;
}

.social-scroll-animations .social-personnel-content .social-scroll-animate,
.social-scroll-animations .social-human-rights-content .social-scroll-animate,
.social-scroll-animations .social-communities-content .social-scroll-animate {
  opacity: 0;
  transform: translate3d(0, var(--social-scroll-y, 16px), 0);
  transition:
    opacity var(--social-scroll-duration, 760ms) cubic-bezier(0.22, 1, 0.36, 1),
    transform var(--social-scroll-duration, 760ms) cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--social-scroll-delay, 0ms);
  will-change: opacity, transform;
}

.social-content--calm-scroll .social-scroll-animate--soft-title {
  --social-scroll-y: 22px;
  --social-scroll-duration: 860ms;
}

.social-content--calm-scroll .social-scroll-animate--soft-heading {
  --social-scroll-y: 12px;
  --social-scroll-duration: 760ms;
}

.social-content--calm-scroll .social-scroll-animate--soft-rise {
  --social-scroll-y: 18px;
  --social-scroll-duration: 780ms;
}

.social-content--calm-scroll .social-scroll-animate--soft-image {
  --social-scroll-y: 20px;
  --social-scroll-duration: 900ms;
}

.social-content--calm-scroll .social-scroll-animate--soft-table {
  --social-scroll-y: 14px;
  --social-scroll-duration: 820ms;
}

.social-scroll-animations .social-personnel-content .social-scroll-animate.is-animated,
.social-scroll-animations .social-human-rights-content .social-scroll-animate.is-animated,
.social-scroll-animations .social-communities-content .social-scroll-animate.is-animated {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .social-scroll-animations .social-personnel-content .social-scroll-animate,
  .social-scroll-animations .social-human-rights-content .social-scroll-animate,
  .social-scroll-animations .social-communities-content .social-scroll-animate {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Social personnel development */
.social-personnel-content {
  --corporate-magenta: var(--section-social-accent);
  --section-governance-accent: var(--section-social-accent);
  --corporate-text: #3a3a3a;
  --corporate-heading: #202832;
  --corporate-line: #b6c5d5;
  --personnel-blue: #304e7c;
  --personnel-teal: #57b7b8;
  --personnel-yellow: #e8c03a;
  --personnel-ink: #404041;
}

.social-personnel-section {
  margin-top: 0;
}

.social-personnel-section + .social-personnel-section {
  margin-top: clamp(72px, 7vw, 112px);
}

.social-personnel-columns {
  gap: clamp(48px, 5vw, 86px);
}

.social-personnel-column {
  min-width: 0;
}

.social-personnel-principles-title {
  margin: clamp(42px, 4vw, 58px) 0 18px;
  color: var(--corporate-heading);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.18;
}

.social-personnel-principles-list {
  gap: 14px;
}

.social-personnel-content sup {
  font-size: 0.62em;
  line-height: 0;
  vertical-align: super;
}

.social-personnel-content .social-personnel-alpha-footnote {
  color: #43a047;
  font-weight: 800;
}

.social-personnel-headcount__intro {
  margin-bottom: clamp(46px, 4.6vw, 72px);
}

.social-personnel-chart-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 3.4vw, 56px) clamp(42px, 4.2vw, 70px);
}

.social-personnel-chart-grid + .social-personnel-chart-grid {
  margin-top: clamp(42px, 4.2vw, 66px);
}

.social-personnel-chart-card {
  min-width: 0;
  padding-top: 22px;
  border-top: 2px solid rgba(48, 78, 124, 0.18);
}

.social-personnel-chart-card h4,
.social-personnel-staff h4 {
  margin-bottom: clamp(30px, 2.4vw, 38px);
  color: var(--corporate-heading);
  font-size: clamp(17px, 1.25vw, 22px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.social-personnel-donut-card__body {
  display: grid;
  grid-template-columns: minmax(176px, 220px) minmax(0, 1fr);
  gap: clamp(22px, 2.4vw, 34px);
  align-items: center;
}

.social-personnel-donut-card__body--people {
  grid-template-columns: 66px minmax(230px, 280px) 108px;
  gap: clamp(14px, 1.6vw, 22px);
  align-items: end;
  justify-content: start;
  max-width: 520px;
  margin: 0 auto;
}

.social-personnel-donut-wrap {
  position: relative;
  width: min(220px, 100%);
  aspect-ratio: 1;
  overflow: visible;
}

.social-personnel-chart-card--people-gender .social-personnel-donut-wrap {
  width: min(280px, 100%);
}

.social-personnel-donut-svg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill-rule: nonzero;
}

.social-personnel-donut-svg__slice--blue {
  fill: var(--personnel-blue);
}

.social-personnel-donut-svg__slice--teal {
  fill: var(--personnel-teal);
}

.social-personnel-donut-svg__slice--yellow {
  fill: var(--personnel-yellow);
}

.social-personnel-donut-svg__shadow {
  fill: #404041;
  opacity: 0.34;
}

.social-personnel-donut-svg__core {
  fill: #f6fafc;
}

.social-personnel-donut__value {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 4px;
  min-width: max-content;
  padding: 0;
  color: var(--personnel-blue);
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  background: transparent;
  box-shadow: none;
}

.social-personnel-donut__value strong {
  color: inherit;
  font-size: inherit;
  line-height: 1;
}

.social-personnel-donut__value small {
  color: var(--corporate-heading);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.1;
}

.social-personnel-donut__value--primary,
.social-personnel-donut__value--young {
  top: 34%;
  left: -16%;
  color: var(--personnel-blue);
}

.social-personnel-donut__value--secondary,
.social-personnel-donut__value--middle {
  right: -18%;
  bottom: 35%;
  color: var(--personnel-teal);
}

.social-personnel-donut__value--older {
  bottom: -2%;
  left: 5%;
  color: var(--personnel-yellow);
}

.social-personnel-chart-card--total-age .social-personnel-donut-card__body {
  grid-template-columns: minmax(220px, 300px);
  justify-content: center;
}

.social-personnel-chart-card--total-age .social-personnel-donut-wrap {
  width: min(280px, 100%);
  margin: 0 auto;
}

.social-personnel-chart-card--total-age .social-personnel-donut__value {
  font-size: clamp(28px, 2.35vw, 40px);
  min-width: 104px;
}

.social-personnel-chart-card--total-age .social-personnel-donut__value small {
  font-size: 12px;
}

.social-personnel-chart-card--total-age .social-personnel-donut__value--young {
  top: auto;
  right: -43%;
  bottom: 1%;
  left: auto;
  color: var(--personnel-blue);
}

.social-personnel-chart-card--total-age .social-personnel-donut__value--middle {
  right: auto;
  bottom: 2%;
  left: -45%;
}

.social-personnel-chart-card--total-age .social-personnel-donut__value--older {
  top: 0;
  right: -43%;
  bottom: auto;
  left: auto;
}

.social-personnel-chart-grid--aup .social-personnel-donut-card__body,
.social-personnel-chart-grid--pp .social-personnel-donut-card__body {
  grid-template-columns: minmax(300px, 380px);
  justify-content: center;
  justify-items: center;
  gap: 18px;
  align-items: center;
}

.social-personnel-chart-grid--aup .social-personnel-donut-wrap,
.social-personnel-chart-grid--pp .social-personnel-donut-wrap {
  justify-self: center;
  width: min(240px, 100%);
  margin: 0 auto;
}

.social-personnel-chart-grid--aup .social-personnel-chart-legend,
.social-personnel-chart-grid--pp .social-personnel-chart-legend {
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
  min-width: 0;
  gap: 14px 30px;
}

.social-personnel-chart-grid--aup .social-personnel-chart-legend--age,
.social-personnel-chart-grid--pp .social-personnel-chart-legend--age {
  grid-template-columns: repeat(3, max-content);
}

.social-personnel-chart-grid--aup .social-personnel-donut__value,
.social-personnel-chart-grid--pp .social-personnel-donut__value {
  min-width: 74px;
  font-size: clamp(22px, 1.65vw, 30px);
}

.social-personnel-chart-grid--aup .social-personnel-chart-card:nth-child(1) .social-personnel-donut__value--primary,
.social-personnel-chart-grid--pp .social-personnel-chart-card:nth-child(1) .social-personnel-donut__value--primary {
  top: 43%;
  left: -41%;
}

.social-personnel-chart-grid--aup .social-personnel-chart-card:nth-child(1) .social-personnel-donut__value--secondary,
.social-personnel-chart-grid--pp .social-personnel-chart-card:nth-child(1) .social-personnel-donut__value--secondary {
  top: 43%;
  right: -43%;
  bottom: auto;
}

.social-personnel-chart-grid--aup .social-personnel-chart-card:nth-child(2) .social-personnel-donut__value--young,
.social-personnel-chart-grid--pp .social-personnel-chart-card:nth-child(2) .social-personnel-donut__value--young {
  top: 44%;
  left: -42%;
}

.social-personnel-chart-grid--aup .social-personnel-chart-card:nth-child(2) .social-personnel-donut__value--middle,
.social-personnel-chart-grid--pp .social-personnel-chart-card:nth-child(2) .social-personnel-donut__value--middle {
  top: 44%;
  right: -43%;
  bottom: auto;
}

.social-personnel-chart-grid--aup .social-personnel-chart-card:nth-child(2) .social-personnel-donut__value--older {
  top: 2%;
  bottom: auto;
  left: -32%;
}

.social-personnel-chart-grid--pp .social-personnel-chart-card:nth-child(2) .social-personnel-donut__value--older {
  bottom: 2%;
  left: -30%;
}

.social-personnel-person-stat {
  display: grid;
  justify-items: center;
  align-content: end;
  gap: 6px;
  min-width: 0;
  color: var(--corporate-heading);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.social-personnel-person-stat img {
  display: block;
  width: 36px;
  height: 86px;
  object-fit: contain;
}

.social-personnel-person-stat strong {
  font-size: clamp(28px, 2.35vw, 40px);
  line-height: 1;
}

.social-personnel-person-stat--men strong {
  color: var(--personnel-teal);
}

.social-personnel-person-stat--women strong {
  color: var(--personnel-blue);
}

.social-personnel-person-stat--women {
  align-content: start;
  transform: translateY(-2px);
}

.social-personnel-person-stat--women img {
  transform: translateY(2px);
}

.social-personnel-chart-legend {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-personnel-chart-legend li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  min-width: 0;
  color: var(--corporate-text);
  font-size: 16px;
  line-height: 1.35;
}

.social-personnel-chart-legend strong {
  color: var(--corporate-heading);
  font-size: 20px;
  line-height: 1;
}

.social-personnel-chart-legend__marker {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  margin-top: 3px;
}

.social-personnel-chart-legend__marker--blue {
  background: var(--personnel-blue);
}

.social-personnel-chart-legend__marker--teal {
  background: var(--personnel-teal);
}

.social-personnel-chart-legend__marker--yellow {
  background: var(--personnel-yellow);
}

.social-personnel-staff {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: clamp(48px, 5vw, 86px);
  margin-top: clamp(54px, 5.2vw, 82px);
  align-items: start;
}

.social-personnel-staff--charts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(48px, 5vw, 74px);
}

.social-personnel-staff__chart {
  min-width: 0;
  padding-top: 22px;
  border-top: 2px solid rgba(48, 78, 124, 0.18);
}

.social-personnel-staff__headings {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 0.4fr);
  gap: 24px;
  align-items: end;
}

.social-personnel-bar-chart {
  display: grid;
  gap: 30px;
  margin-top: 38px;
}

.social-personnel-bar-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.social-personnel-bar-row__year {
  color: var(--personnel-blue);
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
  align-self: end;
  margin-bottom: 3px;
}

.social-personnel-bar-row__year--current,
.social-personnel-headcount-row__year--current {
  display: inline-flex;
  align-items: center;
  width: 58px;
  min-height: 27px;
  padding: 0 15px 0 9px;
  color: #fff;
  background: var(--personnel-teal);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
  font-size: 16px;
  justify-content: center;
}

.social-personnel-headcount-bars {
  display: grid;
  gap: 30px;
  margin-top: 38px;
}

.social-personnel-headcount-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 46px;
}

.social-personnel-headcount-row__year {
  color: var(--personnel-blue);
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
  align-self: end;
  margin-bottom: 3px;
}

.social-personnel-headcount-row__year.social-personnel-headcount-row__year--current {
  color: #fff;
  font-size: 16px;
}

.social-personnel-bar-row__plot,
.social-personnel-headcount-row__track {
  position: relative;
  min-width: 0;
  padding-top: 24px;
}

.social-personnel-source-bar {
  display: block;
  width: 100%;
  height: 28px;
  overflow: visible;
}

.social-personnel-source-bar__segment--young,
.social-personnel-source-bar__segment--blue {
  fill: var(--personnel-blue);
}

.social-personnel-source-bar__segment--middle {
  fill: var(--personnel-teal);
}

.social-personnel-source-bar__segment--older {
  fill: var(--personnel-yellow);
}

.social-personnel-bar-row__values {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 18px;
}

.social-personnel-bar-row__value {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  font-size: clamp(16px, 1.15vw, 20px);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.social-personnel-bar-row__value--young {
  color: var(--personnel-blue);
}

.social-personnel-bar-row__value--middle {
  color: var(--personnel-teal);
}

.social-personnel-bar-row__value--older {
  color: var(--personnel-yellow);
}

.social-personnel-headcount-row__value {
  position: absolute;
  top: 0;
  transform: translateX(-92%);
  color: var(--personnel-blue) !important;
  font-size: clamp(16px, 1.15vw, 20px);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.social-personnel-headcount-row__value--current {
  color: var(--personnel-teal) !important;
}

.social-personnel-chart-legend--inline {
  grid-template-columns: repeat(3, max-content);
  gap: 14px 24px;
  margin-top: 22px;
}

.social-personnel-staff__text {
  min-width: 0;
}

.social-personnel-headcount__summary {
  max-width: none;
  margin-top: clamp(42px, 4.4vw, 66px) !important;
  color: var(--corporate-text) !important;
  font-weight: 500 !important;
}

.social-personnel-headcount__summary + .social-personnel-chart-grid {
  margin-top: clamp(52px, 5vw, 78px);
}

.social-personnel-headcount__notes {
  margin-top: clamp(42px, 4.4vw, 66px);
}

.social-personnel-followup {
  margin-top: clamp(70px, 7vw, 112px);
}

.social-personnel-region-panel h4,
.social-personnel-turnover-card h4 {
  margin: 0 0 clamp(28px, 2.6vw, 40px);
  color: var(--corporate-heading);
  font-size: clamp(17px, 1.18vw, 21px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.social-personnel-region-chart {
  display: grid;
  gap: 0;
  width: 100%;
}

.social-personnel-region-row {
  display: grid;
  grid-template-columns: minmax(190px, 280px) minmax(0, 1fr);
  gap: clamp(18px, 2.2vw, 34px);
  align-items: center;
  min-height: 52px;
  border-top: 1px solid rgba(87, 183, 184, 0.62);
}

.social-personnel-region-row p {
  margin: 0;
  color: var(--corporate-heading);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.18;
  text-align: right;
}

.social-personnel-region-row__plot {
  min-width: 0;
}

.social-personnel-region-row__field {
  position: relative;
  height: 42px;
  margin-right: clamp(86px, 8vw, 132px);
}

.social-personnel-region-svg {
  position: absolute;
  inset: 4px 0 0;
  display: block;
  width: 100%;
  height: 34px;
  overflow: visible;
  fill-rule: nonzero;
}

.social-personnel-region-svg__bar--men {
  fill: #57b7b8;
}

.social-personnel-region-svg__bar--women {
  fill: #3b5582;
}

.social-personnel-region-row__value {
  position: absolute;
  z-index: 2;
  transform: translateX(clamp(12px, 1.1vw, 18px));
  font-size: clamp(16px, 1.05vw, 19px);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.social-personnel-region-row__value--women {
  top: 3px;
  left: var(--women);
  color: #3b5582 !important;
}

.social-personnel-region-row__value--men {
  top: 23px;
  left: var(--men);
  color: #57b7b8 !important;
}

.social-personnel-region-legend {
  display: flex;
  justify-content: flex-end;
  gap: clamp(30px, 4vw, 64px);
  margin: 20px clamp(86px, 8vw, 132px) 0 0;
  padding: 0;
  list-style: none;
  color: var(--corporate-heading);
  font-size: 15px;
  font-weight: 700;
}

.social-personnel-region-legend li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-personnel-region-legend__marker {
  width: 16px;
  height: 16px;
}

.social-personnel-region-legend__marker--men {
  background: #57b7b8;
}

.social-personnel-region-legend__marker--women {
  background: #3b5582;
}

.social-personnel-turnover-lead {
  margin: clamp(48px, 5vw, 72px) 0 0 !important;
}

.social-personnel-turnover-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(48px, 5vw, 76px);
  margin-top: clamp(30px, 3vw, 44px);
}

.social-personnel-metric-bars {
  display: grid;
  gap: clamp(24px, 2.1vw, 32px);
}

.social-personnel-metric-row {
  --metric-color: #3b5582;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 38px;
}

.social-personnel-metric-row--current {
  --metric-color: #57b7b8;
}

.social-personnel-metric-row__year {
  color: #3b5582;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.social-personnel-metric-row__year--current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  min-height: 27px;
  padding: 0 15px 0 9px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
  color: #fff;
  font-size: 16px;
  background: #57b7b8;
}

.social-personnel-metric-row__track {
  position: relative;
  width: min(100%, clamp(320px, 25vw, 410px));
  min-width: 0;
  aspect-ratio: 186.9201 / 18.008;
  height: auto;
}

.social-personnel-metric-svg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.social-personnel-metric-svg__bar,
.social-personnel-metric-svg__dot {
  fill: var(--metric-color);
}

.social-personnel-metric-svg__connector {
  fill: none;
  stroke: var(--metric-color);
  stroke-width: 1;
}

.social-personnel-metric-svg__pill {
  fill: none;
  stroke: var(--metric-color);
  stroke-width: 1;
}

.social-personnel-metric-row__value {
  position: absolute;
  top: 50%;
  left: 88.45%;
  z-index: 2;
  min-width: 48px;
  transform: translate(-50%, -52%);
  color: var(--metric-color);
  font-size: clamp(14px, 0.92vw, 16px);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.social-personnel-parental-note {
  margin: clamp(42px, 4.2vw, 62px) 0 0 !important;
}

.social-personnel-table-wrap {
  margin-top: clamp(30px, 3vw, 46px);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
}

.social-personnel-table-wrap .strategy-table-title {
  max-width: none;
  padding: 0 0 24px;
  color: var(--corporate-heading);
  font-weight: 800;
  text-transform: uppercase;
}

.social-personnel-table-wrap .strategy-table-title span {
  color: var(--personnel-teal);
}

.social-personnel-table-wrap .strategy-wide-table {
  border-bottom: 3px solid var(--personnel-teal);
}

.social-personnel-table-wrap .strategy-wide-table th,
.social-personnel-table-wrap .strategy-wide-table td {
  padding: 18px 20px;
  border-top-color: rgba(48, 78, 124, 0.28);
  background: transparent;
  color: var(--corporate-heading);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.22;
  text-align: center;
}

.social-personnel-table-wrap .strategy-wide-table th {
  color: #fff;
  background: var(--personnel-blue);
}

.social-personnel-table-wrap .strategy-wide-table th:first-child {
  background: var(--personnel-teal);
}

.social-personnel-table-wrap .strategy-wide-table tbody tr:first-child td {
  color: var(--personnel-teal);
}

.social-personnel-footnotes {
  display: grid;
  gap: 8px;
  margin-top: clamp(26px, 2.6vw, 40px);
  padding-top: 18px;
  border-top: 1px solid rgba(48, 78, 124, 0.18);
}

.social-personnel-footnotes p {
  margin: 0;
  font-size: 14px;
  line-height: 1.42;
}

.social-personnel-recruitment__intro {
  align-items: start;
  margin-bottom: clamp(34px, 3.6vw, 54px);
}

.social-personnel-recruitment__intro .social-personnel-principles-title {
  margin: 0 0 18px;
  font-size: clamp(17px, 1.05vw, 19px);
  line-height: 1.25;
}

.social-personnel-recruitment__summary {
  max-width: none;
  margin: clamp(28px, 3vw, 44px) 0 0 !important;
  color: var(--corporate-heading) !important;
  font-weight: 400 !important;
}

.social-personnel-hiring-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(46px, 5vw, 78px);
  margin-top: clamp(46px, 4.8vw, 72px);
  align-items: start;
}

.social-personnel-hiring-card {
  min-width: 0;
  padding-top: 22px;
  border-top: 2px solid rgba(48, 78, 124, 0.18);
}

.social-personnel-hiring-card h4 {
  margin: 0 0 clamp(28px, 2.6vw, 40px);
  color: var(--corporate-heading);
  font-size: clamp(17px, 1.18vw, 21px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.social-personnel-recruitment__intro .social-personnel-hiring-card--age {
  margin-top: clamp(44px, 4.6vw, 68px);
}

.social-personnel-hiring-age-bars {
  display: grid;
  gap: clamp(20px, 2vw, 28px);
}

.social-personnel-hiring-age-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 78px;
}

.social-personnel-hiring-age-row__year {
  color: #3b5582;
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
}

.social-personnel-hiring-age-row__year--current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  min-height: 27px;
  padding: 0 15px 0 9px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
  color: #fff;
  font-size: 16px;
  background: var(--personnel-teal);
}

.social-personnel-hiring-age-row__track {
  min-width: 0;
}

.social-personnel-hiring-age-row__source {
  position: relative;
  width: calc(clamp(290px, 25vw, 430px) * var(--source-ratio, 1));
  max-width: 100%;
}

.social-personnel-hiring-age-row__source--2025 {
  --source-ratio: 0.6795;
}

.social-personnel-hiring-age-row__source--2024 {
  --source-ratio: 0.7216;
}

.social-personnel-hiring-age-row__source--2023 {
  --source-ratio: 1;
}

.social-personnel-hiring-age-row__source img {
  display: block;
  width: 100%;
  height: auto;
}

.social-personnel-hiring-age-row__value {
  position: absolute;
  top: 21%;
  transform: translate(-50%, -50%);
  font-size: clamp(11px, 0.78vw, 13px);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.social-personnel-hiring-age-row__value--young {
  color: #3b5582;
}

.social-personnel-hiring-age-row__value--middle {
  color: var(--personnel-teal);
}

.social-personnel-hiring-age-row__value--older {
  color: var(--personnel-yellow);
}

.social-personnel-hiring-age-row__source--2025 .social-personnel-hiring-age-row__value--young {
  left: 14.6%;
}

.social-personnel-hiring-age-row__source--2025 .social-personnel-hiring-age-row__value--middle {
  left: 55.4%;
}

.social-personnel-hiring-age-row__source--2025 .social-personnel-hiring-age-row__value--older {
  left: 87.4%;
}

.social-personnel-hiring-age-row__source--2024 .social-personnel-hiring-age-row__value--young {
  left: 13.8%;
}

.social-personnel-hiring-age-row__source--2024 .social-personnel-hiring-age-row__value--middle {
  left: 54%;
}

.social-personnel-hiring-age-row__source--2024 .social-personnel-hiring-age-row__value--older {
  left: 88.1%;
}

.social-personnel-hiring-age-row__source--2023 .social-personnel-hiring-age-row__value--young {
  left: 14.9%;
}

.social-personnel-hiring-age-row__source--2023 .social-personnel-hiring-age-row__value--middle {
  left: 55.3%;
}

.social-personnel-hiring-age-row__source--2023 .social-personnel-hiring-age-row__value--older {
  left: 90.4%;
}

.social-personnel-hiring-age-legend {
  margin-top: clamp(20px, 2.2vw, 32px);
}

.social-personnel-hiring-region-chart .social-personnel-region-row {
  grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
  gap: clamp(16px, 2vw, 28px);
  min-height: 50px;
}

.social-personnel-hiring-region-chart .social-personnel-region-row p {
  font-size: 14px;
}

.social-personnel-hiring-region-chart .social-personnel-region-row__field {
  margin-right: clamp(58px, 6vw, 96px);
}

.social-personnel-hiring-region-chart .social-personnel-region-row__value {
  font-size: clamp(13px, 0.9vw, 16px);
}

.social-personnel-hiring-region-chart .social-personnel-region-legend {
  margin-right: clamp(58px, 6vw, 96px);
}

.social-personnel-adaptation {
  margin-top: clamp(54px, 5.6vw, 86px);
  align-items: start;
}

.social-personnel-adaptation .social-personnel-column > p:first-child {
  margin-top: 0;
}

.social-personnel-adaptation-list {
  gap: 12px;
  margin: 12px 0 clamp(42px, 4.8vw, 66px);
}

.social-personnel-adaptation-list li::before {
  --corporate-list-bullet: var(--personnel-teal);
  border-color: var(--personnel-teal);
}

.social-personnel-adaptation-list li::after {
  background: var(--personnel-teal);
}

.social-personnel-learning-title {
  margin: 0 0 18px;
  color: var(--corporate-heading);
  font-size: clamp(32px, 2.8vw, 46px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.social-personnel-learning-gri {
  margin-bottom: clamp(26px, 2.6vw, 38px);
}

.social-personnel-practice-card {
  width: 100%;
  justify-self: stretch;
  overflow: hidden;
  margin-left: 0;
  background: #dbe6ec;
  border-radius: 28px 0 32px;
}

.social-personnel-practice-card__header {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 28px 17px;
  border-radius: 28px 0 28px 0;
  color: #fff;
  background: var(--personnel-blue);
}

.social-personnel-practice-card__header h4 {
  margin: 0;
  color: inherit;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: uppercase;
}

.social-personnel-practice-card__icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  background: url("assets/practice-icon.svg") center / contain no-repeat;
}

.social-personnel-practice-card__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  margin-top: -28px;
  aspect-ratio: 1.55;
  object-fit: cover;
  object-position: center;
}

.social-personnel-practice-card__body {
  padding: 42px 58px 34px;
  background: #dbe6ec;
}

.social-personnel-practice-card__body p {
  margin: 0 0 24px;
  color: #3a3a3a;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.34;
}

.social-personnel-practice-card__body p:last-of-type {
  margin-bottom: 0;
}

.social-personnel-practice-card__ornament {
  height: 46px;
  margin-top: 34px;
  background: url("assets/practice-ornament.svg") right bottom / 100% auto no-repeat;
}

.social-personnel-practice-card__ornament::before {
  content: none;
}

.social-personnel-learning-continuation {
  margin-top: clamp(76px, 6vw, 112px);
  align-items: start;
}

.social-personnel-learning-metrics {
  display: grid;
  gap: clamp(62px, 5vw, 88px);
  margin-bottom: clamp(58px, 5vw, 82px);
}

.social-personnel-learning-metric-card h4 {
  margin: 0 0 26px;
  min-height: 2.44em;
  color: var(--corporate-heading);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 0;
  text-transform: uppercase;
}

.social-personnel-learning-metric-card .social-personnel-metric-row__track {
  width: min(100%, 410px);
}

.social-personnel-learning-metric-track::before {
  content: "";
  position: absolute;
  top: 50%;
  left: var(--learning-connector-left);
  z-index: 3;
  width: var(--learning-connector-width);
  border-top: 1px solid var(--metric-color);
  transform: translateY(-50%);
  pointer-events: none;
}

.social-personnel-learning-metric-track .social-personnel-metric-svg {
  z-index: 2;
}

.social-personnel-learning-metric-track .social-personnel-metric-row__value {
  z-index: 4;
}

.social-personnel-learning-metric-track--investment-2025,
.social-personnel-learning-metric-track--investment-2024 {
  --learning-connector-left: 72.89%;
  --learning-connector-width: 4.65%;
}

.social-personnel-learning-metric-track--investment-2023 {
  --learning-connector-left: 58.33%;
  --learning-connector-width: 19.21%;
}

.social-personnel-learning-metric-track--hours-2025,
.social-personnel-learning-metric-track--hours-2023 {
  --learning-connector-left: 61.37%;
  --learning-connector-width: 20.72%;
}

.social-personnel-learning-metric-track--hours-2024 {
  --learning-connector-left: 72.89%;
  --learning-connector-width: 9.2%;
}

.social-personnel-learning-metric-card--hours .social-personnel-metric-row__value {
  left: 90.65%;
  min-width: 34px;
}

.social-personnel-learning-continuation > .social-personnel-column:nth-child(2) > .social-personnel-learning-metric-card--hours {
  margin-bottom: clamp(58px, 5vw, 82px);
}

.social-personnel-subtitle {
  margin: 0 0 22px;
  color: var(--corporate-heading);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: 0;
}

.social-personnel-learning-continuation p,
.social-personnel-modules p {
  margin-top: 0;
}

.social-personnel-learning-list {
  gap: 12px;
  margin: 0 0 28px;
}

.social-personnel-learning-list li {
  font-size: 16px;
  line-height: 1.35;
}

.social-personnel-learning-list li::before {
  --corporate-list-bullet: var(--personnel-teal);
  border-color: var(--personnel-teal);
}

.social-personnel-learning-list li::after {
  background: var(--personnel-teal);
}

.social-personnel-learning-wide-note {
  margin: clamp(28px, 3vw, 44px) 0 clamp(52px, 5vw, 78px);
  color: var(--corporate-text);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
}

.social-personnel-learning-continuation + .social-personnel-learning-wide-note {
  margin-top: 0;
  padding-top: clamp(36px, 3.8vw, 58px);
}

.social-personnel-modules {
  margin-top: 0;
  align-items: start;
}

.social-personnel-modules__image {
  margin: 0;
}

.social-personnel-modules__image img {
  display: block;
  width: 100%;
  height: auto;
}

.social-personnel-performance__grid {
  align-items: start;
}

.social-personnel-performance-list {
  gap: 16px;
  margin-top: clamp(22px, 2.4vw, 34px);
}

.social-personnel-performance__summary {
  margin-top: 0 !important;
  color: var(--corporate-text) !important;
}

.social-personnel-performance-chart {
  margin-top: clamp(42px, 4vw, 64px);
}

.social-personnel-performance-chart h4 {
  margin: 0 0 clamp(28px, 2.6vw, 40px);
  color: var(--corporate-heading);
  font-size: clamp(17px, 1.12vw, 20px);
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
}

.social-personnel-performance-bars {
  gap: clamp(22px, 2vw, 30px);
}

.social-personnel-performance-row {
  --metric-color: var(--personnel-yellow);
}

.social-personnel-performance-track {
  width: min(100%, 410px);
}

.social-personnel-performance-track::before {
  content: "";
  position: absolute;
  top: 50%;
  left: var(--performance-connector-left);
  z-index: 3;
  width: var(--performance-connector-width);
  height: 1px;
  background: var(--personnel-yellow);
  transform: translateY(-50%);
}

.social-personnel-performance-track .social-personnel-metric-svg {
  z-index: 2;
}

.social-personnel-performance-track .social-personnel-metric-row__value {
  z-index: 4;
  color: var(--personnel-yellow) !important;
}

.social-personnel-performance-track__percent {
  position: absolute;
  top: 50%;
  left: var(--performance-percent-left);
  z-index: 4;
  transform: translate(-50%, -52%);
  color: #fff;
  font-size: clamp(8px, 0.55vw, 10px);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.social-personnel-performance-track--2025 {
  --performance-connector-left: 65.92%;
  --performance-connector-width: 11.62%;
  --performance-percent-left: 59.39%;
}

.social-personnel-performance-track--2024 {
  --performance-connector-left: 72.89%;
  --performance-connector-width: 4.65%;
  --performance-percent-left: 63.26%;
}

.social-personnel-performance-track--2023 {
  --performance-connector-left: 68.49%;
  --performance-connector-width: 9.05%;
  --performance-percent-left: 60.45%;
}

.social-personnel-performance-legend {
  grid-template-columns: minmax(0, 1fr);
  max-width: 430px;
  margin-top: clamp(24px, 2.4vw, 34px);
}

.social-personnel-performance-legend li {
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.28;
}

.social-personnel-performance-legend li span:last-child {
  display: block;
}

.social-personnel-succession__top,
.social-personnel-succession__grid {
  align-items: start;
}

.social-personnel-succession__top {
  margin-bottom: clamp(76px, 6vw, 108px);
}

.social-personnel-section-title-small {
  margin: 0 0 18px;
  color: var(--corporate-heading);
  font-size: clamp(20px, 1.45vw, 25px);
  font-weight: 800;
  line-height: 1.14;
}

.social-personnel-succession-title {
  max-width: 900px;
  margin: 0 !important;
  color: var(--corporate-heading);
  font-size: clamp(32px, 2.5vw, 44px) !important;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0;
  text-transform: none !important;
}

.social-personnel-succession__header {
  margin-bottom: clamp(30px, 3vw, 46px);
}

.social-personnel-succession-list {
  gap: 12px;
  margin: 18px 0 26px;
}

.social-personnel-succession-list li {
  font-size: 16px;
  line-height: 1.34;
}

.social-personnel-succession-list li::before {
  --corporate-list-bullet: var(--personnel-teal);
  border-color: var(--personnel-teal);
}

.social-personnel-succession-list li::after {
  background: var(--personnel-teal);
}

.social-personnel-succession-list--awards {
  gap: 10px;
  margin-bottom: 28px;
}

.social-personnel-youth__grid,
.social-personnel-remuneration__grid {
  align-items: start;
}

.social-personnel-remuneration__grid--continuation {
  margin-top: clamp(64px, 5.6vw, 92px);
}

.social-personnel-youth .social-personnel-subtitle,
.social-personnel-remuneration .social-personnel-subtitle {
  margin-top: clamp(34px, 3vw, 48px);
}

.social-personnel-youth .social-personnel-column > .social-personnel-subtitle:first-child,
.social-personnel-remuneration .social-personnel-column > .social-personnel-subtitle:first-child {
  margin-top: 0;
}

.social-personnel-sub-gri {
  margin: -6px 0 18px !important;
  font-size: 16px !important;
}

.social-personnel-remuneration-table-wrap {
  margin: clamp(34px, 3vw, 48px) 0 clamp(42px, 4vw, 62px);
  background: transparent;
}

.social-personnel-remuneration-table {
  min-width: 360px;
  table-layout: fixed;
}

.social-personnel-remuneration-table th + th,
.social-personnel-remuneration-table td + td {
  border-left: 1px solid rgba(48, 78, 124, 0.28);
}

.social-personnel-table-wrap .social-personnel-remuneration-table th:first-child,
.social-personnel-table-wrap .social-personnel-remuneration-table th:nth-child(2) {
  background: var(--personnel-blue);
}

.social-personnel-table-wrap .social-personnel-remuneration-table th:last-child {
  background: var(--personnel-teal);
}

.social-personnel-table-wrap .social-personnel-remuneration-table tbody tr:first-child td {
  color: var(--corporate-heading);
}

.social-personnel-table-wrap .social-personnel-remuneration-table tbody tr:first-child td:last-child {
  color: var(--personnel-teal);
}

.social-personnel-social-policy__grid {
  align-items: start;
}

.social-personnel-social-policy__grid + .social-personnel-social-policy__grid {
  margin-top: clamp(66px, 6vw, 96px);
}

.social-personnel-social-policy .social-personnel-subtitle {
  margin-top: clamp(34px, 3vw, 48px);
}

.social-personnel-social-policy .social-personnel-column > .social-personnel-subtitle:first-child {
  margin-top: 0;
}

.social-personnel-social-policy-photo {
  margin: clamp(42px, 4vw, 62px) 0 0;
  overflow: hidden;
  border-radius: 6px;
  background: #dce8ef;
  box-shadow: 0 18px 48px rgba(17, 45, 74, 0.14);
}

.social-personnel-social-policy-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 2.58 / 1;
  object-fit: cover;
}

.social-personnel-social-policy-list {
  gap: 12px;
  margin: 18px 0 0;
}

.social-personnel-social-policy-list li {
  font-size: 16px;
  line-height: 1.36;
}

.social-personnel-social-policy-list li::before {
  --corporate-list-bullet: var(--personnel-teal);
  border-color: var(--personnel-teal);
}

.social-personnel-social-policy-list li::after {
  background: var(--personnel-teal);
}

.social-personnel-social-policy__grid--unified .social-personnel-principles-title {
  margin-top: clamp(28px, 2.6vw, 40px);
}

.social-personnel-social-policy__standardization {
  margin-top: clamp(64px, 5vw, 88px) !important;
}

.social-personnel-support-chart {
  margin-top: clamp(42px, 4vw, 64px);
}

.social-personnel-support-chart h4 {
  margin: 0 0 clamp(28px, 2.6vw, 40px);
  color: var(--corporate-heading);
  font-size: clamp(17px, 1.12vw, 20px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
  text-transform: uppercase;
}

.social-personnel-support-bars {
  gap: clamp(24px, 2.2vw, 34px);
}

.social-personnel-support-track {
  width: min(100%, 410px);
  aspect-ratio: 187.6586 / 18.008;
}

.social-personnel-support-track::before {
  content: "";
  position: absolute;
  top: 50%;
  left: var(--support-connector-left);
  z-index: 3;
  width: var(--support-connector-width);
  border-top: 1px solid var(--metric-color);
  transform: translateY(-50%);
  pointer-events: none;
}

.social-personnel-support-track .social-personnel-metric-svg {
  z-index: 2;
}

.social-personnel-support-track .social-personnel-metric-row__value {
  z-index: 4;
}

.social-personnel-support-track--2025 {
  --support-connector-left: 70.85%;
  --support-connector-width: 8.18%;
}

.social-personnel-support-track--2024 {
  --support-connector-left: 58.18%;
  --support-connector-width: 20.85%;
}

.social-personnel-support-track--2023 {
  --support-connector-left: 64.38%;
  --support-connector-width: 14.65%;
}

.social-personnel-chart-card--donut-animate .social-personnel-donut-svg,
.social-personnel-chart-row--animate .social-personnel-source-bar,
.social-personnel-chart-row--animate .social-personnel-region-svg,
.social-personnel-chart-row--animate .social-personnel-metric-svg,
.social-personnel-chart-row--animate .social-personnel-hiring-age-row__source img,
.social-personnel-chart-row--animate .social-personnel-learning-metric-track::before,
.social-personnel-chart-row--animate .social-personnel-performance-track::before,
.social-personnel-chart-row--animate .social-personnel-support-track::before {
  will-change: opacity, transform, clip-path;
}

.social-personnel-chart-card--donut-animate .social-personnel-donut-svg {
  --social-personnel-donut-progress: 0;
  opacity: 1;
  -webkit-mask-image: conic-gradient(
    #000 0turn calc(var(--social-personnel-donut-progress) * 1turn),
    transparent calc(var(--social-personnel-donut-progress) * 1turn) 1turn
  );
  mask-image: conic-gradient(
    #000 0turn calc(var(--social-personnel-donut-progress) * 1turn),
    transparent calc(var(--social-personnel-donut-progress) * 1turn) 1turn
  );
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.social-personnel-chart-card--donut-animate .social-personnel-donut__value,
.social-personnel-chart-card--donut-animate .social-personnel-person-stat strong,
.social-personnel-chart-card--donut-animate .social-personnel-person-stat img,
.social-personnel-chart-row--animate .social-personnel-bar-row__value,
.social-personnel-chart-row--animate .social-personnel-headcount-row__value,
.social-personnel-chart-row--animate .social-personnel-region-row__value,
.social-personnel-chart-row--animate .social-personnel-metric-row__value,
.social-personnel-chart-row--animate .social-personnel-hiring-age-row__value,
.social-personnel-chart-row--animate .social-personnel-performance-track__percent {
  opacity: 0;
  transition:
    opacity 260ms ease-out,
    scale 360ms cubic-bezier(0.2, 1, 0.36, 1);
}

.social-personnel-chart-card--donut-animate .social-personnel-donut__value,
.social-personnel-chart-card--donut-animate .social-personnel-person-stat strong,
.social-personnel-chart-row--animate .social-personnel-bar-row__value,
.social-personnel-chart-row--animate .social-personnel-headcount-row__value,
.social-personnel-chart-row--animate .social-personnel-region-row__value,
.social-personnel-chart-row--animate .social-personnel-metric-row__value,
.social-personnel-chart-row--animate .social-personnel-hiring-age-row__value,
.social-personnel-chart-row--animate .social-personnel-performance-track__percent {
  scale: 0.9;
}

.social-personnel-chart-card--donut-animate .social-personnel-person-stat img {
  transition-delay: calc(var(--social-personnel-chart-delay, 0ms) + 260ms);
}

.social-personnel-chart-card--donut-animate .social-personnel-donut__value,
.social-personnel-chart-card--donut-animate .social-personnel-person-stat strong {
  transition-delay: calc(var(--social-personnel-chart-delay, 0ms) + 620ms);
}

.social-personnel-chart-row--animate .social-personnel-source-bar,
.social-personnel-chart-row--animate .social-personnel-region-svg,
.social-personnel-chart-row--animate .social-personnel-metric-svg,
.social-personnel-chart-row--animate .social-personnel-hiring-age-row__source img {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transition:
    clip-path 860ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 260ms ease-out;
  transition-delay: var(--social-personnel-chart-delay, 0ms);
}

.social-personnel-chart-row--animate .social-personnel-learning-metric-track::before,
.social-personnel-chart-row--animate .social-personnel-performance-track::before,
.social-personnel-chart-row--animate .social-personnel-support-track::before {
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
  transition:
    opacity 220ms ease-out,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--social-personnel-chart-delay, 0ms) + 460ms);
}

.social-personnel-chart-row--animate .social-personnel-bar-row__value,
.social-personnel-chart-row--animate .social-personnel-headcount-row__value,
.social-personnel-chart-row--animate .social-personnel-region-row__value,
.social-personnel-chart-row--animate .social-personnel-metric-row__value,
.social-personnel-chart-row--animate .social-personnel-hiring-age-row__value,
.social-personnel-chart-row--animate .social-personnel-performance-track__percent {
  transition-delay: calc(var(--social-personnel-chart-delay, 0ms) + 520ms);
}

.social-personnel-chart-card--donut-animate.is-chart-animated .social-personnel-donut-svg {
  animation: social-personnel-donut-clockwise-reveal 1040ms linear var(--social-personnel-chart-delay, 0ms) forwards;
}

.social-personnel-chart-card--donut-animate.is-chart-animated .social-personnel-donut__value,
.social-personnel-chart-card--donut-animate.is-chart-animated .social-personnel-person-stat strong,
.social-personnel-chart-card--donut-animate.is-chart-animated .social-personnel-person-stat img,
.social-personnel-chart-row--animate.is-chart-animated .social-personnel-bar-row__value,
.social-personnel-chart-row--animate.is-chart-animated .social-personnel-headcount-row__value,
.social-personnel-chart-row--animate.is-chart-animated .social-personnel-region-row__value,
.social-personnel-chart-row--animate.is-chart-animated .social-personnel-metric-row__value,
.social-personnel-chart-row--animate.is-chart-animated .social-personnel-hiring-age-row__value,
.social-personnel-chart-row--animate.is-chart-animated .social-personnel-performance-track__percent {
  opacity: 1;
  scale: 1;
}

.social-personnel-chart-row--animate.is-chart-animated .social-personnel-source-bar,
.social-personnel-chart-row--animate.is-chart-animated .social-personnel-region-svg,
.social-personnel-chart-row--animate.is-chart-animated .social-personnel-metric-svg,
.social-personnel-chart-row--animate.is-chart-animated .social-personnel-hiring-age-row__source img {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

.social-personnel-chart-row--animate.is-chart-animated .social-personnel-learning-metric-track::before,
.social-personnel-chart-row--animate.is-chart-animated .social-personnel-performance-track::before,
.social-personnel-chart-row--animate.is-chart-animated .social-personnel-support-track::before {
  opacity: 1;
  transform: translateY(-50%) scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  .social-personnel-chart-card--donut-animate .social-personnel-donut-svg,
  .social-personnel-chart-card--donut-animate .social-personnel-donut__value,
  .social-personnel-chart-card--donut-animate .social-personnel-person-stat strong,
  .social-personnel-chart-card--donut-animate .social-personnel-person-stat img,
  .social-personnel-chart-row--animate .social-personnel-source-bar,
  .social-personnel-chart-row--animate .social-personnel-region-svg,
  .social-personnel-chart-row--animate .social-personnel-metric-svg,
  .social-personnel-chart-row--animate .social-personnel-hiring-age-row__source img,
  .social-personnel-chart-row--animate .social-personnel-bar-row__value,
  .social-personnel-chart-row--animate .social-personnel-headcount-row__value,
  .social-personnel-chart-row--animate .social-personnel-region-row__value,
  .social-personnel-chart-row--animate .social-personnel-metric-row__value,
  .social-personnel-chart-row--animate .social-personnel-hiring-age-row__value,
  .social-personnel-chart-row--animate .social-personnel-performance-track__percent {
    --social-personnel-donut-progress: 1;
    opacity: 1;
    scale: 1;
    clip-path: inset(0 0 0 0);
    transition: none;
    animation: none;
  }

  .social-personnel-chart-row--animate .social-personnel-learning-metric-track::before,
  .social-personnel-chart-row--animate .social-personnel-performance-track::before,
  .social-personnel-chart-row--animate .social-personnel-support-track::before {
    opacity: 1;
    transform: translateY(-50%) scaleX(1);
    transition: none;
  }
}

@property --social-personnel-donut-progress {
  syntax: "<number>";
  inherits: false;
  initial-value: 1;
}

@keyframes social-personnel-donut-clockwise-reveal {
  from {
    --social-personnel-donut-progress: 0;
  }

  to {
    --social-personnel-donut-progress: 1;
  }
}

.social-personnel-internal-communications__grid,
.social-personnel-ombudsman__grid {
  align-items: start;
}

.social-personnel-internal-communications p,
.social-personnel-ombudsman p {
  max-width: none;
}

/* Social human rights */
.social-human-rights-content {
  --corporate-magenta: var(--section-social-accent);
  --section-governance-accent: var(--section-social-accent);
  --corporate-text: #3a3a3a;
  --corporate-heading: #202832;
  --corporate-line: #b6c5d5;
}

.social-human-rights-content__inner {
  width: min(1500px, calc(100vw - 132px));
}

.social-human-rights-header h2 {
  max-width: 1150px;
}

.social-human-rights-content sup {
  font-size: 0.62em;
  line-height: 0;
  vertical-align: super;
}

.social-human-rights-section {
  margin-top: 0;
}

.social-human-rights-section + .social-human-rights-section {
  margin-top: clamp(76px, 7vw, 116px);
}

.social-human-rights-section__header {
  width: 100%;
  margin-bottom: clamp(30px, 3vw, 44px);
}

.social-human-rights-columns {
  gap: clamp(48px, 5vw, 86px);
}

.social-human-rights-columns--compact {
  gap: clamp(34px, 3.5vw, 58px);
}

.social-human-rights-column {
  min-width: 0;
}

.social-human-rights-single-column {
  max-width: 760px;
}

.social-human-rights-column > h3:not(:first-child) {
  margin-top: clamp(42px, 4vw, 62px);
}

.social-human-rights-column > h4:not(:first-child) {
  margin-top: clamp(30px, 3vw, 44px);
}

.social-human-rights-subtitle,
.social-human-rights-minor-title {
  color: var(--corporate-heading) !important;
  font-weight: 800 !important;
}

.social-human-rights-subtitle {
  margin-top: 0;
}

.social-human-rights-appeals-intro {
  max-width: none;
}

.social-human-rights-channel-title {
  margin-top: clamp(38px, 3.6vw, 56px);
  margin-bottom: clamp(28px, 2.8vw, 42px);
  font-size: 26px;
  line-height: 1.12;
}

.social-human-rights-minor-title {
  margin: 0 0 14px !important;
}

.social-human-rights-list {
  gap: 12px;
  margin-bottom: 26px;
}

.social-human-rights-list--top {
  margin-top: 0;
}

.social-human-rights-list li::before {
  --corporate-list-bullet: var(--section-social-accent);
  border-color: var(--section-social-accent);
}

.social-human-rights-list li::after {
  background: var(--section-social-accent);
}

.social-human-rights-channel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(42px, 4.5vw, 68px) clamp(48px, 5vw, 86px);
  margin-top: 0;
}

.social-human-rights-stat {
  min-width: 0;
  padding-top: 0;
  border-top: 0;
}

.social-human-rights-channel {
  min-width: 0;
  padding-top: 0;
  border-top: 0;
}

.social-human-rights-channel--wide {
  grid-column: 1 / -1;
}

.social-human-rights-wide-text {
  max-width: none;
  margin-bottom: clamp(28px, 2.8vw, 42px);
}

.social-human-rights-alpha-footnote {
  color: #43a047;
  font-weight: 800;
}

.social-human-rights-wide-text--bottom {
  margin-top: 0;
  padding-top: clamp(32px, 3.2vw, 48px);
  margin-bottom: 0;
}

.social-human-rights-channel h4,
.social-human-rights-stat h4 {
  margin-bottom: 18px;
}

.social-human-rights-channel > h4:not(:first-child) {
  margin-top: clamp(30px, 3vw, 44px);
}

.social-human-rights-channel p:last-child,
.social-human-rights-stat p:last-child {
  margin-bottom: 0;
}

.social-human-rights-stat + .social-human-rights-stat {
  margin-top: clamp(34px, 3.4vw, 50px);
}

.social-human-rights-section--stats-regulation .social-human-rights-section__header {
  margin-bottom: clamp(26px, 2.8vw, 38px);
}

/* Social communities and investments */
.social-communities-content {
  --corporate-magenta: var(--section-social-accent);
  --section-governance-accent: var(--section-social-accent);
  --corporate-text: #3a3a3a;
  --corporate-heading: #202832;
  --corporate-line: #b6c5d5;
  --communities-teal: #57b7b8;
  --communities-blue: #3b5582;
}

.social-communities-content__inner {
  width: min(1500px, calc(100vw - 132px));
}

.social-communities-header h2 {
  max-width: 980px;
}

.social-communities-content sup {
  font-size: 0.62em;
  line-height: 0;
  vertical-align: super;
}

.social-communities-alpha-footnote {
  color: var(--section-social-accent);
  font-weight: 800;
}

.social-communities-section {
  margin-top: 0;
}

.social-communities-section + .social-communities-section {
  margin-top: clamp(76px, 7vw, 116px);
}

.social-communities-section__header {
  margin-bottom: clamp(28px, 3vw, 42px);
}

.social-communities-section--lead {
  width: 100%;
  max-width: none;
}

.social-communities-columns {
  gap: clamp(56px, 5.6vw, 96px);
}

.social-communities-column {
  min-width: 0;
}

.social-communities-lead {
  width: 100%;
  max-width: none;
  font-weight: 500 !important;
}

.social-communities-investments h3 {
  margin-bottom: clamp(24px, 2.4vw, 36px);
}

.social-communities-list {
  margin-top: 28px;
  gap: 16px;
}

.social-communities-list li::before {
  --corporate-list-bullet: var(--section-social-accent);
  border-color: var(--section-social-accent);
}

.social-communities-list li::after {
  background: var(--section-social-accent);
}

.social-communities-funding-chart {
  margin-top: clamp(42px, 4vw, 62px);
  max-width: 620px;
}

.social-communities-funding-chart h4 {
  max-width: 520px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.social-communities-funding-bars {
  display: grid;
  gap: 22px;
}

.social-communities-funding-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.social-communities-funding-row__year {
  display: flex;
  box-sizing: border-box;
  width: 72px;
  min-height: 30px;
  align-items: center;
  justify-content: flex-start;
  padding-left: 12px;
  color: var(--communities-blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.social-communities-funding-row--current .social-communities-funding-row__year {
  width: 72px;
  min-height: 30px;
  align-items: center;
  justify-content: flex-start;
  padding: 0 18px 0 12px;
  color: #fff;
  background: var(--communities-teal);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
}

.social-communities-funding-row__track {
  --row-color: var(--communities-blue);
  --value-column: 76px;
  --value-gap: 34px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--value-column);
  column-gap: var(--value-gap);
  align-items: center;
  min-height: 32px;
}

.social-communities-funding-row--current .social-communities-funding-row__track {
  --row-color: var(--communities-teal);
}

.social-communities-funding-row__track::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 0;
  right: var(--value-column);
  height: 2px;
  background: var(--row-color);
  transform: translateY(-50%);
}

.social-communities-funding-row__bar {
  position: relative;
  z-index: 1;
  grid-column: 1;
  width: var(--value);
  max-width: 100%;
  height: 16px;
}

.social-communities-funding-row__bar--teal {
  background: var(--communities-teal);
}

.social-communities-funding-row__bar--blue {
  background: var(--communities-blue);
}

.social-communities-funding-row__value {
  position: relative;
  z-index: 2;
  grid-column: 2;
  display: inline-flex;
  width: 66px;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: var(--communities-blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  background: #f6fafc;
  border: 2px solid var(--communities-blue);
  border-radius: 999px;
}

.social-communities-funding-row--current .social-communities-funding-row__value {
  color: var(--communities-teal);
  border-color: var(--communities-teal);
}

.social-communities-funding-row__value::before {
  content: none;
}

.social-communities-funding-row__value::after {
  content: "";
  position: absolute;
  left: -5px;
  top: 50%;
  width: 10px;
  height: 10px;
  background: currentColor;
  border-radius: 50%;
  transform: translateY(-50%);
}

.social-communities-funding-chart--animate .social-communities-funding-row__track::before,
.social-communities-funding-chart--animate .social-communities-funding-row__bar,
.social-communities-funding-chart--animate .social-communities-funding-row__value {
  will-change: opacity, transform, scale;
}

.social-communities-funding-chart--animate .social-communities-funding-row__track::before {
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
  transition: transform 780ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--social-communities-chart-delay, 0ms);
}

.social-communities-funding-chart--animate .social-communities-funding-row__bar {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 860ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--social-communities-chart-delay, 0ms) + 120ms);
}

.social-communities-funding-chart--animate .social-communities-funding-row__value {
  opacity: 0;
  scale: 0.9;
  transition:
    opacity 260ms ease-out,
    scale 360ms cubic-bezier(0.2, 1, 0.36, 1);
  transition-delay: calc(var(--social-communities-chart-delay, 0ms) + 520ms);
}

.social-communities-funding-chart--animate.is-chart-animated .social-communities-funding-row__track::before {
  transform: translateY(-50%) scaleX(1);
}

.social-communities-funding-chart--animate.is-chart-animated .social-communities-funding-row__bar {
  transform: scaleX(1);
}

.social-communities-funding-chart--animate.is-chart-animated .social-communities-funding-row__value {
  opacity: 1;
  scale: 1;
}

@media (prefers-reduced-motion: reduce) {
  .social-communities-funding-chart--animate .social-communities-funding-row__track::before {
    transform: translateY(-50%) scaleX(1);
    transition: none;
  }

  .social-communities-funding-chart--animate .social-communities-funding-row__bar {
    transform: scaleX(1);
  }

  .social-communities-funding-chart--animate .social-communities-funding-row__value {
    opacity: 1;
    scale: 1;
    transition: none;
  }
}

.social-communities-projects-intro {
  max-width: 760px;
  margin-bottom: clamp(34px, 3.6vw, 52px) !important;
}

.social-communities-project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 3.8vw, 58px) clamp(56px, 5.6vw, 96px);
}

.social-communities-project {
  min-width: 0;
  padding-top: 26px;
  border-top: 2px solid rgba(59, 85, 130, 0.18);
}

.social-communities-project h4 {
  margin-bottom: 18px;
}

.social-communities-pending-project {
  width: 100%;
  max-width: 100%;
}

.social-communities-pending-project h4 {
  margin: 0 0 18px;
  color: var(--corporate-heading);
}

.social-communities-pending-project p {
  margin: 0 !important;
}

.safety-scroll-animations .safety-hse-content .safety-scroll-animate,
.safety-scroll-animations .safety-process-content .safety-scroll-animate {
  opacity: 0;
  transform: translate3d(0, var(--safety-scroll-y, 16px), 0);
  transition:
    opacity var(--safety-scroll-duration, 760ms) cubic-bezier(0.22, 1, 0.36, 1),
    transform var(--safety-scroll-duration, 760ms) cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--safety-scroll-delay, 0ms);
  will-change: opacity, transform;
}

.safety-content--calm-scroll .safety-scroll-animate--soft-title {
  --safety-scroll-y: 22px;
  --safety-scroll-duration: 860ms;
}

.safety-content--calm-scroll .safety-scroll-animate--soft-heading {
  --safety-scroll-y: 12px;
  --safety-scroll-duration: 760ms;
}

.safety-content--calm-scroll .safety-scroll-animate--soft-rise {
  --safety-scroll-y: 18px;
  --safety-scroll-duration: 780ms;
}

.safety-content--calm-scroll .safety-scroll-animate--soft-image {
  --safety-scroll-y: 20px;
  --safety-scroll-duration: 900ms;
}

.safety-content--calm-scroll .safety-scroll-animate--soft-table {
  --safety-scroll-y: 14px;
  --safety-scroll-duration: 820ms;
}

.safety-scroll-animations .safety-hse-content .safety-scroll-animate.is-animated,
.safety-scroll-animations .safety-process-content .safety-scroll-animate.is-animated {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.safety-scroll-animations .safety-hse-system-wheel.safety-scroll-animate {
  transform: translateY(-50%) translate3d(0, var(--safety-scroll-y, 16px), 0);
}

.safety-scroll-animations .safety-hse-system-wheel.safety-scroll-animate.is-animated {
  transform: translateY(-50%) translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .safety-scroll-animations .safety-hse-content .safety-scroll-animate,
  .safety-scroll-animations .safety-process-content .safety-scroll-animate {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .safety-scroll-animations .safety-hse-system-wheel.safety-scroll-animate {
    transform: translateY(-50%);
  }
}

/* Safety: HSE management */
.safety-hse-content {
  --corporate-magenta: var(--section-safety-accent);
  --section-governance-accent: var(--section-safety-accent);
  --corporate-text: #3a3a3a;
  --corporate-heading: #202832;
  --corporate-line: #b6c5d5;
  padding-top: clamp(72px, 6.6vw, 108px);
}

.safety-hse-content__inner {
  width: min(1500px, calc(100vw - 132px));
}

.safety-hse-header {
  margin-bottom: clamp(36px, 4vw, 58px);
}

.safety-hse-header h2 {
  max-width: 1320px;
  color: var(--section-safety-accent);
  font-size: clamp(42px, 3.35vw, 52px);
  line-height: 1.12;
}

.safety-hse-header h2 span {
  display: block;
}

.safety-hse-intro {
  max-width: 1180px;
  gap: clamp(64px, 6vw, 108px);
}

.safety-hse-intro p {
  max-width: 560px;
}

.safety-hse-photo {
  width: 100%;
  margin: clamp(76px, 7.4vw, 122px) 0 0;
}

.safety-hse-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.safety-hse-system {
  margin-top: clamp(82px, 8vw, 132px);
}

.safety-hse-system h3 {
  width: min(1100px, 100%);
  margin: 0 0 clamp(52px, 5vw, 82px);
  color: var(--corporate-text);
  font-size: clamp(28px, 2.25vw, 38px);
  line-height: 1.12;
  font-weight: 900;
}

.safety-hse-system-board {
  --safety-hse-wheel-size: clamp(470px, 35vw, 610px);
  --safety-hse-text-gap: clamp(22px, 2.1vw, 36px);
  position: relative;
  min-height: var(--safety-hse-wheel-size);
  padding: clamp(40px, 4vw, 64px) clamp(28px, 3vw, 48px) clamp(40px, 4vw, 64px) calc(var(--safety-hse-wheel-size) + var(--safety-hse-text-gap));
  background: transparent;
}

.safety-hse-system-board::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: calc(var(--safety-hse-wheel-size) * 0.07);
  right: 0;
  bottom: calc(var(--safety-hse-wheel-size) * 0.07);
  left: calc(var(--safety-hse-wheel-size) * 0.46);
  background: #dce7ed;
  border-radius: 0 34px 0 0;
}

.safety-hse-system-wheel {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 50%;
  width: var(--safety-hse-wheel-size);
  margin: 0;
  transform: translateY(-50%);
}

.safety-hse-system-wheel img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
}

.safety-hse-system-wheel--en {
  left: calc(var(--safety-hse-wheel-size) * -0.071);
  width: calc(var(--safety-hse-wheel-size) * 1.14);
}

.safety-hse-system-wheel--en img {
  aspect-ratio: 1;
  object-fit: contain;
}

.safety-hse-system-wheel--kz {
  left: calc(var(--safety-hse-wheel-size) * -0.208);
  width: calc(var(--safety-hse-wheel-size) * 1.414);
}

.safety-hse-system-wheel--kz img {
  aspect-ratio: 841.89 / 595.28;
  object-fit: contain;
}

.safety-hse-system-board--diagram-animate .safety-hse-system-wheel img {
  --safety-hse-diagram-progress: 0;
  -webkit-mask-image: conic-gradient(
    #000 0turn calc(var(--safety-hse-diagram-progress) * 1turn),
    transparent calc(var(--safety-hse-diagram-progress) * 1turn) 1turn
  );
  mask-image: conic-gradient(
    #000 0turn calc(var(--safety-hse-diagram-progress) * 1turn),
    transparent calc(var(--safety-hse-diagram-progress) * 1turn) 1turn
  );
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  will-change: mask-image;
}

.safety-hse-system-board--diagram-animate.is-diagram-animated .safety-hse-system-wheel img {
  animation: safety-hse-diagram-clockwise-reveal 1180ms linear 120ms forwards;
}

@media (prefers-reduced-motion: reduce) {
  .safety-hse-system-board--diagram-animate .safety-hse-system-wheel img,
  .safety-hse-system-board--diagram-animate.is-diagram-animated .safety-hse-system-wheel img {
    --safety-hse-diagram-progress: 1;
    animation: none;
  }
}

@property --safety-hse-diagram-progress {
  syntax: "<number>";
  inherits: false;
  initial-value: 1;
}

@keyframes safety-hse-diagram-clockwise-reveal {
  from {
    --safety-hse-diagram-progress: 0;
  }

  to {
    --safety-hse-diagram-progress: 1;
  }
}

.safety-hse-system-board__columns {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.12fr 1.08fr 1.08fr 0.98fr;
  gap: clamp(20px, 2vw, 34px);
  align-items: start;
}

.safety-hse-system-board__column {
  display: grid;
  gap: clamp(22px, 2.2vw, 38px);
  align-content: start;
}

.safety-hse-system-group {
  --safety-hse-group-color: var(--section-safety-accent);
  color: var(--corporate-text);
}

.safety-hse-system-group--blue {
  --safety-hse-group-color: #00a9e8;
}

.safety-hse-system-group--red {
  --safety-hse-group-color: #d1555e;
}

.safety-hse-system-group--purple {
  --safety-hse-group-color: #ad64b2;
}

.safety-hse-system-group--yellow {
  --safety-hse-group-color: #c89f16;
}

.safety-hse-system-group h4 {
  margin: 0 0 7px;
  color: var(--safety-hse-group-color);
  font-size: clamp(11px, 0.72vw, 13.5px);
  line-height: 1.12;
  font-weight: 900;
  text-transform: uppercase;
  text-wrap: balance;
}

.safety-hse-arrow-list {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.safety-hse-arrow-list li {
  position: relative;
  padding-left: 13px;
  font-size: clamp(9.8px, 0.64vw, 12px);
  line-height: 1.16;
  font-weight: 500;
}

.safety-hse-arrow-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: -0.04em;
  color: var(--safety-hse-group-color);
  font-weight: 900;
}

.safety-hse-system-group__note {
  margin: 0 0 6px;
  color: var(--safety-hse-group-color);
  font-size: clamp(9.8px, 0.64vw, 12px);
  line-height: 1.16;
  font-weight: 900;
}

.safety-hse-system-group--goals .safety-hse-system-group__note {
  margin-bottom: 0;
  color: #e8c03a;
  font-size: 11px;
  line-height: 1.05;
  font-weight: 900;
}

.safety-hse-system-group--goals .safety-hse-system-group__note strong {
  color: #e8c03a;
  font-size: inherit;
  font-weight: inherit;
}

.safety-hse-system-group--goals .safety-hse-arrow-list {
  gap: 2px;
}

.safety-hse-system-group--goals .safety-hse-arrow-list li {
  color: var(--corporate-text);
  font-weight: 500;
}

.safety-hse-system-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(60px, 6vw, 108px);
  margin-top: clamp(56px, 5.4vw, 86px);
}

.safety-hse-system-copy p {
  margin: 0;
  color: var(--corporate-text);
  font-size: clamp(15px, 0.86vw, 18px);
  line-height: 1.35;
  font-weight: 400;
}

.safety-hse-system-copy p + p,
.safety-hse-tier-list {
  margin-top: 22px;
}

.safety-hse-tier-list {
  gap: 18px;
  color: var(--corporate-text);
  font-size: clamp(15px, 0.86vw, 18px);
  line-height: 1.35;
  font-weight: 400;
}

.safety-hse-tier-list strong {
  font-weight: 800;
}

.safety-hse-tier-list li::before {
  --corporate-list-bullet: var(--section-safety-accent);
  border-color: var(--section-safety-accent);
}

.safety-hse-tier-list li::after {
  background: var(--section-safety-accent);
}

.safety-hse-practice {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(42px, 4vw, 72px);
  align-items: start;
  margin-top: clamp(76px, 6vw, 112px);
}

.safety-hse-practice-card {
  width: 100%;
  justify-self: stretch;
  overflow: hidden;
  margin-left: 0;
  background: #dbe6ec;
  border-radius: 28px 0 32px;
}

.safety-hse-practice-card__header {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 28px 17px;
  color: #fff;
  background: var(--corporate-blue);
  border-radius: 28px 0 28px 0;
}

.safety-hse-practice-card__header h3 {
  margin: 0;
  color: inherit;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.safety-hse-practice-card__icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  background: url("assets/practice-icon.svg") center / contain no-repeat;
}

.safety-hse-practice-card__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  margin-top: -28px;
  aspect-ratio: 1.55;
  object-fit: cover;
  object-position: 58% 18%;
}

.safety-hse-practice-card__body {
  padding: 42px 58px 34px;
  background: #dbe6ec;
}

.safety-hse-practice-card__body p {
  margin: 0 0 24px;
  color: #3a3a3a;
  font-size: 17px;
  line-height: 1.34;
  font-weight: 500;
}

.safety-hse-practice-card__body p:last-of-type {
  margin-bottom: 0;
}

.safety-hse-practice-card__body strong {
  font-weight: 800;
}

.safety-hse-practice-card__ornament {
  height: 46px;
  margin-top: 34px;
  background: url("assets/practice-ornament.svg") right bottom / 100% auto no-repeat;
}

.safety-hse-practice-gallery {
  display: grid;
  gap: clamp(18px, 1.6vw, 26px);
}

.safety-hse-practice-photo {
  margin: 0;
  overflow: hidden;
}

.safety-hse-practice-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1.16;
  object-fit: cover;
  object-position: center;
}

/* Safety: process safety */
.safety-process-content {
  --corporate-magenta: var(--section-safety-accent);
  --section-governance-accent: var(--section-safety-accent);
  --corporate-text: #3a3a3a;
  --corporate-heading: #202832;
  --corporate-line: #b6c5d5;
  padding-top: clamp(72px, 6.6vw, 108px);
}

.safety-process-content__inner {
  width: min(1500px, calc(100vw - 132px));
}

.safety-process-header {
  margin-bottom: clamp(40px, 4.6vw, 72px);
}

.safety-process-header h2 {
  max-width: 1320px;
  color: var(--section-safety-accent);
  font-size: clamp(42px, 3.35vw, 52px);
  line-height: 1.12;
}

.safety-process-section {
  margin-top: clamp(74px, 7vw, 118px);
}

.safety-process-section:first-of-type {
  margin-top: 0;
}

.safety-process-section > h3 {
  margin: 0 0 clamp(30px, 3vw, 48px);
  color: var(--corporate-heading);
  font-size: clamp(32px, 2.2vw, 44px);
  line-height: 1.08;
  font-weight: 900;
}

.safety-process-columns {
  gap: clamp(58px, 6vw, 104px);
}

.safety-process-content .corporate-governance-gri {
  margin: 18px 0 32px;
}

.safety-process-content .corporate-governance-list {
  gap: 14px;
  margin: 0 0 28px;
}

.safety-process-content .corporate-governance-list li::before {
  --corporate-list-bullet: var(--section-safety-accent);
  border-color: var(--section-safety-accent);
}

.safety-process-content .corporate-governance-list li::after {
  background: var(--section-safety-accent);
}

.safety-process-photo {
  margin: clamp(42px, 4vw, 70px) 0 0;
  overflow: hidden;
}

.safety-process-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.safety-process-photo--operator img {
  aspect-ratio: 1.03;
  object-fit: cover;
  object-position: 58% 50%;
}

.safety-process-columns--media {
  align-items: start;
}

.safety-process-columns--media .safety-process-photo {
  margin-top: 0;
}

.safety-process-photo--fire {
  margin-top: clamp(42px, 4vw, 72px);
}

.safety-process-photo--fire img {
  aspect-ratio: 2.62;
  object-fit: cover;
  object-position: center;
}

.safety-process-table-block {
  margin-top: clamp(44px, 4.6vw, 76px);
}

.safety-process-table-block--wide {
  width: 100%;
}

.safety-process-table-title {
  margin: 0 0 22px;
  color: var(--corporate-heading);
  font-size: clamp(18px, 1.2vw, 22px);
  line-height: 1.18;
  font-weight: 900;
  text-transform: uppercase;
}

.safety-process-table-title span {
  color: var(--section-safety-accent);
}

.safety-process-table-title sup {
  font-size: 0.62em;
}

.safety-process-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.safety-process-table {
  width: 100%;
  min-width: 1060px;
  border-collapse: collapse;
  border-bottom: 4px solid var(--section-safety-accent);
  table-layout: fixed;
}

.safety-process-table th,
.safety-process-table td {
  padding: 14px 18px;
  border-bottom: 1px solid #31527b;
  color: var(--corporate-heading);
  font-size: 15px;
  line-height: 1.28;
  font-weight: 500;
  vertical-align: middle;
}

.safety-process-table thead th {
  padding: 16px 18px;
  color: #fff;
  background: var(--corporate-blue);
  font-weight: 900;
  text-align: center;
}

.safety-process-table thead th:first-child {
  background: transparent;
}

.safety-process-table thead th.is-current {
  background: var(--section-safety-accent);
}

.safety-process-table tbody th {
  color: var(--corporate-heading);
  font-weight: 500;
  text-align: left;
}

.safety-process-table tbody td {
  text-align: center;
}

.safety-process-table tbody tr:last-child th,
.safety-process-table tbody tr:last-child td {
  border-bottom: 0;
}

.safety-process-table tbody td:nth-child(4) {
  font-weight: 900;
}

.safety-process-table strong {
  color: var(--corporate-heading);
  font-weight: 900;
}

.safety-process-table sup {
  font-size: 0.7em;
  line-height: 0;
}

.safety-process-table-note {
  display: inline-block;
  margin-left: 4px;
  color: #59b86f;
  font-size: 0.64em;
  line-height: 1;
  font-weight: 900;
  vertical-align: super;
}

.safety-process-table--indicators th:first-child {
  width: 58%;
}

.safety-process-table--ratios th:first-child {
  width: 48%;
}

.safety-process-footnote {
  margin-top: 18px !important;
  color: #6f7d8b !important;
  font-size: 12px !important;
  line-height: 1.36 !important;
  font-weight: 500 !important;
}

.safety-process-footnote a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.safety-process-section--transport .safety-process-table-block {
  margin-top: 0;
  margin-bottom: clamp(48px, 4.8vw, 82px);
}

.safety-contractor-table-block {
  margin-top: clamp(46px, 4.4vw, 72px);
}

.safety-contractor-table {
  min-width: 980px;
}

.safety-contractor-table thead th:first-child {
  background: #6f7fa6;
}

.safety-contractor-table th:first-child {
  width: 47%;
}

.safety-contractor-table tbody td:nth-child(4) {
  font-weight: 900;
}

.safety-process-columns--transport,
.safety-process-columns--fire {
  align-items: start;
}

.safety-hygiene-columns {
  align-items: start;
}

.safety-hygiene-mortality-chart {
  max-width: 620px;
  margin: clamp(42px, 4vw, 64px) 0 clamp(38px, 3.8vw, 58px);
}

.safety-hygiene-mortality-chart h3 {
  max-width: 560px;
  margin: 0 0 30px;
  color: var(--corporate-heading);
  font-size: clamp(18px, 1.15vw, 22px);
  line-height: 1.18;
  font-weight: 900;
  text-transform: uppercase;
}

.safety-hygiene-mortality-bars {
  display: grid;
  gap: 22px;
}

.safety-hygiene-mortality-row {
  display: grid;
  grid-template-columns: 72px minmax(180px, 1fr) 58px;
  gap: 16px;
  align-items: center;
}

.safety-hygiene-mortality-row__year {
  display: flex;
  width: 72px;
  min-height: 30px;
  align-items: center;
  color: var(--corporate-blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.safety-hygiene-mortality-row--current .safety-hygiene-mortality-row__year {
  width: 62px;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 14px 0 12px;
  color: #fff;
  background: var(--section-safety-accent);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
}

.safety-hygiene-mortality-row__track {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 32px;
  color: var(--corporate-blue);
}

.safety-hygiene-mortality-row--current .safety-hygiene-mortality-row__track {
  color: var(--section-safety-accent);
}

.safety-hygiene-mortality-row__track::before {
  content: "";
  position: absolute;
  left: 0;
  right: -20px;
  top: 50%;
  height: 2px;
  background: currentColor;
  transform: translateY(-50%);
}

.safety-hygiene-mortality-row__bar {
  position: relative;
  z-index: 1;
  width: var(--value);
  max-width: 100%;
  height: 16px;
  background: currentColor;
}

.safety-hygiene-mortality-row .safety-hygiene-mortality-row__value {
  position: relative;
  z-index: 2;
  grid-column: 3;
  justify-self: start;
  display: inline-flex;
  width: 58px;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: var(--corporate-blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  background: #f4f8fb;
  border: 2px solid var(--corporate-blue);
  border-radius: 999px;
}

.safety-hygiene-mortality-row--current .safety-hygiene-mortality-row__value {
  color: var(--section-safety-accent);
  border-color: var(--section-safety-accent);
}

.safety-hygiene-mortality-row__value::before {
  content: none;
}

.safety-hygiene-mortality-row__value::after {
  content: "";
  position: absolute;
  left: -6px;
  top: 50%;
  width: 8px;
  height: 8px;
  background: currentColor;
  border: 2px solid #f4f8fb;
  border-radius: 50%;
  transform: translateY(-50%);
}

.safety-hygiene-mortality-chart--animate .safety-hygiene-mortality-row__track::before,
.safety-hygiene-mortality-chart--animate .safety-hygiene-mortality-row__bar,
.safety-hygiene-mortality-chart--animate .safety-hygiene-mortality-row__value {
  will-change: opacity, transform, scale;
}

.safety-hygiene-mortality-chart--animate .safety-hygiene-mortality-row__track::before {
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
  transition: transform 780ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--safety-hygiene-chart-delay, 0ms);
}

.safety-hygiene-mortality-chart--animate .safety-hygiene-mortality-row__bar {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 860ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--safety-hygiene-chart-delay, 0ms) + 120ms);
}

.safety-hygiene-mortality-chart--animate .safety-hygiene-mortality-row__value {
  opacity: 0;
  scale: 0.9;
  transition:
    opacity 260ms ease-out,
    scale 360ms cubic-bezier(0.2, 1, 0.36, 1);
  transition-delay: calc(var(--safety-hygiene-chart-delay, 0ms) + 520ms);
}

.safety-hygiene-mortality-chart--animate.is-chart-animated .safety-hygiene-mortality-row__track::before {
  transform: translateY(-50%) scaleX(1);
}

.safety-hygiene-mortality-chart--animate.is-chart-animated .safety-hygiene-mortality-row__bar {
  transform: scaleX(1);
}

.safety-hygiene-mortality-chart--animate.is-chart-animated .safety-hygiene-mortality-row__value {
  opacity: 1;
  scale: 1;
}

@media (prefers-reduced-motion: reduce) {
  .safety-hygiene-mortality-chart--animate .safety-hygiene-mortality-row__track::before {
    transform: translateY(-50%) scaleX(1);
    transition: none;
  }

  .safety-hygiene-mortality-chart--animate .safety-hygiene-mortality-row__bar {
    transform: scaleX(1);
    transition: none;
  }

  .safety-hygiene-mortality-chart--animate .safety-hygiene-mortality-row__value {
    opacity: 1;
    scale: 1;
    transition: none;
  }
}

.safety-hygiene-photo {
  margin-top: clamp(48px, 4.8vw, 78px);
}

.safety-hygiene-photo img {
  aspect-ratio: 1.82;
  object-fit: cover;
  object-position: center;
  border: 3px solid #31527b;
}

@media (max-width: 1280px) {
  .social-human-rights-channel-grid {
    grid-template-columns: 1fr;
  }

  .social-communities-columns,
  .social-communities-project-grid,
  .safety-hse-intro,
  .safety-process-columns {
    grid-template-columns: 1fr;
  }

  .safety-hse-system-board {
    min-height: 0;
    padding: 34px;
  }

  .safety-hse-system-board::before {
    inset: 0;
  }

  .safety-hse-system-wheel {
    position: relative;
    justify-self: center;
    left: auto;
    top: auto;
    width: min(500px, 100%);
    margin: 0 auto 34px;
    transform: none;
  }

  .safety-hse-system-wheel--en {
    width: min(570px, 100%);
  }

  .safety-hse-system-wheel--kz {
    width: min(707px, 100%);
  }

  .safety-hse-system-board__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .safety-hse-system-copy {
    grid-template-columns: 1fr;
  }

  .safety-hse-practice {
    grid-template-columns: 1fr;
  }

  .safety-hse-practice-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .social-human-rights-content__inner,
  .social-communities-content__inner,
  .safety-hse-content__inner,
  .safety-process-content__inner {
    width: min(100% - 32px, 1500px);
  }

  .social-human-rights-header h2,
  .social-communities-header h2,
  .safety-hse-header h2,
  .safety-process-header h2 {
    font-size: clamp(30px, 8vw, 38px);
  }

  .safety-hse-intro p {
    max-width: none;
  }

  .safety-hse-system-board {
    padding: 26px 20px;
    border-radius: 0 24px 0 0;
  }

  .safety-hse-system-board__columns,
  .safety-hse-system-copy {
    grid-template-columns: 1fr;
  }

  .safety-hse-practice-gallery {
    grid-template-columns: 1fr;
  }

  .safety-process-photo--operator img,
  .safety-process-photo--fire img {
    aspect-ratio: auto;
  }

  .safety-hse-practice-card__header {
    padding: 16px 24px 15px;
  }

  .safety-hse-practice-card__body {
    padding: 34px 28px 30px;
  }

  .social-communities-funding-row {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
  }

  .social-communities-funding-row__year {
    width: 58px;
    padding-left: 8px;
  }

  .social-communities-funding-row--current .social-communities-funding-row__year {
    width: 58px;
    padding-left: 8px;
    padding-right: 12px;
  }

  .social-communities-funding-row__track {
    --value-column: 58px;
    --value-gap: 24px;
  }

  .social-communities-funding-row__value {
    width: 58px;
    padding: 0 10px;
  }

  .social-communities-funding-row__value::after {
    left: -5px;
  }
}

@media (max-width: 1280px) {
  .social-personnel-chart-grid,
  .social-personnel-staff,
  .social-personnel-turnover-grid,
  .social-personnel-hiring-grid {
    grid-template-columns: 1fr;
  }

  .social-personnel-staff__headings {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 760px) {
  .social-personnel-donut-card__body {
    grid-template-columns: 1fr;
  }

  .social-personnel-chart-grid--aup .social-personnel-donut-card__body,
  .social-personnel-chart-grid--pp .social-personnel-donut-card__body {
    grid-template-columns: 1fr;
    gap: 18px;
    justify-items: center;
  }

  .social-personnel-chart-grid--aup .social-personnel-donut-wrap,
  .social-personnel-chart-grid--pp .social-personnel-donut-wrap {
    width: min(210px, 100%);
  }

  .social-personnel-chart-grid--aup .social-personnel-donut__value,
  .social-personnel-chart-grid--pp .social-personnel-donut__value {
    min-width: 66px;
    font-size: 20px;
  }

  .social-personnel-chart-grid--aup .social-personnel-chart-legend--age,
  .social-personnel-chart-grid--pp .social-personnel-chart-legend--age {
    max-width: 100%;
    grid-template-columns: repeat(3, minmax(0, max-content));
    gap: 10px 16px;
  }

  .social-personnel-chart-grid--aup .social-personnel-chart-legend--age li,
  .social-personnel-chart-grid--pp .social-personnel-chart-legend--age li {
    gap: 6px;
    font-size: 14px;
  }

  .social-personnel-chart-grid--aup .social-personnel-chart-card:nth-child(1) .social-personnel-donut__value--primary,
  .social-personnel-chart-grid--pp .social-personnel-chart-card:nth-child(1) .social-personnel-donut__value--primary {
    left: -16%;
  }

  .social-personnel-chart-grid--aup .social-personnel-chart-card:nth-child(1) .social-personnel-donut__value--secondary,
  .social-personnel-chart-grid--pp .social-personnel-chart-card:nth-child(1) .social-personnel-donut__value--secondary {
    right: -16%;
  }

  .social-personnel-chart-grid--aup .social-personnel-chart-card:nth-child(2) .social-personnel-donut__value--young,
  .social-personnel-chart-grid--pp .social-personnel-chart-card:nth-child(2) .social-personnel-donut__value--young {
    left: -16%;
  }

  .social-personnel-chart-grid--aup .social-personnel-chart-card:nth-child(2) .social-personnel-donut__value--middle,
  .social-personnel-chart-grid--pp .social-personnel-chart-card:nth-child(2) .social-personnel-donut__value--middle {
    right: -16%;
  }

  .social-personnel-donut-card__body--people {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .social-personnel-donut-wrap {
    width: min(240px, 100%);
  }

  .social-personnel-chart-card--total-age .social-personnel-donut-wrap {
    width: min(220px, 100%);
  }

  .social-personnel-chart-card--total-age .social-personnel-donut__value {
    min-width: 82px;
    font-size: 24px;
  }

  .social-personnel-chart-card--total-age .social-personnel-donut__value small {
    font-size: 10px;
  }

  .social-personnel-chart-card--total-age .social-personnel-donut__value--young {
    right: -22%;
    bottom: 4%;
  }

  .social-personnel-chart-card--total-age .social-personnel-donut__value--middle {
    bottom: 4%;
    left: -22%;
  }

  .social-personnel-chart-card--total-age .social-personnel-donut__value--older {
    top: 2%;
    right: -22%;
  }

  .social-personnel-bar-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .social-personnel-headcount-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .social-personnel-headcount-row__track {
    margin-top: 18px;
  }

  .social-personnel-region-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 0;
  }

  .social-personnel-region-row p {
    text-align: left;
  }

  .social-personnel-region-row__field,
  .social-personnel-region-legend {
    margin-right: 0;
  }

  .social-personnel-region-row__value {
    transform: translateX(-100%);
  }

  .social-personnel-region-legend {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .social-personnel-metric-row {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 14px;
  }

  .social-personnel-metric-row__track {
    width: min(100%, clamp(260px, 62vw, 320px));
    margin-top: 0;
  }

  .social-personnel-hiring-age-row {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 10px;
  }

  .social-personnel-hiring-age-row__source {
    width: calc(clamp(260px, 76vw, 430px) * var(--source-ratio, 1));
  }

  .social-personnel-chart-legend--inline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .social-personnel-metric-row {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 10px;
  }

  .social-personnel-metric-row__track {
    width: min(100%, 250px);
  }
}

@media (max-width: 1280px) {
  .corporate-governance-content__inner {
    width: min(1040px, calc(100vw - 72px));
  }

  .corporate-governance-lead,
  .corporate-governance-two-column,
  .corporate-governance-list--facts,
  .corporate-governance-steps--wide,
  .corporate-governance-steps--oversight,
  .corporate-governance-indicators,
  .corporate-governance-process-grid,
  .corporate-governance-management__grid,
  .corporate-governance-highlight-grid,
  .corporate-stakeholder-principles-list,
  .corporate-stakeholder-stages,
  .corporate-stakeholder-systems,
  .corporate-stakeholder-system,
  .corporate-stakeholder-system__body,
  .corporate-stakeholder-system__columns,
  .corporate-memberships-grid,
  .corporate-memberships-diplomas {
    grid-template-columns: 1fr;
  }

  .corporate-governance-steps--oversight > li {
    grid-column: auto;
    grid-row: auto;
  }

  .corporate-stakeholder-stage--wide {
    max-width: none;
  }

  .corporate-stakeholder-stage,
  .corporate-stakeholder-stages__aside {
    grid-column: auto;
    grid-row: auto;
  }

  .corporate-stakeholder-photo--wide {
    flex: none;
    aspect-ratio: 1500 / 430;
  }

  .corporate-stakeholder-system__ribbon,
  .corporate-stakeholder-system h5,
  .corporate-stakeholder-system p,
  .corporate-stakeholder-system > p:nth-of-type(n+3),
  .corporate-stakeholder-system__columns {
    grid-column: 1;
  }

  .corporate-stakeholder-principles-list {
    grid-template-rows: none;
    grid-auto-flow: row;
  }

  .corporate-memberships-card {
    grid-template-columns: 160px minmax(0, 1fr);
  }

  .corporate-memberships-card--right-column {
    grid-column: auto;
  }

  .corporate-memberships-intro p {
    max-width: none;
  }

  .corporate-governance-flow-columns {
    column-count: 1;
  }

  .corporate-economic-flow-columns {
    column-count: 1;
  }

  .corporate-economic-flow-columns--category {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .corporate-economic-project-flow {
    column-count: 1;
  }

  .corporate-economic-project-grid {
    grid-template-columns: 1fr;
  }

  .corporate-governance-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 760px) {
  .corporate-governance-content {
    padding: 54px 0 72px;
  }

  .corporate-governance-content__inner {
    width: calc(100% - 32px);
  }

  .corporate-governance-header h2 {
    font-size: 34px;
  }

  .corporate-governance-section h3 {
    font-size: 28px;
  }

  .corporate-stakeholder-system__ribbon {
    min-height: 64px;
  }

  .corporate-stakeholder-system__ribbon span {
    max-width: calc(100% - 72px);
    padding-left: 74px;
    font-size: 12px;
  }

  .corporate-governance-content p,
  .corporate-governance-content li,
  .corporate-governance-content td,
  .corporate-governance-content th {
    font-size: 16px;
  }

  .corporate-governance-photo--lead,
  .corporate-governance-two-column--media .corporate-governance-photo {
    min-height: 260px;
  }

  .corporate-governance-photo--stakeholder-consultation {
    width: 100%;
    min-height: 0;
  }

  .corporate-governance-photo--wide {
    aspect-ratio: 1.35 / 1;
  }

  .corporate-memberships-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 0;
  }

  .corporate-memberships-card__logo {
    min-height: 72px;
  }

  .corporate-memberships-pwc-logo {
    width: min(220px, 72vw);
    margin-bottom: 28px;
  }

  .corporate-memberships-diplomas {
    padding: 10px;
  }

  .corporate-governance-facts {
    grid-template-columns: 1fr;
  }

  .corporate-governance-steps--wide,
  .corporate-governance-steps--oversight {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .corporate-governance-steps--oversight > li,
  .corporate-governance-steps--oversight > li:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .corporate-economic-contractor-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .corporate-economic-contractor-photo--primary {
    justify-self: center;
    order: 1;
    width: min(100%, 320px);
  }

  .corporate-economic-contractor-text {
    order: 2;
  }

}

@media (max-width: 900px) {
  .corporate-governance-table-wrap .strategy-wide-table,
  .corporate-economic-table-wrap .strategy-wide-table,
  .social-personnel-table-wrap .strategy-wide-table {
    min-width: 900px;
  }
}
.corporate-governance-content .corporate-governance-alpha-footnote {
  color: #43a047;
  font-size: 0.65em;
  font-weight: 800;
  line-height: 0;
  margin-left: 1px;
  vertical-align: super;
}

/* Social personnel chart labels: values follow the color of their data series. */
.social-personnel-content {
  --social-personnel-chart-blue: #35598a;
  --social-personnel-chart-teal: #56b8b6;
  --social-personnel-chart-yellow: #e8c437;
}

/* Blue series: women, under 30, non-current blue bars. */
.social-personnel-content .social-personnel-donut__value--women,
.social-personnel-content .social-personnel-donut__value--young,
.social-personnel-content .social-personnel-bar-segment__value--young,
.social-personnel-content .social-personnel-hiring-age-row__value--young,
.social-personnel-content .social-personnel-region-row__value--women,
.social-personnel-content .social-personnel-hiring-age-value--young,
.social-personnel-content .social-personnel-hiring-region-row__value--women,
.social-personnel-content .social-personnel-headcount-row:not(.social-personnel-headcount-row--current) .social-personnel-headcount-row__value,
.social-personnel-content .social-personnel-metric-row:not(.social-personnel-metric-row--current) .social-personnel-metric-row__value,
.social-personnel-content .social-personnel-metric-row:not(.social-personnel-metric-row--current) .social-personnel-metric-row__percent {
  color: var(--social-personnel-chart-blue) !important;
  border-color: var(--social-personnel-chart-blue) !important;
}

/* Teal series: men, 30-50, current/2025 bars. */
.social-personnel-content .social-personnel-donut__value--men,
.social-personnel-content .social-personnel-donut__value--middle,
.social-personnel-content .social-personnel-bar-segment__value--middle,
.social-personnel-content .social-personnel-hiring-age-row__value--middle,
.social-personnel-content .social-personnel-region-row__value--men,
.social-personnel-content .social-personnel-hiring-age-value--middle,
.social-personnel-content .social-personnel-hiring-region-row__value--men,
.social-personnel-content .social-personnel-headcount-row--current .social-personnel-headcount-row__value,
.social-personnel-content .social-personnel-headcount-row__value--current,
.social-personnel-content .social-personnel-metric-row--current .social-personnel-metric-row__value,
.social-personnel-content .social-personnel-metric-row--current .social-personnel-metric-row__percent {
  color: var(--social-personnel-chart-teal) !important;
  border-color: var(--social-personnel-chart-teal) !important;
}

/* Yellow series: over 50 and performance share. */
.social-personnel-content .social-personnel-donut__value--older,
.social-personnel-content .social-personnel-bar-segment__value--older,
.social-personnel-content .social-personnel-hiring-age-row__value--older,
.social-personnel-content .social-personnel-hiring-age-value--older,
.social-personnel-content .social-personnel-performance-bars .social-personnel-metric-row__percent,
.social-personnel-content .social-personnel-performance-bars .social-personnel-metric-row__value {
  color: var(--social-personnel-chart-yellow) !important;
  border-color: var(--social-personnel-chart-yellow) !important;
}

/* Keep marker dots/leader strokes in the same color family as the numeric pill. */
.social-personnel-content .social-personnel-metric-row--current .social-personnel-metric-row__track::after,
.social-personnel-content .social-personnel-headcount-row--current .social-personnel-headcount-row__track::after {
  background: var(--social-personnel-chart-teal) !important;
  border-color: var(--social-personnel-chart-teal) !important;
}

.social-personnel-content .social-personnel-metric-row:not(.social-personnel-metric-row--current) .social-personnel-metric-row__track::after,
.social-personnel-content .social-personnel-headcount-row:not(.social-personnel-headcount-row--current) .social-personnel-headcount-row__track::after {
  background: var(--social-personnel-chart-blue) !important;
  border-color: var(--social-personnel-chart-blue) !important;
}

.social-personnel-content .social-personnel-performance-bars .social-personnel-metric-row__track::after {
  background: var(--social-personnel-chart-yellow) !important;
  border-color: var(--social-personnel-chart-yellow) !important;
}

.social-personnel-content .social-personnel-performance-chart .social-personnel-performance-row .social-personnel-metric-row__value {
  color: var(--social-personnel-chart-yellow) !important;
  border-color: var(--social-personnel-chart-yellow) !important;
}
/* End social personnel chart labels. */

/* Social communities funding value colors. */
.social-communities-funding-row:nth-child(1) .social-communities-funding-row__value,
.social-communities-funding-row:nth-child(1) .social-communities-funding-row__value * {
  color: #55b8b6;
}

.social-communities-funding-row:nth-child(n + 2) .social-communities-funding-row__value,
.social-communities-funding-row:nth-child(n + 2) .social-communities-funding-row__value * {
  color: #355889;
}
/* End social communities funding value colors. */

/* Feedback form page. */
.feedback-form-page {
  --feedback-blue: #003b71;
  --feedback-sky: #00a3e0;
  --feedback-teal: #58b9b5;
  --feedback-green: #58b368;
  --feedback-yellow: #efc734;
  --feedback-line: #d7e3ea;
  --feedback-muted: #5c6a75;
  min-height: 100vh;
  padding: clamp(112px, 9vw, 160px) clamp(24px, 5vw, 96px) clamp(80px, 8vw, 130px);
  background: linear-gradient(180deg, #f6fafc 0%, #eef5f8 100%);
  color: #1f2b34;
}

.feedback-form-page .page-switcher {
  z-index: 4;
}

.feedback-form-hero,
.feedback-form {
  width: 100%;
  max-width: 1500px;
  margin-inline: auto;
}

.feedback-form-hero {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(420px, 1.55fr);
  gap: clamp(24px, 4vw, 80px);
  align-items: end;
  margin-bottom: clamp(36px, 4vw, 70px);
  padding-bottom: clamp(28px, 3vw, 52px);
  border-bottom: 2px solid var(--feedback-line);
}

.feedback-form-hero__kicker {
  margin: 0;
  color: var(--feedback-sky);
  font-size: clamp(18px, 1.35vw, 26px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.feedback-form-hero h1 {
  max-width: 980px;
  margin: 0;
  color: #1e2b36;
  font-size: clamp(42px, 4.8vw, 84px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.feedback-form-hero p:last-child {
  max-width: 940px;
  margin: 0;
  color: #354653;
  font-size: clamp(19px, 1.35vw, 27px);
  font-weight: 400;
  line-height: 1.45;
}

.feedback-form {
  display: grid;
  gap: clamp(26px, 3vw, 46px);
}

.feedback-form-section {
  margin: 0;
  padding: clamp(28px, 3vw, 48px);
  border: 1px solid #d6e5ec;
  border-top: 6px solid var(--feedback-sky);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(0, 44, 76, 0.07);
}

.feedback-form-section legend {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin: 0 0 24px;
  padding: 0;
  color: #1d2b35;
  font-size: clamp(24px, 2.1vw, 40px);
  font-weight: 900;
  line-height: 1.08;
}

.feedback-form-section legend span {
  display: inline-grid;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--feedback-blue);
  color: #fff;
  font-size: 22px;
}

.feedback-form-section__note {
  margin: -8px 0 26px;
  color: var(--feedback-muted);
  font-size: clamp(17px, 1vw, 21px);
  font-weight: 400 !important;
}

.feedback-choice-grid,
.feedback-topic-grid {
  display: grid;
  gap: 14px;
}

.feedback-choice-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.feedback-choice,
.feedback-topic {
  position: relative;
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid #d1e0e8;
  border-radius: 8px;
  background: #fff;
  color: #263640;
  font-size: clamp(16px, 0.95vw, 20px);
  font-weight: 700;
  line-height: 1.25;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.feedback-choice input,
.feedback-topic input {
  position: absolute;
  inset: 0;
  cursor: pointer;
  opacity: 0;
}

.feedback-choice span,
.feedback-topic span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.feedback-choice span::before,
.feedback-topic span::before {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border: 2px solid var(--feedback-teal);
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 4px #fff;
}

.feedback-choice:has(input:checked),
.feedback-topic:has(input:checked) {
  border-color: var(--feedback-teal);
  background: #eaf8f7;
  box-shadow: 0 10px 22px rgba(38, 151, 151, 0.12);
}

.feedback-choice:has(input:checked) span::before,
.feedback-topic:has(input:checked) span::before {
  background: var(--feedback-teal);
}

.feedback-choice--other {
  display: grid;
  grid-template-columns: auto minmax(160px, 1fr);
}

.feedback-choice--other label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.feedback-choice--other input[type="text"] {
  min-width: 0;
  padding: 10px 4px;
  border: 0;
  border-bottom: 2px solid #b8c8d1;
  background: transparent;
  color: #1f2b34;
  font: inherit;
  font-weight: 700;
}

.feedback-choice--other input[type="text"]:disabled {
  opacity: 0.45;
}

.feedback-rating-list {
  display: grid;
  gap: 10px;
}

.feedback-rating-row {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(220px, 42%) 64px;
  align-items: center;
  min-height: 58px;
  gap: 22px;
  padding: 10px 14px 10px 0;
  border-bottom: 1px solid var(--feedback-line);
  color: #1f2b34;
  font-weight: 800;
}

.feedback-rating-row > span {
  font-size: clamp(16px, 0.95vw, 20px);
  line-height: 1.25;
}

.feedback-rating-row input[type="range"] {
  width: 100%;
  accent-color: var(--feedback-teal);
}

.feedback-rating-row output {
  display: inline-grid;
  min-width: 52px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  background: var(--feedback-yellow);
  color: #1e2b36;
  font-weight: 900;
}

.feedback-rating-row.is-disabled {
  opacity: 0.42;
}

.feedback-rating-row.is-disabled output {
  background: #d8e3e9;
}

.feedback-open-answer {
  display: grid;
  gap: 14px;
  color: #263640;
  font-size: clamp(18px, 1vw, 22px);
  font-weight: 800;
}

.feedback-open-answer textarea {
  width: 100%;
  min-height: 180px;
  padding: 18px 20px;
  border: 1px solid #b8c8d1;
  border-radius: 8px;
  background: #fff;
  color: #1f2b34;
  font: inherit;
  font-weight: 500;
  line-height: 1.45;
  resize: vertical;
}

.feedback-open-answer textarea:focus {
  border-color: var(--feedback-sky);
  outline: 0;
}

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

.feedback-contact-field {
  display: grid;
  gap: 10px;
  color: #263640;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.25;
}

.feedback-contact-field--wide {
  grid-column: 1 / -1;
}

.feedback-contact-field input,
.feedback-contact-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #b8c8d1;
  border-radius: 4px;
  background: #fff;
  color: #1f2b34;
  font: inherit;
  font-weight: 400;
  line-height: 1.35;
}

.feedback-contact-field textarea {
  min-height: 92px;
  resize: vertical;
}

.feedback-contact-field input:focus,
.feedback-contact-field input:focus-visible,
.feedback-contact-field textarea:focus,
.feedback-contact-field textarea:focus-visible {
  border-color: var(--feedback-sky);
  outline: 0;
  box-shadow: 0 0 0 1px var(--feedback-sky);
}

.feedback-form-actions {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding-top: 8px;
}

.feedback-form-status {
  justify-self: start;
  margin: 0;
  color: var(--feedback-muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}

.feedback-form-status[data-state="success"] {
  color: var(--feedback-blue);
}

.feedback-form-status[data-state="error"] {
  color: #c54b4b;
}

.feedback-submit,
.feedback-reset {
  min-height: 56px;
  padding: 0 28px;
  border: 2px solid var(--feedback-blue);
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.feedback-submit:disabled,
.feedback-reset:disabled {
  cursor: wait;
  opacity: 0.62;
}

.feedback-submit {
  background: var(--feedback-blue);
  color: #fff;
}

.feedback-reset {
  background: transparent;
  color: var(--feedback-blue);
}

@media (max-width: 1180px) {
  .feedback-form-page {
    padding-inline: clamp(20px, 4vw, 48px);
  }

  .feedback-form-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .feedback-choice-grid,
  .feedback-topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feedback-rating-row {
    grid-template-columns: minmax(220px, 1fr) minmax(180px, 40%) 56px;
  }
}

@media (max-width: 720px) {
  .feedback-form-page {
    padding: 96px 16px 72px;
  }

  .feedback-form-hero h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .feedback-form-section {
    padding: 24px 18px;
  }

  .feedback-form-section legend {
    align-items: flex-start;
    font-size: 24px;
  }

  .feedback-choice-grid,
  .feedback-topic-grid,
  .feedback-contact-grid {
    grid-template-columns: 1fr;
  }

  .feedback-choice--other {
    grid-template-columns: 1fr;
  }

  .feedback-rating-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-right: 0;
  }

  .feedback-rating-row output {
    justify-self: start;
  }

  .feedback-form-actions {
    grid-template-columns: 1fr;
  }

  .feedback-submit,
  .feedback-reset {
    width: 100%;
  }
}
/* End feedback form page. */

/* Feedback form compact layout refinements */
.feedback-form-hero {
  grid-template-columns: 1fr;
  gap: 14px;
  padding-block: clamp(42px, 4vw, 68px) clamp(20px, 2.6vw, 32px);
}

.feedback-form-hero h1 {
  max-width: 100%;
  color: var(--feedback-sky);
  font-size: clamp(34px, 3vw, 54px);
  line-height: 1.06;
}

.feedback-form-hero p:last-child {
  max-width: 100%;
  font-size: clamp(17px, 1.05vw, 21px);
  line-height: 1.42;
}

.feedback-form {
  gap: clamp(18px, 2vw, 30px);
}

.feedback-form-section {
  padding: clamp(22px, 2.15vw, 34px);
  border-radius: 6px;
  overflow: visible;
}

.feedback-form-section legend {
  float: left;
  display: block;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0 0 20px;
  padding: 0;
  gap: 14px;
  color: var(--feedback-blue);
  font-size: 26px;
  line-height: 1.08;
}

.feedback-form-section legend + * {
  clear: both;
}

.feedback-form-section legend span {
  width: 38px;
  height: 38px;
  font-size: 20px;
}

.feedback-form-section__note {
  margin: -4px 0 18px;
}

.feedback-choice-grid {
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 12px;
}

.feedback-topic-grid {
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 10px 12px;
}

.feedback-choice,
.feedback-topic {
  min-height: 58px;
  padding: 14px 16px;
  border-radius: 6px;
}

.feedback-choice span,
.feedback-topic span {
  gap: 10px;
  font-size: clamp(16px, 0.94vw, 19px);
  line-height: 1.18;
}

.feedback-choice span::before,
.feedback-topic span::before {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.feedback-choice--other {
  display: grid;
  grid-template-columns: minmax(92px, max-content) minmax(140px, 1fr);
  align-items: center;
  gap: 12px;
}

.feedback-choice--other label {
  min-width: 0;
}

.feedback-choice--other label input[type="radio"] {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.feedback-choice--other > input[type="text"] {
  position: relative;
  inset: auto;
  z-index: 2;
  width: 100%;
  min-width: 0;
  height: 38px;
  padding: 7px 10px;
  border: 1px solid #c6d9e2;
  border-radius: 4px;
  background: #fff;
  color: #1f2d36;
  font: inherit;
  opacity: 1;
}

.feedback-choice--other > input[type="text"]:focus,
.feedback-choice--other > input[type="text"]:focus-visible {
  border-color: var(--feedback-sky);
  outline: 0;
  box-shadow: 0 0 0 1px var(--feedback-sky);
}

.feedback-choice--other > input[type="text"]:disabled {
  background: transparent;
  opacity: 0.45;
  pointer-events: none;
}

.feedback-rating-list {
  gap: 8px;
}

.feedback-rating-row {
  grid-template-columns: minmax(260px, 1fr) minmax(300px, 420px) 44px;
  gap: 12px;
  padding: 12px 14px;
}

.feedback-rating-row input[type="range"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.feedback-rating-row output {
  min-width: 42px;
  height: 34px;
  font-size: 17px;
}

.feedback-rating-row output,
.feedback-rating-row.is-disabled output {
  background: var(--feedback-blue);
  color: #fff;
}

.feedback-rating-dots {
  display: grid;
  grid-template-columns: repeat(10, 24px);
  gap: 8px;
  justify-content: end;
  align-items: center;
}

.feedback-rating-dot {
  --rating-fill: 0%;
  position: relative;
  width: 24px;
  height: 24px;
  padding: 0;
  overflow: hidden;
  border: 2px solid #aebdc7;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.feedback-rating-dot.is-active {
  border-color: var(--feedback-sky);
}

.feedback-rating-dot::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--rating-fill);
  background: var(--feedback-blue);
  transition: width 0.16s ease, background 0.16s ease;
}

.feedback-rating-dot:hover,
.feedback-rating-dot:focus-visible {
  border-color: var(--feedback-sky);
  outline: 0;
}

.feedback-rating-dot:hover::before,
.feedback-rating-dot:focus-visible::before {
  background: var(--feedback-sky);
}

.feedback-form-page {
  background: #eef3f6;
}

.feedback-form-section {
  padding-inline: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.feedback-form-section legend span {
  display: inline;
  flex: initial;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
}

.feedback-choice,
.feedback-topic {
  min-height: 0;
  padding: 8px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.feedback-choice:hover,
.feedback-topic:hover {
  color: var(--feedback-sky);
}

.feedback-choice span,
.feedback-topic span,
.feedback-rating-row > span,
.feedback-open-answer span {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400 !important;
}

.feedback-rating-row {
  font-weight: 400;
}

.feedback-choice span::before,
.feedback-topic span::before {
  border-color: #aebdc7;
}

.feedback-choice:hover span::before,
.feedback-choice:focus-within span::before,
.feedback-topic:hover span::before,
.feedback-topic:focus-within span::before {
  border-color: var(--feedback-sky);
}

.feedback-choice:has(input:checked),
.feedback-topic:has(input:checked) {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  color: var(--feedback-blue);
}

.feedback-choice:has(input:checked) span::before,
.feedback-topic:has(input:checked) span::before {
  border-color: var(--feedback-blue);
  background: var(--feedback-blue);
}

.feedback-rating-row input[type="range"] {
  accent-color: var(--feedback-sky);
}

.feedback-submit,
.feedback-reset {
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.feedback-submit:hover,
.feedback-submit:focus-visible {
  border-color: var(--feedback-sky);
  background: var(--feedback-sky);
}

.feedback-reset:hover,
.feedback-reset:focus-visible {
  border-color: var(--feedback-sky);
  background: rgba(0, 163, 224, 0.08);
  color: var(--feedback-sky);
}

@media (max-width: 1180px) {
  .feedback-choice-grid,
  .feedback-topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feedback-rating-row {
    grid-template-columns: minmax(220px, 1fr) minmax(300px, 360px) 44px;
  }
}

@media (max-width: 760px) {
  .feedback-form-hero h1 {
    font-size: clamp(30px, 8vw, 42px);
  }

  .feedback-form-section legend {
    font-size: 26px;
  }

  .feedback-choice-grid,
  .feedback-topic-grid,
  .feedback-choice--other {
    grid-template-columns: 1fr;
  }

  .feedback-choice--other > input[type="text"] {
    width: 100%;
  }

  .feedback-rating-row {
    grid-template-columns: 1fr;
    padding-right: 14px;
  }

  .feedback-rating-row input[type="range"] {
    position: absolute;
  }

  .feedback-rating-row output {
    justify-self: start;
  }

  .feedback-rating-dots {
    justify-content: start;
  }
}
