/**
 * ICHA AIRBUS HERO — HOME HERO STYLE v1
 *
 * Visual target: the established ICHA homepage hero.
 * Scope: Airbus campaign page hero only.
 */

.airbus-home-style-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: clamp(500px, 42vw, 620px);
  padding: clamp(64px, 7vw, 96px) 0;

  background-image:
    linear-gradient(
      90deg,
      rgba(8, 8, 10, 0.78) 0%,
      rgba(8, 8, 10, 0.70) 30%,
      rgba(8, 8, 10, 0.52) 50%,
      rgba(8, 8, 10, 0.18) 72%,
      rgba(8, 8, 10, 0.05) 100%
    ),
    url('images/campaigns/airbus/airbus-event-background.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.airbus-home-style-hero__inner {
  width: 100%;
}

.airbus-home-style-hero__copy {
  max-width: 900px;
}

.airbus-home-style-hero .eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.84) !important;
}

.airbus-home-style-hero h1 {
  max-width: 850px;
  margin: 0;
  color: #fff !important;
  font-size: clamp(3.25rem, 5.4vw, 6rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.airbus-home-style-hero__lead {
  max-width: 760px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  line-height: 1.55;
}

.airbus-home-style-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 38px;
  margin-top: 28px;
  color: #fff;
}

.airbus-home-style-hero__meta > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 170px;
}

.airbus-home-style-hero__meta-label {
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.airbus-home-style-hero__meta strong {
  color: #fff !important;
  font-size: 0.98rem;
  line-height: 1.3;
}

.airbus-home-style-hero__conversions {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: 0.78rem;
  line-height: 1.45;
}

.airbus-home-style-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  margin-top: 32px;
}

.airbus-home-style-hero__primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 30px;
  border-radius: 0 !important;
  background: var(--ifrc-red) !important;
  border: 1px solid var(--ifrc-red) !important;
  color: #fff !important;
  font-weight: 800;
  text-decoration: none;
}

.airbus-home-style-hero__primary:hover,
.airbus-home-style-hero__primary:focus-visible {
  background: var(--ifrc-dark-red) !important;
  border-color: var(--ifrc-dark-red) !important;
  color: #fff !important;
}

.airbus-home-style-hero__secondary {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #fff !important;
  border-bottom: 1px solid rgba(255,255,255,0.75);
  font-weight: 800;
  text-decoration: none;
}

.airbus-home-style-hero__secondary:hover,
.airbus-home-style-hero__secondary:focus-visible {
  color: #fff !important;
  border-bottom-color: #fff;
}

@media (max-width: 960px) {
  .airbus-home-style-hero {
    min-height: 500px;
    padding: 64px 0;
    background-position: 58% center;
  }

  .airbus-home-style-hero__copy {
    max-width: 720px;
  }
}

@media (max-width: 640px) {
  .airbus-home-style-hero {
    min-height: 0;
    padding: 56px 0;
    background-position: 62% center;
  }

  .airbus-home-style-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .airbus-home-style-hero__meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .airbus-home-style-hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
}
