/* Borouge Arabic annual report — shared layout */

:root {
  --brand-blue: #003B7A;
  --brand-blue-dark: #001E5C;
  --brand-cyan: #2BB7E2;
  --brand-cyan-soft: #D8EEF7;
  --brand-green: #6CB33F;
  --ink: #0B1B33;
  --ink-soft: #4A5A75;
  --muted: #B7BDC7;
  --line: #E5EAF2;
  --bg: #FFFFFF;
  --container: 1280px;
  --header-height: 76px;
  --font-sans: "Inter", "ADNOC Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --shadow-card: 0 6px 24px rgba(11, 27, 51, 0.08);
}
@font-face {
    font-family: 'HelveticaNeueArabic';
    src: url('../fonts/HelveticaNeueLTArabic-Roman.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  /*font-family: var(--font-sans);*/
  font-family: 'HelveticaNeueArabic', sans-serif;
  color: var(--ink);
  background: var(--bg);
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/*section{
  padding-right : 50px;
}*/
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 90px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 8px;
  background: #f1f3f6fa;
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  gap: 145px;
  height: var(--header-height);
}
.nav__logo { display: flex; align-items: center; }
.nav__logo img { height: 55px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  /*margin-inline-start: auto;*/
}
#menu {
  display: flex;
  align-items: center;
  gap: 90px;
}
.nav__pill {
background: var(--brand-cyan);
color: #fff;
border-radius: 6px;
font-size: 11px;
font-weight: 600;
text-transform: uppercase;
white-space: nowrap;

height: 20px;
/*padding: 0 10px;*/
padding: 5px 10px 8px 10px;

display: flex;
align-items: center;
justify-content: center;

line-height: 1;
}
.nav__link {
  color: #0457b0;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  display: inline-flex;
  align-items: flex-start;
  gap: 6px;
  padding: 8px 4px;
  transition: color .15s ease;
  position: relative;
}
.nav__link:hover { color: var(--brand-cyan); }
.nav__link img {
  position: absolute;
  top: 1px;
  left: -8px;
}
.nav__lang {
  color: #0457b0;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
}
.nav__link.active, .nav__link:hover{
  border-bottom: 2px solid var(--brand-cyan);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 8px;
  margin: 0;
  border: 0;
  background: transparent;
  appearance: none;
}
.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #003B7A;
  margin: 4px 0;
}

.stage {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
  background: var(--brand-blue-dark);
  color: #fff;
}
.hero .stage__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/1_Homepage AR.jpg');
  background-size: cover;
  background-position: center left;
}
.hero .stage__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg,
    rgba(0, 59, 122, 0.94) 0%,
    rgba(0, 59, 122, 0.85) 32%,
    rgba(0, 59, 122, 0.45) 60%,
    rgba(0, 59, 122, 0.05) 88%,
    rgba(0, 59, 122, 0.00) 100%);
}
.stage__inner {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 72px 0 96px;
  text-align: right;
}
.stage__title {
  color: #fff;
  font-size: clamp(48px, 7vw, 110px);
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  max-width: 820px;
  margin-inline-end: auto;
  text-align: right;
}
.hero__title-wrap {
  position: relative;
  width: fit-content;
  margin-inline-end: auto;
  margin-bottom: 28px;
}
.hero__title {
  margin-bottom: 0;
}
.hero__title-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 55px;
  height: 55px;
  /*transform: translate(-240%, 13%);*/
  transform: translate(-230%, 25%);
  pointer-events: none;
}
.blue-bar {
  width: 30%;
  height: 25px;
  margin-bottom: 40px;
  background: #41a5f9;
  border-radius: 1px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
  margin-inline-end: auto;
}

.download-card {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1.5px solid #C8D4E8;
  border-radius: 7px;
  width: 90px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  gap: 0;
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 2px 10px rgba(11, 27, 51, 0.06);
  padding: 10px 5px 5px 5px;
  background: #f2f4f7;
  line-height: 0.85;
  margin-inline-end: auto;
}
.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(11, 27, 51, 0.18);
}
.download-icon {
  width: 33px;
  height: 33px;
  color: #2BB7E2;
}
.download-label {
  font-size: 9px;
  font-weight: 500;
  color: #0457b0;
  letter-spacing: 0.04em;
  text-transform: capitalize;
}
.download-line {
  display: block;
  width: 78%;
  height: 1px;
  margin-top: 4px;
  margin-bottom: 0;
  background: #2BB7E2;
  border-radius: 1px;
}
.download-title-wrapper { width: 100%; }
.download-title {
  font-size: 12px;
  font-weight: 600;
  color: #0457b0;
  text-transform: uppercase;
  line-height: 1.2;
  display: inline-flex;
  flex-direction: column;
}
.download-title__line + .download-title__line { margin-top: -1px; }
.download-corner {
  position: absolute;
  top: 49px;
  left: 6px;
  width: 16px;
  height: 15px;
  transform: scaleX(-1);
}

