/*
 * Solutions overview landing page.
 * All page-specific rules are scoped to the SolutionsOverview classes so no
 * existing page styling is changed.
 */
.SolutionsOverviewWrapper {
  --solutions-pink: #e50063;
  --solutions-black: #141414;
  --solutions-surface: #e9e9e9;
  --solutions-gutter: clamp(56px, 6.25vw, 120px);
  background: #fff;
}

.SolutionsOverviewContainer .SolutionsOverviewRightSide {
  min-width: 0;
  background: #fff;
}

.SolutionsOverviewPage,
.SolutionsOverviewNode {
  width: 100%;
  min-width: 0;
}

/* Neutralize generic Drupal/content styles only inside this landing page. */
.SolutionsOverviewNode article,
.SolutionsOverviewNode section,
.SolutionsOverviewNode .field,
.SolutionsOverviewNode .field__item {
  box-sizing: border-box;
}

.SolutionsOverviewNode img {
  max-width: 100%;
}

/* ---------------- Header ---------------- */
.SolutionsOverviewHeader {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 92px;
  align-items: center;
  justify-content: space-between;
  padding: 0 42px 0 var(--solutions-gutter);
  pointer-events: none;
}

.SolutionsOverviewHeader > * {
  pointer-events: auto;
}

.SolutionsOverviewHeader__Logo {
  width: 158px;
  height: 24px;
  background: url("../images/logo.svg") center / contain no-repeat;
  filter: brightness(0) invert(1);
}

.SolutionsOverviewHeader nav ul {
  display: flex;
  align-items: center;
  gap: 42px;
  margin: 0;
  padding: 0;
}

.SolutionsOverviewHeader nav a {
  color: #fff;
  font-family: "Proxima Nova Rg", Arial, sans-serif;
  font-size: 13px;
  line-height: 1;
  transition: opacity .2s ease;
}

.SolutionsOverviewHeader nav a:hover,
.SolutionsOverviewHeader nav a.active {
  color: #fff;
  opacity: 1;
  font-family: "Proxima Nova Bold", Arial, sans-serif;
}

.SolutionsOverviewHeader__Contact {
  display: inline-flex;
  min-width: 105px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 20px;
}

/* ---------------- Hero ---------------- */
.SolutionsOverviewHero {
  display: grid;
  grid-template-columns: minmax(0, 40%) minmax(0, 60%);
  min-height: clamp(520px, 41.67vw, 800px);
  background: var(--solutions-black);
  color: #fff;
}

.SolutionsOverviewHero__Copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  padding: 118px 60px 120px var(--solutions-gutter);
}

.SolutionsOverviewHero h1 {
  max-width: 757px;
  margin: 0 0 20px;
  color: #fff;
  font-family: "Mont Heavy DEMO", Arial, sans-serif;
  font-size: 49px;
  font-style: normal;
  font-weight: 800;
  line-height: 70px;
  letter-spacing: undefined;
}

.SolutionsOverviewHero__Intro {
  max-width: 757px;
  margin: 0 0 40px;
  font-family: "Proxima Nova Rg", Arial, sans-serif;
  color: #C2C2C2;
font-size: 22px;
font-style: normal;
font-weight: 400;
line-height: 28px; /* 127.273% */
}

.SolutionsOverviewHero__Intro p {
  margin: 0;
}

.SolutionsOverviewHero__CTA,
.SolutionsOverviewHero__CTA .field,
.SolutionsOverviewHero__CTA .field__item {
  display: inline-flex;
}

.SolutionsOverviewHero__CTA a {
  display: inline-flex;
  min-width: 210px;
  height: 48px;
  padding: 0 28px;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  background: linear-gradient(90deg, #D31260 0%, #FF5722 50%, #D31260 100%);
  box-shadow: 0 8px 16px 0 rgba(211, 18, 96, 0.25);
  color: #fff;
  font-family: "Proxima Nova Bold", Arial, sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: normal;
  transition: transform .2s ease, box-shadow .2s ease;
}

.SolutionsOverviewHero__CTA a:hover {
background: #D5055F !important;
    color: #fff !important;
    text-decoration: none !important;
}

.SolutionsOverviewHero__Media {
  min-width: 0;
  min-height: inherit;
  overflow: hidden;
  background: #181818;
}

.SolutionsOverviewHero__Media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

/* ---------------- Counting / statistics ---------------- */
/*
 * The statistics are intentionally rendered without Drupal field wrappers.
 * The number markup also uses the homepage's odoHolder/odometer/plus classes,
 * so the existing Odometer skin and animation mechanics remain consistent.
 */
.SolutionsOverviewStats {
  width: 100%;
  background: #fff;
}

/* Defensive reset: no Drupal field label should ever appear in this landing page. */
.SolutionsOverviewNode .field__label {
  display: none !important;
}

.SolutionsOverviewStats__Inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  min-height: 225px;
  align-items: center;
  column-gap: clamp(28px, 5.2vw, 100px);
  padding: 48px var(--solutions-gutter) 42px;
}

.SolutionsOverviewStats .SolutionsStat.HomePage__Clients__Number {
  display: flex;
  min-width: 0;
  margin: 0;
  flex-direction: column;
  align-items: flex-start;
}

