/*
 * Shared centered neural hero treatment.
 * Mirrors the AI Leadership Training hero without changing page copy or CTAs.
 */

.training-hero--leadership {
  isolation: isolate;
  min-height: 720px;
  border-bottom: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(54, 103, 211, 0.2), transparent 36%),
    radial-gradient(circle at 15% 85%, rgba(83, 139, 243, 0.1), transparent 30%),
    linear-gradient(118deg, #040b27 0%, #07194e 54%, #09245f 100%);
}

.training-hero--leadership::before {
  inset: 0;
  z-index: 0;
  width: auto;
  max-width: none;
  height: auto;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 52%, transparent 0 28%, rgba(5, 17, 59, 0.16) 68%, rgba(3, 10, 35, 0.42) 100%);
  filter: none;
  opacity: 1;
}

.training-hero--leadership::after {
  display: none;
}

.training-hero--leadership .leadership-hero__neural {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.82;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, #000 0%, rgba(0, 0, 0, 0.88) 56%, transparent 100%);
}

.training-hero--leadership .training-hero__content {
  z-index: 1;
  align-items: center;
  min-height: 720px;
  width: min(920px, calc(100% - 80px));
  padding: 100px 0 108px;
  text-align: center;
}

.training-hero--leadership .training-hero__content::before,
.training-hero--leadership .training-hero__content::after {
  display: none;
}

.training-hero--leadership .training-hero__content > * {
  width: 100%;
}

.training-hero--leadership .training-hero__content > .training-eyebrow {
  align-self: center;
  width: max-content;
  padding: 9px 12px;
  border-color: rgba(184, 216, 255, 0.22);
  background: rgba(184, 216, 255, 0.07);
  color: rgba(230, 241, 255, 0.9);
  font-size: 0.7rem;
  font-weight: 600;
}

.training-hero--leadership h1 {
  max-width: 17ch;
  margin: 30px auto 26px;
  font-size: clamp(3.5rem, 5.35vw, 5.25rem);
  font-weight: 400;
  line-height: 1.01;
  letter-spacing: -0.058em;
}

.training-hero--leadership p {
  max-width: 690px;
  margin-inline: auto;
  color: rgba(239, 246, 255, 0.82);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.14rem);
  line-height: 1.72;
}

.training-hero--leadership .training-actions {
  justify-content: center;
  margin-top: 36px;
}

@media (max-width: 820px) {
  .training-hero--leadership {
    min-height: 0;
  }

  .training-hero--leadership .training-hero__content {
    min-height: 0;
    width: calc(100% - 40px);
    padding: 78px 0 84px;
  }

  .training-hero--leadership h1 {
    max-width: 12ch;
    font-size: clamp(2.7rem, 11vw, 4.1rem);
  }

  .training-hero--leadership .leadership-hero__neural {
    opacity: 0.62;
  }
}