.strategic .stage__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/2_Strategic Report AR.jpg');
  background-size: cover;
  background-position: center left;
}
.strategic .stage__overlay {
  position: absolute;
  inset: 0;
  /*background: linear-gradient(270deg,
    rgba(0, 59, 122, 0.00) 0%,
    rgba(0, 59, 122, 0.10) 22%,
    rgba(0, 59, 122, 0.55) 50%,
    rgba(0, 59, 122, 0.86) 72%,
    rgba(0, 59, 122, 0.94) 100%);*/
    background:linear-gradient(352deg, rgb(0 59 122 / 3%) 0%, rgb(0 59 122 / 4%) 22%, rgb(0 59 122 / 4%) 50%, rgb(0 59 122 / 3%) 72%, rgb(0 59 122 / 1%) 100%);
}
/* Keep strategic CTA animation targets from being clipped on standalone page */
#strategic-report.stage {
  overflow: visible;
}
.governance .stage__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/3_Governance Report AR.jpg');
  background-size: cover;
  background-position: center left;
}
.governance .stage__overlay {
  position: absolute;
  inset: 0;
  /*background: linear-gradient(270deg,
    rgba(0, 59, 122, 0.00) 0%,
    rgba(0, 59, 122, 0.10) 20%,
    rgba(0, 59, 122, 0.45) 45%,
    rgba(0, 59, 122, 0.84) 70%,
    rgba(0, 59, 122, 0.94) 100%);*/
    background :linear-gradient(270deg, rgb(0 59 122 / 97%) 0%, rgb(0 59 122 / 98%) 20%, rgb(0 59 122 / 4%) 45%, rgb(0 59 122 / 3%) 70%, rgb(0 59 122 / 5%) 100%);
}
.financial .stage__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/4_Financial Statements AR.jpg');
  background-size: cover;
  background-position: center left;
}
.financial .stage__overlay {
  position: absolute;
  inset: 0;
  /*background: linear-gradient(270deg,
    rgba(0, 30, 92, 0.10) 0%,
    rgba(0, 30, 92, 0.20) 15%,
    rgba(0, 30, 92, 0.45) 40%,
    rgba(0, 30, 92, 0.78) 65%,
    rgba(0, 30, 92, 0.92) 100%);*/
    background: linear-gradient(270deg, rgb(0 30 92 / 66%) 0%, rgb(0 30 92 / 68%) 15%, rgb(0 30 92 / 2%) 40%, rgb(0 30 92 / 25%) 65%, rgb(0 30 92 / 2%) 100%);
}
.strategic-bg {
  background-size: cover;
}

.stage__list {
  list-style: none;
  padding: 0;
  margin-block: 0 36px;
  margin-inline: 0 12px;
  max-width: 460px;
  columns: 1;
}
.stage__list li {
  position: relative;
  padding: 4px 12px 0 0;
  font-size: 12px;
  color: #FFFFFF;
  letter-spacing: 0.01em;
  line-height: 17px;
}
.stage__list li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 13px;
  width: 4px;
  height: 4px;
  background: var(--brand-cyan);
  border-radius: 50%;
}
.stage__list li a:hover{
  text-decoration : underline;
}
.list-content,
.link-content {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}
.list-content {
  flex-wrap: wrap;
  margin-bottom: 100px;
}
.strategic .stage__title {
  margin-inline-end: auto;
  margin-inline-start: 0;
}
.strategic .stage__inner {
  align-items: flex-start;
}
.strategic .list-content,
.strategic .link-content {
  align-self: flex-start;
  justify-content: flex-start;
}
.governance .stage__title {
  margin-inline-end: auto;
  margin-inline-start: 0;
}
.governance .stage__inner {
  align-items: flex-start;
}
.governance .list-content {
  align-self: flex-start;
  justify-content: flex-start;
}
.governance .download-card {
  align-self: flex-start;
}
.financial .stage__title {
  margin-inline-end: auto;
  margin-inline-start: 0;
}
.financial .stage__inner {
  align-items: flex-start;
}
.financial .list-content {
  align-self: flex-start;
  justify-content: flex-start;
}
.financial .download-card {
  align-self: flex-start;
}

