/* ICHA V1.1 homepage-only correction.
   Loaded only by index.html. No non-homepage page is affected. */

/* Remove the numbered/explainer treatment while retaining the supplied positioning copy. */
.v1-home .v1-difference-grid span,
.v1-home .v1-value-item > span {
  display: none !important;
}

.v1-home .v1-difference-grid article {
  min-height: 210px;
  padding-top: 28px;
}

.v1-home .v1-value-item {
  grid-template-columns: 1fr !important;
}

/* Exact homepage Core Competencies + Thematic Areas content: flat, icon-free, number-free. */
.v1-home-work-block {
  padding: clamp(72px, 8vw, 116px) 0;
}

.v1-home-core {
  background: #111;
  color: #fff;
}

.v1-home-themes {
  background: #f5f5f2;
  color: #111;
}

.v1-home-work-heading {
  padding-bottom: clamp(26px, 3vw, 42px);
  border-bottom: 1px solid currentColor;
}

.v1-home-work-heading h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(2rem, 4vw, 3.65rem);
  letter-spacing: -.04em;
}

.v1-home-work-grid {
  display: grid;
  margin-top: 0;
}

.v1-home-core-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.v1-home-theme-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.v1-home-work-grid article {
  min-width: 0;
  padding: clamp(28px, 3vw, 44px) clamp(20px, 2.4vw, 34px) clamp(34px, 4vw, 54px) 0;
}

.v1-home-work-grid article + article {
  padding-left: clamp(20px, 2.4vw, 34px);
  border-left: 1px solid rgba(128, 128, 128, .42);
}

.v1-home-work-grid h3 {
  margin: 0 0 16px;
  font-size: clamp(1.12rem, 1.5vw, 1.42rem);
  line-height: 1.16;
  letter-spacing: -.02em;
}

.v1-home-core-grid h3 {
  color: #fff;
}

.v1-home-core-grid p {
  color: rgba(255, 255, 255, .72);
}

.v1-home-theme-grid h3 {
  color: #111;
}

.v1-home-theme-grid p {
  color: #555;
}

.v1-home-work-grid p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.7;
}

/* Existing three-item section moved to the bottom and retitled. */
.v1-home .v1-explore-work {
  padding-top: clamp(70px, 7vw, 100px);
  padding-bottom: clamp(72px, 8vw, 112px);
  background: #fff;
}

.v1-explore-work-heading {
  padding-bottom: clamp(22px, 2.5vw, 34px);
  border-bottom: 1px solid #111;
}

.v1-explore-work-heading h2 {
  margin: 0;
  color: #111;
  font-size: clamp(2rem, 4vw, 3.65rem);
  letter-spacing: -.04em;
}

.v1-home .v1-explore-work .featured-entry-grid {
  border-top: 0;
}

/* Homepage-local logo assets: preserve their intended proportions and avoid broken-image UI. */
.v1-home .nav-logo img,
.v1-home .footer-logo img,
.v1-home .partner-logo-item img {
  object-fit: contain;
}

.v1-home .nav-logo img {
  height: auto;
}

.v1-home .footer-logo img {
  height: auto;
}

@media (max-width: 1100px) {
  .v1-home-core-grid,
  .v1-home-theme-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v1-home-work-grid article:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .v1-home-work-grid article:nth-child(n+3) {
    border-top: 1px solid rgba(128, 128, 128, .42);
  }
}

@media (max-width: 680px) {
  .v1-home-core-grid,
  .v1-home-theme-grid {
    grid-template-columns: 1fr;
  }

  .v1-home-work-grid article,
  .v1-home-work-grid article + article,
  .v1-home-work-grid article:nth-child(odd) {
    padding: 26px 0 30px;
    border-left: 0;
    border-top: 1px solid rgba(128, 128, 128, .42);
  }

  .v1-home-work-grid article:first-child {
    border-top: 0;
  }
}

/* ICHA V1.2 homepage correction: meaningful supplied icons, original moving partner carousel,
   and removal of the three generic explainer/kicker labels identified in QA. */

.v1-home-work-grid article {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  column-gap: 18px;
  align-items: start;
}

.v1-home-work-grid .v1-work-icon {
  display: block;
  width: 51px;
  height: 51px;
  object-fit: contain;
  flex: none;
}

.v1-home-work-grid article > div {
  min-width: 0;
}

.v1-home .partner-strip {
  overflow: hidden;
}

.v1-partners-heading {
  padding-bottom: clamp(22px, 2.5vw, 34px);
  border-bottom: 1px solid #111;
}

.v1-partners-heading h2 {
  margin: 0;
  color: #111;
  font-size: clamp(2rem, 4vw, 3.65rem);
  letter-spacing: -.04em;
}

/* Restore the partner logo carousel behaviour from the pre-V1 homepage. */
.v1-home .partner-marquee {
  position: relative;
  margin-top: var(--space-lg);
  overflow: hidden;
}

.v1-home .partner-track {
  display: flex;
  align-items: center;
  width: max-content;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: var(--space-xl);
  animation: partner-scroll 54s linear infinite;
}

.v1-home .partner-logo-item[aria-hidden="true"] {
  display: flex;
}

.v1-home .partner-marquee:hover .partner-track,
.v1-home .partner-marquee:focus-within .partner-track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .v1-home .partner-track {
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
    animation: none;
  }

  .v1-home .partner-logo-item[aria-hidden="true"] {
    display: none;
  }
}

@media (max-width: 680px) {
  .v1-home-work-grid article,
  .v1-home-work-grid article + article,
  .v1-home-work-grid article:nth-child(odd) {
    grid-template-columns: 46px minmax(0, 1fr);
    column-gap: 16px;
  }

  .v1-home-work-grid .v1-work-icon {
    width: 42px;
    height: 42px;
  }
}

/* V4.4 temporary homepage opportunity feature. */
.v1-home .airbus-opportunity-feature {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  background: #111;
  color: #fff;
  border-bottom: 1px solid #333;
}

.v1-home .airbus-opportunity-home-grid {
  display: grid;
  grid-template-columns: minmax(150px, .28fr) minmax(0, 1.1fr) minmax(230px, .45fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.v1-home .airbus-opportunity-home-label {
  color: #ff6471;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.v1-home .airbus-opportunity-home-copy h2 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: clamp(2rem, 3.8vw, 3.75rem);
  line-height: 1;
  letter-spacing: -.045em;
}

.v1-home .airbus-opportunity-home-copy p {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: .98rem;
  line-height: 1.75;
}

.v1-home .airbus-opportunity-home-meta {
  padding-top: .15rem;
  border-top: 1px solid rgba(255,255,255,.42);
}

.v1-home .airbus-opportunity-home-meta span,
.v1-home .airbus-opportunity-home-meta strong,
.v1-home .airbus-opportunity-home-meta a {
  display: block;
}

.v1-home .airbus-opportunity-home-meta span {
  margin-top: 1rem;
  color: rgba(255,255,255,.56);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.v1-home .airbus-opportunity-home-meta strong {
  margin-top: .3rem;
  color: #fff;
  font-size: 1.1rem;
}

.v1-home .airbus-opportunity-home-meta a {
  width: fit-content;
  margin-top: 2.4rem;
  padding-bottom: .18rem;
  border-bottom: 1px solid currentColor;
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
}

.v1-home .airbus-opportunity-home-meta a:hover,
.v1-home .airbus-opportunity-home-meta a:focus-visible {
  color: #ff6471;
}

@media (max-width: 860px) {
  .v1-home .airbus-opportunity-home-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .v1-home .airbus-opportunity-home-meta {
    max-width: 360px;
  }
}