.SolutionsOverviewStats .SolutionsStat__Value.odoHolder {
  display: inline-flex;
  width: auto;
  height: 52px;
  min-height: 52px;
  align-items: baseline;
  gap: 0;
  margin: 0;
  white-space: nowrap;
  color: #141414;
  font-family: "Mont Heavy DEMO", Arial, sans-serif;
  font-size: clamp(38px, 2.5vw, 48px);
  font-weight: normal;
}

.SolutionsOverviewStats .SolutionsStat__Odometer.odometer,
.SolutionsOverviewStats .SolutionsStat__Suffix {
  position: relative;
  display: inline-block;
  margin: 0;
  color: #141414;
  font-family: "Mont Heavy DEMO", Arial, sans-serif;
  font-size: inherit;
  font-weight: normal;
  letter-spacing: 0;
  vertical-align: top;
}

.SolutionsOverviewStats .SolutionsStat__Odometer.odometer {
  overflow: hidden;
}

.SolutionsOverviewStats .SolutionsStat__Suffix {
  /* Static suffix, deliberately outside Odometer just like the homepage + sign. */
  flex: 0 0 auto;
  left: 0;
  margin: 0;
  padding: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: normal;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  white-space: nowrap;
  animation: none !important;
  transition: none !important;
  transform: none;
}

/* Keep the homepage odometer internals aligned even after the global CSS runs. */
.SolutionsOverviewStats .odometer.odometer-auto-theme,
.SolutionsOverviewStats .odometer.odometer-theme-default {
  display: inline-block;
  position: relative;
  vertical-align: top;
}

.SolutionsOverviewStats .odometer .odometer-digit,
.SolutionsOverviewStats .odometer .odometer-digit-spacer,
.SolutionsOverviewStats .odometer .odometer-digit-inner,
.SolutionsOverviewStats .odometer .odometer-ribbon,
.SolutionsOverviewStats .odometer .odometer-ribbon-inner,
.SolutionsOverviewStats .odometer .odometer-value {
  line-height: 48px;
}

.SolutionsOverviewStats .SolutionsStat__Label,
.SolutionsOverviewStats .HomePage__Clients__Number h5.SolutionsStat__Label {
  display: block;
  max-width: 255px;
  margin: 12px 0 0;
  font-family: "Proxima Nova Rg", Arial, sans-serif;
  color: #555;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* ---------------- Capability section ---------------- */
.SolutionsOverviewCapabilities {
  background: var(--solutions-surface);
  padding: 100px 0 100px;
}

.SolutionsOverviewSectionInner {
  width: 100%;
  padding: 0 var(--solutions-gutter);
}

.SolutionsOverviewSectionHeading {
  max-width: 900px;
  margin: 0 0 70px;
}

.SolutionsOverviewEyebrow {
  display: block;
  margin: 0 0 12px;
  color: var(--solutions-pink);
  font-family: "Proxima Nova Bold", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
}

.SolutionsOverviewSectionHeading h2 {
  margin: 0 0 16px;
  color: #141414;
  font-family: "Mont Heavy DEMO", Arial, sans-serif;
  font-weight: 800;
  font-size: 48px;
  font-style: normal;
  line-height: 56px;
}

.SolutionsOverviewSectionHeading__Intro {
  max-width: 800px;
  font-family: "Proxima Nova Rg", Arial, sans-serif;
  color: #555;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.SolutionsOverviewSectionHeading__Intro .field,
.SolutionsOverviewSectionHeading__Intro .field__item,
.SolutionsOverviewSectionHeading__Intro p {
  margin: 0;
}

.SolutionsOverviewSectionHeading__Intro em,
.SolutionsOverviewSectionHeading__Intro i {
  font-style: italic;
}

.SolutionsOverviewCardsView {
  width: 100%;
}

/*
 * CSS-only adaptive card layout:
 * 1 card -> full width
 * 2 cards -> 2 columns
 * 3 cards -> 3 columns
 * 4+ cards -> first 2 columns, third wide row, remaining cards balanced.
 */
.SolutionsOverviewGrid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 40px;
}

.SolutionsOverviewCard {
  grid-column: span 2;
  min-width: 0;
  min-height: 720px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 7px rgba(0,0,0,.035);
}

.SolutionsOverviewGrid > .SolutionsOverviewCard:only-child {
  grid-column: 1 / -1;
  min-height: 650px;
}

.SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(2):last-child) > .SolutionsOverviewCard {
  grid-column: span 3;
  min-height: 800px;
}

.SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(-n + 2) {
  grid-column: span 3;
  min-height: 835px;
}

.SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(3) {
  grid-column: 1 / -1;
  min-height: 435px;
}

.SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4):last-child) > .SolutionsOverviewCard:nth-child(4) {
  grid-column: 1 / -1;
}

.SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(3n + 2):last-child) > .SolutionsOverviewCard:nth-last-child(-n + 2) {
  grid-column: span 3;
}

.SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(3n + 1):last-child):has(> .SolutionsOverviewCard:nth-child(7)) > .SolutionsOverviewCard:nth-last-child(-n + 4) {
  grid-column: span 3;
}

.SolutionsOverviewCard__Link {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: inherit;
  flex-direction: column;
  color: #141414;
}

.SolutionsOverviewCard__Media {
  display: flex;
  width: 100%;
  height: 420px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 30px 32px 8px;
  background: #fff;
}

.SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(-n + 2) .SolutionsOverviewCard__Media,
.SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(2):last-child) > .SolutionsOverviewCard .SolutionsOverviewCard__Media {
  height: 535px;
  padding: 35px 42px 8px;
}

.SolutionsOverviewCard__Media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .35s ease;
}

