/* Keep the About page on the shared beige canvas. */
.about-hero {
  background: var(--paper) !important;
  color: var(--ink);
}

.about-hero .eyebrow-yellow,
.about-hero h1 {
  color: var(--ink);
}

.about-hero .hero-lede {
  color: var(--ink);
}

.about-hero .hero-support {
  color: var(--ink-soft);
}

.about-hero-image {
  border-color: var(--line);
  background: var(--paper);
}

.about-hero-image img {
  object-fit: contain;
  background: var(--paper);
}

.about-position,
.about-cta {
  background: var(--paper) !important;
  color: var(--ink);
}

.about-position h2,
.about-cta h2 {
  color: var(--ink);
}

.about-position-grid > div > p,
.about-cta-inner > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.about-cta .eyebrow-yellow,
.about-cta .text-link-light {
  color: var(--ink);
}

.about-cta .text-link-light span {
  color: var(--accent);
}

.about-eu-badge {
  display: block;
  width: min(100%, 220px);
  margin-top: 28px;
  padding: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.about-facts {
  grid-column: 1 / -1;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-facts > div {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 8px;
  min-width: 0;
  padding: 18px 22px 16px 0 !important;
  border: 0 !important;
}

.about-facts > div + div {
  padding-left: 22px !important;
  border-left: 1px solid var(--line) !important;
}

.about-facts strong {
  color: var(--ink) !important;
  white-space: nowrap;
}

.about-facts span {
  display: block;
}

.about-infra-logos {
  padding: 0 0 clamp(64px, 8vw, 104px);
}

.infra-logo-loop {
  overflow: hidden;
  margin-top: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.infra-logo-track {
  display: flex;
  width: max-content;
  animation: infra-logo-scroll 28s linear infinite;
}

.infra-logo-mark {
  display: grid;
  place-items: center;
  min-width: clamp(150px, 15vw, 220px);
  min-height: 84px;
  margin: 0;
  padding: 16px 24px;
}

.infra-logo-mark img {
  display: block;
  width: auto;
  max-width: 150px;
  max-height: 38px;
  filter: grayscale(1);
  opacity: .68;
}

@keyframes infra-logo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .infra-logo-track {
    animation: none;
  }
}

@media (max-width: 760px) {
  .about-facts {
    grid-template-columns: 1fr;
  }

  .about-facts > div,
  .about-facts > div + div {
    grid-template-columns: minmax(145px, .48fr) 1fr;
    gap: 18px;
    align-items: baseline;
    padding: 16px 0 !important;
    border-left: 0 !important;
  }

  .about-facts > div + div {
    border-top: 1px solid var(--line) !important;
  }
}

/* About hero: keep the first screen deliberate at wide laptop sizes. */
.about-page .about-hero {
  min-height: 0;
  height: auto;
  padding-block: clamp(34px, 4vw, 62px) clamp(38px, 5vw, 68px);
}

.about-page .about-hero-grid {
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
}

.about-page .about-hero-copy {
  min-width: 0;
  max-width: 820px;
  align-self: start;
}

.about-page .about-hero h1 {
  max-width: 10.5ch;
  margin: 18px 0 clamp(22px, 3vw, 34px);
  font-size: clamp(2.8rem, 3.3vw, 4.5rem);
  line-height: .93;
  letter-spacing: -.06em;
  text-wrap: balance;
}

.about-page .about-hero .hero-lede {
  max-width: 700px;
  margin: 0 0 18px;
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  line-height: 1.28;
}

.about-page .about-hero .hero-support {
  max-width: 620px;
  margin: 0;
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  line-height: 1.45;
}

.about-page .about-hero-image {
  width: 100%;
  max-width: 600px;
  margin: clamp(10px, 1.5vw, 24px) 0 0 auto;
  justify-self: end;
  align-self: start;
}

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

.about-page .about-facts {
  grid-column: 1 / -1;
  margin-top: clamp(28px, 4vh, 52px);
}

@media (min-width: 901px) and (max-height: 900px) {
  .about-page .about-hero {
    padding-block: 28px 36px;
  }

  .about-page .about-hero h1 {
    margin-bottom: 20px;
    font-size: clamp(2.8rem, 3.2vw, 4.25rem);
  }

  .about-page .about-hero .hero-lede {
    font-size: clamp(1.05rem, 1.3vw, 1.3rem);
  }

  .about-page .about-hero .hero-support {
    font-size: clamp(.95rem, 1vw, 1.05rem);
  }

  .about-page .about-facts {
    margin-top: 24px;
  }
}

@media (max-width: 900px) {
  .about-page .about-hero {
    padding-block: 40px 48px;
  }

  .about-page .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-page .about-hero h1 {
    max-width: 12ch;
    font-size: clamp(3rem, 11vw, 5rem);
  }

  .about-page .about-hero-image {
    max-width: 600px;
    margin: 0;
  }
}