.content-corner-image {
  width: 180px;
  height: 160px;
  margin-inline-end: -50px;
}
.strategic .content-corner-image, #governance-report .content-corner-image,
 #financial-statements .content-corner-image {
  margin-inline-end: -50px; /* keep same layout as default */
  transform: translateX(40px) !important; /* visually push image further right only */
}

.extra-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 45px;
}
.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 2px 6px;
  border-radius: 5px;
  /*background: #075ab1;*/
  background : var(--brand-cyan);
  color: #FFFFFF;
  font-size: 12px;
  transition: background .15s ease, transform .15s ease;
  height: 20px;
}
.pill-btn:hover {
  background: #1FA0CB;
  transform: translateY(-1px);
}
.right-arrow {
  width: 15px;
  height: 15px;
  transform: scaleX(-1);
}
.highlights__actions .top-arrow{
  background-color : #023163 !important;
}
.right-arrow.top-arrow-image {
  width: 16px;
  height: 16px;
}

/* ============== HIGHLIGHTS (Arabic page) ============== */
.highlights {
  padding: 96px 0 120px;
  background: var(--bg);
  position: relative;
  overflow: visible;
  direction: rtl;
}
.highlights .container { text-align: right; }
.highlights__eyebrow {
  font-size: 30px;
  font-weight: 700;
  /*color: #306399f5;*/
  color : #185ca4f5;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.highlights__title {
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
  /*color: var(--muted);*/
  color : #91989f;
  margin: 0 0 56px;
  max-width: 980px;
}
.highlights__title em {
  font-style: normal;
  /*color: var(--brand-cyan);*/
  color : #2abbe8;
  display: block;
}
.highlights__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
  justify-items: end;
}
.highlights__grid .right_corner_image {
  position: absolute;
  right: -80px;
  bottom: -70px;
  pointer-events: none;
  width: 230px;
  height: 200px;
}
.highlights__grid > .h-col {
  width: 100%;
  background: #f0f0f7;
  padding: 3px 20px;
  /*box-shadow: var(--shadow-card);*/
  text-align: right;
}
.h-col__heading {
  font-size: 22px;
  font-weight: 700;
  color: #2abbe8;
  margin: 0 0 11px;
  height: 40px;
}
.h-col--esg .h-col__heading { color: #12bd30; }

.h-col--operational,
.h-col--operational .h-col__heading,
.h-col--operational .metric__label,
.h-col--operational .metric__value,
.h-col--operational .metric__value .unit,
.h-col--operational .metric__value .secondary,
.h-col--operational .metric__caption {
  color: #116ec1;
}

.metric { margin-bottom: 22px; }
.metric__label {
  font-size: 11px;
  font-weight: 600;
  color: #494f5b !important;
  letter-spacing: 0.02em;
  line-height: 1.35;
  padding-bottom: 5px;
  border-bottom: 2px solid #aaacae;
  height: 30px;
}
.h-col--financial .metric__label { max-width: 150px; }
.h-col--financial .last_metric_value {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0;
  column-gap: 0.06em;
}
.h-col--financial .last_metric_value .counter-suffix { font-size: 14px; margin-top:10px;}
.h-col--financial .last_metric_value .last_metric_line2 {
  flex-basis: 100%;
  margin-top: 4px;
  font-weight: 600;
  color: var(--ink-soft);
}
.last_metric_value.metric__value {
  align-items: flex-start !important;
}
.metric__value {
  font-size: clamp(34px, 3.2vw, 52px);
  font-weight: 600;
  color: var(--brand-cyan);
  line-height: 1.0;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
}
.metric__value .unit {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-cyan);
}
.metric__value .secondary {
  font-size: 0.26em;
  font-weight: 600;
  color: var(--ink-soft);
  margin-left: 4px;
}
.metric__value .counter-prefix,
.metric__value .counter-suffix,
.asset_utilization__value .counter-suffix {
  font-size: 0.52em;
  font-weight: 700;
  line-height: 1;
}
.metric__caption {
  font-size: 12px;
  color: var(--ink-soft) !important;
  line-height: 1.4;
  max-width: 220px;
}
.metric__value--emissions {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 8px;
}
.metric__value--emissions .emissions-suffix {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  font-size: 0.34em;
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
  margin-top: 9px;
}
.h-col--esg .metric__value,
.h-col--esg .metric__value .unit { color: #12bd30; }

.metric--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.metric--split .metric {
  display: flex;
  flex-direction: column;
}
.metric--split .metric__label {
  min-height: 3.6em;
  display: flex;
  align-items: flex-end;
}
.metric--split .metric__value {
  min-height: 1.2em;
  align-items: baseline;
}
.metric--split.metric__two .metric__label,
.metric.metric__two .metric__label {
  min-height: 3.2em;
  display: flex;
  align-items: flex-end;
}
.metric--split.metric__two .metric__value,
.metric.metric__two .metric__value {
  min-height: 1.4em;
  align-items: baseline;
}
.metric--split.metric__three .metric__label,
.metric.metric__three .metric__label {
  min-height: 4.2em;
  display: flex;
  align-items: flex-end;
}
.metric--split.metric__three .metric__value,
.metric.metric__three .metric__value {
  min-height: 1.4em;
  align-items: baseline;
}
.metric__four .metric__label,
.metric.metric_four .metric__label {
  min-height: 2.6em;
  display: flex;
  align-items: flex-end;
}
.metric__four .metric__value,
.metric.metric_four .metric__value {
  min-height: 1.4em;
  align-items: baseline;
}
.h-col--esg .metric.metric__one .metric__label {
  min-height: 3.6em;
  display: flex;
  align-items: flex-end;
}
.h-col--esg .metric.metric__one .metric__value {
  min-height: 1.2em;
  align-items: baseline;
}
.h-col--esg .metric.metric__two .metric__label,
.h-col--esg .metric.metric__three .metric__label {
  display: flex;
  align-items: flex-end;
}
.h-col--esg .metric.metric__two .metric__value,
.h-col--esg .metric.metric__three .metric__value {
  min-height: 1.4em;
  align-items: baseline;
}
.h-col--operational .metric.metric__four {
  margin-top: 45px;
}
.h-col--financial .metric__four .metric__label {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: nowrap;
  white-space: nowrap;
}
 
.h-col--financial .metric__four > .metric__caption {
  white-space: nowrap;
}
.h-col--financial .metric__four > .metric__caption * {
  display: inline;
  white-space: nowrap;
}
  
.metric--asset-util {
  margin-bottom: 22px;
}
.asset-util-labels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  border-bottom: 2px solid #aaacae;
  padding-bottom: 6px;
  margin-bottom: 8px;
}
.asset-util-labels .metric__label {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.asset-util-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.asset-util-values .metric__value {
  margin: 0;
}
.metric__value.asset_utilization {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 28px;
  align-items: start;
}
.asset_utilization__col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.asset_utilization__value { line-height: 1; }
.asset_utilization__suffix {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
}
/*
.metric__one, .metric__two, .metric__three, .metric__four{
  height : 20%;
}*/
.highlights__actions {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 0;
  margin-right: 107px;
  width: 100%;
  justify-content: flex-start;
  direction: rtl;
}
.highlights .right-arrow {
  transform: none;
}

.highlights__actions .pill-btn {
  background-color: #075ab1;
  color: #fff;
  border-radius: 20px;
  font-size: 12px;
  padding: 10px;
  height: 22px;
}

@media (max-width: 1024px) {
  html { --header-height: 64px; }
  .nav { height: 64px; gap: 28px; }
  #menu { gap: 40px; }
  .stage__inner {
    min-height: auto;
    padding: 56px 0 72px;
  }
  .stage__title {
    font-size: clamp(40px, 8vw, 72px);
  }
  .list-content {
    margin-bottom: 44px;
  }
  .highlights {
    padding: 72px 0 84px;
  }
  .highlights__grid {
    grid-template-columns: 1fr 1fr;
  }
  .highlights__grid > .h-col {
    padding: 28px 24px;
  }
  .metric__value {
    font-size: clamp(28px, 6vw, 44px);
  }
  .strategic .stage__overlay,
  .governance .stage__overlay,
  .financial .stage__overlay {
    background: linear-gradient(180deg,
      rgba(0, 30, 92, 0.86) 0%,
      rgba(0, 30, 92, 0.55) 60%,
      rgba(0, 30, 92, 0.20) 100%);
  }
}
@media (min-width : 760px){    
  .h-col--esg .metric__label{
    width:80%;
  }
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .nav__pill { display: none; }
  .nav { position: relative; }
  .nav__links { margin-inline-start: auto; }
  .menu-toggle {
    display: flex;
    margin-inline-start: auto;
  }
  #menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
    width: 100%;
    min-width: 0;
    padding: 10px;
    background-color: #f1f3f6fa;
    gap: 14px;
    align-items: stretch;
    direction: rtl;
    text-align: right;
  }
  #menu > * {
    align-self: stretch;
  }
  #menu .nav__link,
  #menu .nav__lang {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    text-align: right;
    padding-inline: 0;
  }
  #menu .nav__pill {
    display: none !important;
  }
  #menu.show { display: flex; }
  .menu-arrow { display: none; }
  .stage { min-height: auto; }
  /* Hero: fill first screen (block layout — avoids flex shrink / width issues on .stage__inner) */
  .stage.hero {
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100svh - var(--header-height));
  }
  .stage.hero .stage__inner {
    justify-content: center;
    padding: 32px 10px 40px;
  }
  .stage__inner {
    /*min-height: auto;*/
    padding: 38px 0 50px;
  }
  .stage__title {
    font-size: 38px;
    line-height: 1.4;
    margin-bottom: 18px;
  }
  .blue-bar { width: 100%; }
  .list-content,
  .link-content {
    flex-direction: column;
    /*align-items: flex-end;*/
    gap: 10px;
  }
  .list-content {
    width: 100%;
    margin-bottom: 26px;
  }
  #strategic-report .link-content {
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    /*width: 100%;*/
    flex-wrap: wrap;
  }
  #strategic-report .extra-actions {
    margin-top: 40px;
   /* margin-right: 120px;
    opacity: 1;*/

  }
  .strategic .stage__inner,
  .governance .stage__inner,
  .financial .stage__inner {
    align-items: flex-end;
  }
   
  #strategic-report,
  #governance-report,
  #financial-statements {
    padding-bottom: 60px;
  }
  .highlights {
    padding: 56px 0 64px;
  }
  .highlights__eyebrow {
    font-size: 24px;
  }
  .highlights__title {
    font-size: 34px;
    margin-bottom: 28px;
  }
  .highlights__grid { grid-template-columns: 1fr; }
  .highlights__grid > .h-col {
    padding: 22px 18px;
  }
  .metric,
  .metric--asset-util {
    margin-bottom: 14px;
  }
  .metric--split,
  .asset-util-labels,
  .asset-util-values {
    gap: 12px;
  }

  .metric__value {
    font-size: clamp(24px, 9vw, 34px);
  }
  .metric__caption {
    max-width: 100%;
  }
 
  .highlights__actions {
    gap: 8px;
    flex-wrap: wrap;
    margin-right:0px;
  }
  .highlights__actions .pill-btn {
    font-size: 11px;
    padding: 6px 12px;
  }
  .hero__title-corner {
    position: absolute;
    top: -10px;
    right: -50px;
    width: 35px;
    height: 35px;
    transform: translate(-240%, 13%);
    pointer-events: none;
}
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }
  #menu {
    top: 56px;
    padding: 8px 10px;
  }
  .stage__title {
    font-size: 32px;
  }
  .asset-util-labels,
  .asset-util-values,
 /* .metric--split {
    grid-template-columns: 1fr;
  }*/
  .metric--asset-util .asset-util-labels,
  .metric--asset-util .asset-util-values {
    grid-template-columns: 1fr 1fr;
  }
  .metric__value--emissions {
    flex-wrap: wrap;
    gap: 4px;
  }
  .metric__value--emissions .emissions-suffix {
    margin-top: 0;
  }
  .highlights__actions {
    width: 100%;
  }
  .highlights__actions .pill-btn {
    /*width: 100%;*/
    justify-content: center;
  }
  .download-card {
    margin-inline-end: auto;
    margin-inline-start: 0 !important;
  }
  #strategic-report .content-corner-image,
  #governance-report .content-corner-image,
  #financial-statements .content-corner-image {
    margin-inline-end: auto;
    margin-inline-start: 0 !important;
  }
  #strategic-report .stage__list,
  #governance-report .stage__list,
  #financial-statements .stage__list {
    margin-inline-end: auto;
    margin-inline-start: 0 !important;
  }
  #home {
    padding-bottom: 15px;
  }
  .stage__inner {
    min-height: inherit;
  }
}

/* View Transitions */
@view-transition {
  navigation: auto;
}

@keyframes slide-out-to-left {
  from { transform: translateX(0);     opacity: 1; }
  to   { transform: translateX(-100%); opacity: 0.4; }
}

@keyframes slide-in-from-right {
  from { transform: translateX(100%); opacity: 0.4; }
  to   { transform: translateX(0);    opacity: 1; }
}

::view-transition-image-pair(root) {
  overflow: clip;
}

::view-transition-old(root) {
  animation: 300ms cubic-bezier(0.4, 0, 0.2, 1) both slide-out-to-left;
}

::view-transition-new(root) {
  animation: 300ms cubic-bezier(0.4, 0, 0.2, 1) both slide-in-from-right;
}