.SolutionsOverviewCard:hover .SolutionsOverviewCard__Media img {
  transform: scale(1.015);
}

.SolutionsOverviewCard__Body {
  position: relative;
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
  padding: 31px 40px 38px;
}

.SolutionsOverviewCard__Body h3 {
  max-width: 98%;
  margin: 0 0 16px;
  font-family: "Mont Heavy DEMO", Arial, sans-serif;
  color: #141414;
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;

}

.SolutionsOverviewCard__Body p {
  max-width: 98%;
  margin: 0;
  font-family: "Proxima Nova Rg", Arial, sans-serif;
  color: #141414;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 40px;
}

.SolutionsOverviewCard__Arrow {
  display: inline-flex;
  width: 32px;
  min-height: 28px;
  margin-top: auto;
  align-items: center;
  color: var(--solutions-pink);
  font-family: Arial, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  transform: translateX(0);
  transition: transform .2s ease;
}

.SolutionsOverviewCard:hover .SolutionsOverviewCard__Arrow {
  transform: translateX(5px);
}

/* Third card becomes the wide horizontal design card only when 4+ exist. */
.SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(3) .SolutionsOverviewCard__Link {
  display: grid;
  grid-template-columns: minmax(0, 51%) minmax(0, 49%);
  min-height: 435px;
}

.SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(3) .SolutionsOverviewCard__Media {
  grid-column: 2;
  grid-row: 1;
  height: 100%;
  min-height: 435px;
  padding: 18px 36px;
}

.SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(3) .SolutionsOverviewCard__Body {
  grid-column: 1;
  grid-row: 1;
  justify-content: center;
  padding: 46px 58px;
}

.SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(3) .SolutionsOverviewCard__Body p {
  max-width: 94%;
}

/* ---------------- Industries / Sectors carousel ----------------
 * Keep this block visually and behaviorally aligned with the Sectors We Serve
 * block used on Solution detail pages.  The left edge follows the normal
 * content container, while the carousel bleeds through the right gutter to
 * the viewport edge.
 */
.SolutionsOverviewIndustries {
  position: relative;
  overflow: hidden;
  padding: 85px 0 95px;
  background: #fafafa;
}

.SolutionsOverviewIndustries .SolutionsOverviewSectionInner {
  padding-right: 120px;
  padding-left: 120px;
}

.SolutionsOverviewIndustries .SolutionsOverviewSectionHeading {
  margin: 0 0 30px;
}

.SolutionsOverviewIndustries .SolutionsOverviewEyebrow {
  margin-bottom: 8px;
  color: var(--solutions-pink);
  font-family: "Proxima Nova Bold", Arial, sans-serif;
  font-size: 12px;
  line-height: 1;
}

.SolutionsOverviewIndustries .SolutionsOverviewSectionHeading h2 {
  margin: 0;
  color: #171717;
  font-family: "Proxima Nova Bold", Arial, sans-serif;
  font-size: clamp(32px, 2.65vw, 48px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: 0;
}

.SolutionsOverviewIndustries .SolutionsSectors__Carousel {
  position: relative;
  width: calc(100% + 120px);
  max-width: none;
  margin-right: -120px;
  overflow: visible;
}

.SolutionsOverviewIndustries .SolutionsSectors__Carousel .owl-stage-outer {
  overflow: hidden;
}

.SolutionsOverviewIndustries .SolutionsSectors__Carousel .owl-stage {
  display: flex;
}

.SolutionsOverviewIndustries .SolutionsSectors__Carousel .owl-item {
  min-width: 0;
}

.SolutionsOverviewIndustries .SolutionsSectorCard {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 15px;
}

.SolutionsOverviewIndustries .SolutionsSectorCard > a {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  color: #fff;
  text-decoration: none;
}

.SolutionsOverviewIndustries .SolutionsSectorCard img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.SolutionsOverviewIndustries .SolutionsSectorCard:hover img {
  transform: scale(1.05);
}

.SolutionsOverviewIndustries .SolutionsSectorCard__Shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,0) 62%);
}

.SolutionsOverviewIndustries .SolutionsSectorCard h3 {
  position: absolute;
  z-index: 1;
  right: 25px;
  bottom: 25px;
  left: 25px;
  margin: 0;
  color: #fff;
  font-family: "Mont", Arial, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
}

/* Same SVG controls and in-container positioning as Solution details. */
.SolutionsOverviewIndustries .owl-nav {
  position: absolute;
  top: -78px;
  right: 120px;
  display: flex !important;
  gap: 16px;
  margin: 0;
}

.SolutionsOverviewIndustries .owl-nav button {
  display: flex !important;
  width: 30px;
  height: 32px;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--solutions-pink) !important;
}

.SolutionsOverviewIndustries .owl-nav button svg {
  display: block;
  width: 14px;
  height: 24px;
  flex: 0 0 14px;
}

.SolutionsOverviewIndustries .owl-nav button svg path {
  fill: #D5055F !important;
  stroke: none !important;
}

.SolutionsOverviewIndustries .owl-nav button.disabled {
  opacity: .25;
}

.SolutionsOverviewIndustries .owl-dots {
  display: none !important;
}

/* ---------------- Responsive desktop/tablet ---------------- */
@media screen and (max-width: 1500px) {
  .SolutionsOverviewWrapper {
    --solutions-gutter: clamp(50px, 6vw, 90px);
  }

  .SolutionsOverviewHero {
    grid-template-columns: 43% 57%;
    min-height: clamp(500px, 40vw, 650px);
  }

  .SolutionsOverviewHero__Copy {
    padding-top: 105px;
    padding-bottom: 62px;
  }

  .SolutionsOverviewStats,
  .SolutionsOverviewStats__Inner {
    min-height: 180px;
  }

  .SolutionsOverviewStats__Inner {
    padding-top: 44px;
    padding-bottom: 40px;
  }

  .SolutionsOverviewCapabilities {
    padding-top: 70px;
    padding-bottom: 78px;
  }

  .SolutionsOverviewSectionHeading {
    margin-bottom: 48px;
  }

  .SolutionsOverviewGrid {
    gap: 28px;
  }

  .SolutionsOverviewCard {
    min-height: 580px;
  }

  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(-n + 2) {
    min-height: 650px;
  }

  .SolutionsOverviewCard__Media {
    height: 330px;
  }

  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(-n + 2) .SolutionsOverviewCard__Media,
  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(2):last-child) > .SolutionsOverviewCard .SolutionsOverviewCard__Media {
    height: 405px;
  }

  .SolutionsOverviewCard__Body {
    padding: 25px 30px 31px;
  }

  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(3),
  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(3) .SolutionsOverviewCard__Link,
  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(3) .SolutionsOverviewCard__Media {
    min-height: 345px;
  }

  .SolutionsOverviewIndustries {
    padding-top: 70px;
    padding-bottom: 72px;
  }
}

@media screen and (max-width: 1100px) {
  .SolutionsOverviewWrapper {
    --solutions-gutter: 48px;
  }

  .SolutionsOverviewHeader {
    padding-right: 28px;
  }

  .SolutionsOverviewHeader nav ul {
    gap: 24px;
  }

  .SolutionsOverviewHero {
    grid-template-columns: 48% 52%;
    min-height: 500px;
  }

  .SolutionsOverviewHero__CTA a {
    min-width: 180px;
    height: 44px;
  }

  .SolutionsOverviewStats__Inner {
    gap: 24px;
  }

  .SolutionsOverviewGrid {
    gap: 20px;
  }

  .SolutionsOverviewCard,
  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(-n + 2) {
    min-height: 520px;
  }

  .SolutionsOverviewCard__Media,
  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(-n + 2) .SolutionsOverviewCard__Media,
  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(2):last-child) > .SolutionsOverviewCard .SolutionsOverviewCard__Media {
    height: 315px;
  }

  .SolutionsOverviewCard__Body h3 {
    font-size: 23px;
  }

  .SolutionsOverviewCard__Body p {
    font-size: 13px;
  }
}

/* Industries follows the exact Solution-details container at tablet width. */
@media screen and (max-width: 1100px) {
  .SolutionsOverviewIndustries .SolutionsOverviewSectionInner {
    padding-right: 60px;
    padding-left: 60px;
  }

  .SolutionsOverviewIndustries .SolutionsSectors__Carousel {
    width: calc(100% + 60px);
    margin-right: -60px;
  }

  .SolutionsOverviewIndustries .owl-nav {
    right: 60px;
  }
}

/* ---------------- Mobile ---------------- */
@media screen and (max-width: 767.9px) {
  .SolutionsOverviewWrapper {
    --solutions-gutter: 18px;
  }

  .SolutionsOverviewContainer .SolutionsOverviewRightSide {
    left: 0;
    width: 100%;
    margin-top: 60px;
  }

  .SolutionsOverviewHeader {
    display: none;
  }

  .SolutionsOverviewLeftMenu .LeftMenu__About__VerticalLabel {
    display: none;
  }

  .SolutionsOverviewHero {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .SolutionsOverviewHero__Copy {
    min-height: 0;
    justify-content: flex-start;
    padding: 14px 18px 18px;
  }

  .SolutionsOverviewHero h1 {
    max-width: 330px;
    margin-bottom: 8px;
    margin-top: 40px;
font-size: 38px;
font-style: normal;
font-weight: 800;
line-height: 40px;
  }

  .SolutionsOverviewHero__Intro {
    max-width: 344px;
    margin-bottom: 24px;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 20px; /* 125% */
  }

  .SolutionsOverviewHero__CTA,
  .SolutionsOverviewHero__CTA .field,
  .SolutionsOverviewHero__CTA .field__item {
    width: 100%;
  }

  .SolutionsOverviewHero__CTA a {
    width: 100%;
    min-width: 0;
    font-size: 16px;
line-height: normal;
  }

  .SolutionsOverviewHero__Media {
    height: 170px;
    min-height: 170px;
  }

  .SolutionsOverviewHero__Media img {
    min-height: 170px;
    object-position: center;
  }

  .SolutionsOverviewStats {
    min-height: 104px;
  }

  .SolutionsOverviewStats__Inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 104px;
    gap: 24px;
    padding: 40px 20px;
  }

  .SolutionsOverviewStats .SolutionsStat__Value.odoHolder {
    font-size: 21px;
    line-height: 24px;
            height: 40px;
        min-height: 40px;
  }

  .SolutionsOverviewStats .SolutionsStat__Odometer.odometer,
  .SolutionsOverviewStats .SolutionsStat__Suffix {
    font-size: 21px;
    line-height: 24px;
  }

  .SolutionsOverviewStats .odometer .odometer-digit,
  .SolutionsOverviewStats .odometer .odometer-digit-spacer,
  .SolutionsOverviewStats .odometer .odometer-digit-inner,
  .SolutionsOverviewStats .odometer .odometer-ribbon,
  .SolutionsOverviewStats .odometer .odometer-ribbon-inner,
  .SolutionsOverviewStats .odometer .odometer-value {
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
  }

  .SolutionsOverviewStats .SolutionsStat__Label,
  .SolutionsOverviewStats .HomePage__Clients__Number h5.SolutionsStat__Label {
    max-width: none;
    margin-top: 5px;
    min-height: 35px;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
  }

  .SolutionsOverviewCapabilities {
    padding: 40px 0 40px;
  }

  .SolutionsOverviewSectionHeading {
    margin-bottom: 32px;
  }

  .SolutionsOverviewEyebrow {
    margin-bottom: 5px;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: undefined;
text-transform: uppercase;
  }

  .SolutionsOverviewSectionHeading h2 {
    margin-bottom: 7px;
    color: #141414;
font-family: "Mont Heavy DEMO", Arial, sans-serif;
font-size: 28px;
font-style: normal;
font-weight: 800;
line-height: normal;

  }

  .SolutionsOverviewSectionHeading__Intro {
    max-width: 340px;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 20px; /* 125% */
  }

  .SolutionsOverviewGrid {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .SolutionsOverviewGrid > .SolutionsOverviewCard,
  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(3) {
    width: 100%;
    min-height: 0 !important;
  }

  .SolutionsOverviewCard__Link,
  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(3) .SolutionsOverviewCard__Link {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .SolutionsOverviewCard__Media,
  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(-n + 2) .SolutionsOverviewCard__Media,
  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(2):last-child) > .SolutionsOverviewCard .SolutionsOverviewCard__Media,
  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(3) .SolutionsOverviewCard__Media {
    order: 0;
    width: 100%;
    height: 180px;
    min-height: 180px;
    padding: 10px 10px 2px;
  }

  .SolutionsOverviewCard__Body,
  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(3) .SolutionsOverviewCard__Body {
    order: 1;
    display: flex;
    min-height: 105px;
    justify-content: flex-start;
    padding: 20px;
  }

  .SolutionsOverviewCard__Body h3,
  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(3) .SolutionsOverviewCard__Body h3 {
    max-width: 94%;
    margin-bottom: 12px;

font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: normal;
  }

  .SolutionsOverviewCard__Body p,
  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(3) .SolutionsOverviewCard__Body p {
    max-width: 98%;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 18px;
  }

  .SolutionsOverviewCard__Arrow {
    display: none;
  }

  /* Industries: same carousel proportions and right-edge bleed as Solution details. */
  .SolutionsOverviewIndustries {
    padding: 40px 0 40px;
  }

  .SolutionsOverviewIndustries .SolutionsOverviewSectionInner {
    padding-right: 16px;
    padding-left: 16px;
  }

  .SolutionsOverviewIndustries .SolutionsOverviewSectionHeading {
    margin-bottom: 30px;
  }

  .SolutionsOverviewIndustries .SolutionsOverviewEyebrow {
    margin-bottom: 9px;
    font-size: 12px;
    line-height: 14px;
  }

  .SolutionsOverviewIndustries .SolutionsOverviewSectionHeading h2 {
    max-width: 350px;
    font-size: 28px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
  }

  .SolutionsOverviewIndustries .SolutionsSectors__Carousel {
    width: calc(100% + 16px);
    margin-right: -16px;
    overflow: hidden;
  }

  .SolutionsOverviewIndustries .SolutionsSectors__Carousel .owl-stage-outer {
    overflow: hidden;
  }

  .SolutionsOverviewIndustries .SolutionsSectorCard {
    border-radius: 16px;
  }

  .SolutionsOverviewIndustries .SolutionsSectorCard > a {
    border-radius: 16px;
  }

  .SolutionsOverviewIndustries .SolutionsSectorCard h3 {
    right: 14px;
    bottom: 14px;
    left: 14px;
    font-family: "Proxima Nova Bold", Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
  }

  .SolutionsOverviewIndustries .owl-nav {
    right: 16px;
  }

  .SolutionsOverviewIndustries .owl-nav button {
    width: 26px;
    height: 30px;
  }

  .SolutionsOverviewIndustries .owl-nav button svg {
    width: 12px;
    height: 21px;
  }
}

@media screen and (max-width: 390px) {
  .SolutionsOverviewHero h1 {
    font-size: 29px;
  }

  .SolutionsOverviewHero__Media,
  .SolutionsOverviewHero__Media img {
    height: 205px;
    min-height: 205px;
  }

  .SolutionsOverviewCard__Media,
  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(-n + 2) .SolutionsOverviewCard__Media,
  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(2):last-child) > .SolutionsOverviewCard .SolutionsOverviewCard__Media,
  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(3) .SolutionsOverviewCard__Media {
    height: 180px;
    min-height: 180px;
  }

}

/* ========================================================================
 * v11 – Capability cards matched to the approved desktop/Figma spacing.
 * The selected design uses 40px card padding, 40px between media and copy on
 * the first two cards, 60px on the three compact cards, and 64px from the
 * section intro to the card grid.  These rules are desktop/tablet only so the
 * existing mobile stack remains unchanged.
 * ====================================================================== */
@media screen and (min-width: 761px) {
  .SolutionsOverviewCapabilities .SolutionsOverviewSectionHeading {
    margin-bottom: 64px;
  }

  .SolutionsOverviewCard__Link {
    box-sizing: border-box;
    padding: 40px;
    gap: 60px;
  }

  .SolutionsOverviewCard__Media {
    flex: 0 0 auto;
    height: 300px;
    padding: 0;
  }

  .SolutionsOverviewCard__Body {
    min-height: 0;
    padding: 0;
  }

  /* The first two cards are the taller 2-column cards in the design. */
  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(-n + 2) .SolutionsOverviewCard__Link,
  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(2):last-child) > .SolutionsOverviewCard .SolutionsOverviewCard__Link {
    gap: 40px;
  }

  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(-n + 2) .SolutionsOverviewCard__Media,
  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(2):last-child) > .SolutionsOverviewCard .SolutionsOverviewCard__Media {
    height: 455px;
    padding: 0;
  }

  /* Wide third card: 40px outer padding, larger text inset on the left,
     image aligned to the right, and the arrow sits below the description
     instead of being forced to the card bottom. */
  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(3) .SolutionsOverviewCard__Link {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 435px;
    column-gap: 40px;
    row-gap: 0;
    padding: 40px;
  }

  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(3) .SolutionsOverviewCard__Media {
    width: 100%;
    height: auto;
    min-height: 355px;
    padding: 0;
  }

  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(3) .SolutionsOverviewCard__Body {
    min-height: 0;
    justify-content: center;
    padding: 0 10px 0 60px;
  }

  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(3) .SolutionsOverviewCard__Arrow {
    margin-top: 36px;
  }

  /* Draw the double-chevron from CSS so it matches the artwork rather than
     relying on the browser-specific » glyph. */
  .SolutionsOverviewCard__Arrow {
    position: relative;
    width: 30px;
    min-width: 30px;
    height: 28px;
    min-height: 28px;
    margin-top: auto;
    color: transparent;
    font-size: 0;
    line-height: 0;
  }

  .SolutionsOverviewCard__Arrow::before,
  .SolutionsOverviewCard__Arrow::after {
    content: "";
    position: absolute;
    top: 7px;
    width: 10px;
    height: 10px;
    border-right: 3px solid var(--solutions-pink);
    border-bottom: 3px solid var(--solutions-pink);
    transform: rotate(-45deg);
    transform-origin: center;
  }

  .SolutionsOverviewCard__Arrow::before {
    left: 0;
  }

  .SolutionsOverviewCard__Arrow::after {
    left: 8px;
  }

  .SolutionsOverviewCard:hover .SolutionsOverviewCard__Arrow {
    transform: translateX(5px);
  }
}

/* Keep the same layout logic at regular laptop widths while preserving the
   approved 40px card padding. */
@media screen and (min-width: 1101px) and (max-width: 1500px) {
  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(-n + 2) .SolutionsOverviewCard__Media,
  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(2):last-child) > .SolutionsOverviewCard .SolutionsOverviewCard__Media {
    height: 350px;
  }

  .SolutionsOverviewCard__Media {
    height: 255px;
  }

  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(3) .SolutionsOverviewCard__Link {
    min-height: 345px;
  }

  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(3) .SolutionsOverviewCard__Media {
    min-height: 265px;
  }

  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(3) .SolutionsOverviewCard__Body {
    padding-left: 42px;
  }
}

@media screen and (min-width: 761px) and (max-width: 1100px) {
  .SolutionsOverviewCapabilities .SolutionsOverviewSectionHeading {
    margin-bottom: 44px;
  }

  .SolutionsOverviewCard__Link {
    padding: 30px;
    gap: 40px;
  }

  .SolutionsOverviewCard__Media {
    height: 225px;
  }

  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(-n + 2) .SolutionsOverviewCard__Link,
  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(2):last-child) > .SolutionsOverviewCard .SolutionsOverviewCard__Link {
    gap: 30px;
  }

  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(-n + 2) .SolutionsOverviewCard__Media,
  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(2):last-child) > .SolutionsOverviewCard .SolutionsOverviewCard__Media {
    height: 285px;
  }

  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(3) .SolutionsOverviewCard__Link {
    min-height: 300px;
    column-gap: 24px;
    padding: 30px;
  }

  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(3) .SolutionsOverviewCard__Media {
    min-height: 240px;
  }

  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(3) .SolutionsOverviewCard__Body {
    padding-left: 22px;
  }
}

/* ========================================================================
 * v16 — Single-card rows are full-bleed on the image side.
 * Two- and three-card rows keep the approved 40px card inset.  When a row is
 * a single wide card (the third card in the 6-card design, an only child, or
 * the fourth card when there are exactly four), the media has no surrounding
 * card padding; only the copy keeps its internal inset.
 * ====================================================================== */
@media screen and (min-width: 761px) {
  /* Normal 2/3-column cards: preserve equal left/right inset around image. */
  .SolutionsOverviewGrid > .SolutionsOverviewCard:not(:only-child) .SolutionsOverviewCard__Link {
    box-sizing: border-box;
  }

  /* Wide / single-row card variants. */
  .SolutionsOverviewGrid > .SolutionsOverviewCard:only-child .SolutionsOverviewCard__Link,
  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(3) .SolutionsOverviewCard__Link,
  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4):last-child) > .SolutionsOverviewCard:nth-child(4) .SolutionsOverviewCard__Link {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0;
    padding: 0 !important;
  }

  .SolutionsOverviewGrid > .SolutionsOverviewCard:only-child .SolutionsOverviewCard__Media,
  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(3) .SolutionsOverviewCard__Media,
  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4):last-child) > .SolutionsOverviewCard:nth-child(4) .SolutionsOverviewCard__Media {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    height: 100%;
    min-height: 100%;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
  }

  .SolutionsOverviewGrid > .SolutionsOverviewCard:only-child .SolutionsOverviewCard__Media img,
  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(3) .SolutionsOverviewCard__Media img,
  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4):last-child) > .SolutionsOverviewCard:nth-child(4) .SolutionsOverviewCard__Media img {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0 !important;
    margin: 0 !important;
    object-fit: contain;
    object-position: center;
  }

  .SolutionsOverviewGrid > .SolutionsOverviewCard:only-child .SolutionsOverviewCard__Body,
  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(3) .SolutionsOverviewCard__Body,
  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4):last-child) > .SolutionsOverviewCard:nth-child(4) .SolutionsOverviewCard__Body {
    grid-column: 1;
    grid-row: 1;
    justify-content: center;
    padding: 50px 50px 50px 80px !important;
  }

  /* Keep the section itself aligned to the same website gutters on both sides. */
  .SolutionsOverviewCapabilities .SolutionsOverviewSectionInner {
    padding-left: var(--solutions-gutter);
    padding-right: var(--solutions-gutter);
  }
}

@media screen and (min-width: 761px) and (max-width: 1100px) {
  .SolutionsOverviewGrid > .SolutionsOverviewCard:only-child .SolutionsOverviewCard__Body,
  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(3) .SolutionsOverviewCard__Body,
  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4):last-child) > .SolutionsOverviewCard:nth-child(4) .SolutionsOverviewCard__Body {
    padding: 34px 30px 34px 42px !important;
  }
}

/* ========================================================================
 * v19 — Desktop reference pass based on the supplied final design screenshot.
 * Keeps the existing mobile layout, but corrects desktop proportions,
 * vertical rhythm, card heights, hero split, industries bleed and colors.
 * ====================================================================== */
@media screen and (min-width: 761px) {
  .SolutionsOverviewWrapper {
    --solutions-surface: #e7e7e7;
  }

  /* The reference hero is visually balanced: copy and artwork are near 50/50. */
  .SolutionsOverviewHero {
    grid-template-columns: minmax(0, 50%) minmax(0, 50%) !important;
    min-height: clamp(520px, 39vw, 760px) !important;
  }

  .SolutionsOverviewHero__Media {
    position: relative;
  }

  /* The reference artwork is slightly darker than the raw asset. */
  .SolutionsOverviewHero__Media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: rgba(0, 0, 0, .08);
  }

  .SolutionsOverviewHero__Media img {
    position: relative;
    z-index: 0;
  }

  /* Homepage counter proportions: only the digits animate; suffix stays static. */
  .SolutionsOverviewStats__Inner {
    min-height: 198px !important;
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  .SolutionsOverviewStats .SolutionsStat__Value.odoHolder {
    height: 46px !important;
    min-height: 46px !important;
    color: #141414;
    font-family: "Mont Heavy DEMO", Arial, sans-serif;
    font-size: 56px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
  }

  .SolutionsOverviewStats .SolutionsStat__Suffix {
    height: 42px !important;
    font-size: 44px !important;
    line-height: 39px !important;
    vertical-align: baseline !important;
  }


  /* Keep the approved heading spacing but remove excess height from the cards. */
  .SolutionsOverviewCapabilities {
    background: #e7e7e7 !important;
    padding-bottom: 100px !important;
  }

  .SolutionsOverviewCapabilities .SolutionsOverviewSectionHeading {
    margin-bottom: 64px !important;
  }

  .SolutionsOverviewCard {
    min-height: 650px !important;
  }

  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(-n + 2),
  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(2):last-child) > .SolutionsOverviewCard {
    min-height: 760px !important;
  }

  .SolutionsOverviewCard__Media {
    height: 260px !important;
  }

  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(-n + 2) .SolutionsOverviewCard__Media,
  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(2):last-child) > .SolutionsOverviewCard .SolutionsOverviewCard__Media {
    height: 405px !important;
  }

  /* The single full-width card keeps a true full-bleed image half. */
  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(3),
  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(3) .SolutionsOverviewCard__Link {
    min-height: 390px !important;
  }

  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(3) .SolutionsOverviewCard__Media {
    height: 100% !important;
    min-height: 100% !important;
    padding: 0 !important;
  }

  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(3) .SolutionsOverviewCard__Body {
    padding: 44px 44px 44px 72px !important;
  }

  /* Industries uses the same left gutter as the content and bleeds only right. */
  .SolutionsOverviewIndustries {
    background: #fff !important;
    padding-top: 76px !important;
    padding-bottom: 82px !important;
  }

  .SolutionsOverviewIndustries .SolutionsOverviewSectionInner {
    padding-left: var(--solutions-gutter) !important;
    padding-right: var(--solutions-gutter) !important;
  }

  .SolutionsOverviewIndustries .SolutionsSectors__Carousel {
    width: calc(100% + var(--solutions-gutter)) !important;
    margin-right: calc(-1 * var(--solutions-gutter)) !important;
  }

  .SolutionsOverviewIndustries .SolutionsSectorCard > a {
    aspect-ratio: 3 / 4 !important;
  }

  .SolutionsOverviewIndustries .owl-nav {
    right: var(--solutions-gutter) !important;
  }
}

/* Laptop reference proportions: keep the same composition instead of reverting
   to the older 43/57 hero and oversized card heights. */
@media screen and (min-width: 1101px) and (max-width: 1500px) {
  .SolutionsOverviewHero {
    grid-template-columns: minmax(0, 49%) minmax(0, 51%) !important;
    min-height: clamp(500px, 38vw, 600px) !important;
  }

  .SolutionsOverviewStats__Inner {
    min-height: 170px !important;
    padding-top: 30px !important;
    padding-bottom: 28px !important;
  }

  .SolutionsOverviewCapabilities {
    padding-bottom: 62px !important;
  }

  .SolutionsOverviewCard {
    min-height: 520px !important;
  }

  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(-n + 2),
  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(2):last-child) > .SolutionsOverviewCard {
    min-height: 590px !important;
  }

  .SolutionsOverviewCard__Media {
    height: 225px !important;
  }

  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(-n + 2) .SolutionsOverviewCard__Media,
  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(2):last-child) > .SolutionsOverviewCard .SolutionsOverviewCard__Media {
    height: 315px !important;
  }

  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(3),
  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(3) .SolutionsOverviewCard__Link {
    min-height: 310px !important;
  }

  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4)) > .SolutionsOverviewCard:nth-child(3) .SolutionsOverviewCard__Body {
    padding: 36px 36px 36px 52px !important;
  }

  .SolutionsOverviewIndustries {
    padding-top: 66px !important;
    padding-bottom: 70px !important;
  }
}

/* Tablet keeps the same near-even hero split and avoids the desktop fixed
   counter size becoming too large. */
@media screen and (min-width: 761px) and (max-width: 1100px) {
  .SolutionsOverviewHero {
    grid-template-columns: 48% 52% !important;
  }

  .SolutionsOverviewStats .SolutionsStat__Value.odoHolder,
  .SolutionsOverviewStats .SolutionsStat__Suffix {
    font-size: 36px !important;
  }

  .SolutionsOverviewStats .SolutionsStat__Value.odoHolder,
  .SolutionsOverviewStats .SolutionsStat__Odometer.odometer,
  .SolutionsOverviewStats .SolutionsStat__Suffix,
  .SolutionsOverviewStats .odometer .odometer-digit,
  .SolutionsOverviewStats .odometer .odometer-digit-spacer,
  .SolutionsOverviewStats .odometer .odometer-digit-inner,
  .SolutionsOverviewStats .odometer .odometer-ribbon,
  .SolutionsOverviewStats .odometer .odometer-ribbon-inner,
  .SolutionsOverviewStats .odometer .odometer-value {
    line-height: 36px !important;
  }
}

/* ================================================================
 * v20 alignment corrections
 * - Keep the desktop hero artwork below the top navigation.
 * - Keep the wide solution artwork full-bleed inside its own card.
 * - Industries remains the only content carousel that intentionally
 *   bleeds through the normal right content gutter.
 * ================================================================ */
@media screen and (min-width: 761px) {
  /* The Figma header sits on a black strip.  The hero artwork begins below it
     rather than running underneath the navigation links. */
  .SolutionsOverviewHero__Media {
    display: flex;
    box-sizing: border-box;
    min-height: inherit;
    flex-direction: column;
    padding-top: 92px;
    background: #141414;
  }

  .SolutionsOverviewHero__Media img {
    flex: 1 1 0;
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: cover;
    object-position: center;
  }

  /* The single horizontal capability card uses edge-to-edge artwork on its
     image half.  Two/three-column cards keep their normal image inset. */
  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4))
    > .SolutionsOverviewCard:nth-child(3)
    .SolutionsOverviewCard__Media {
    padding: 0 !important;
  }

  .SolutionsOverviewGrid:has(> .SolutionsOverviewCard:nth-child(4))
    > .SolutionsOverviewCard:nth-child(3)
    .SolutionsOverviewCard__Media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

/* Core Capability Suite — match the Featured Work arrow hover behavior. */
.SolutionsOverviewCapabilities .SolutionsOverviewCard .arrow .the-arrow,
.SolutionsOverviewCapabilities .SolutionsOverviewCard .arrow .other-arrow,
.SolutionsOverviewCapabilities .SolutionsOverviewCard .arrow .dot {
  transition: all 0.3s ease-in-out;
}

.SolutionsOverviewCapabilities .SolutionsOverviewCard:hover .arrow .the-arrow {
  fill: #333333;
  transform: translate(7px, -3px) scale(1.3);
}

.SolutionsOverviewCapabilities .SolutionsOverviewCard:hover .arrow .other-arrow {
  transform: translate(-2%, 0) scale(0.6);
  opacity: 0;
}

.SolutionsOverviewCapabilities .SolutionsOverviewCard:hover .arrow .dot {
  position: relative;
  transform: translate(20%, 32%);
  opacity: 0;
}

/* Responsive Solutions Overview hero images.
 * Desktop and mobile fields are independent; there is no fallback.
 */
.SolutionsOverviewHero__Media--mobile {
  display: none;
}

@media screen and (max-width: 767.9px) {
  .SolutionsOverviewHero__Media--desktop {
    display: none !important;
  }

  .SolutionsOverviewHero__Media--mobile {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .SolutionsOverviewHero__Media--desktop {
    display: flex;
  }

  .SolutionsOverviewHero__Media--mobile {
    display: none !important;
  }
}
