.elementor-widget-cb-page-hero > .elementor-widget-container {
  padding: 0;
  margin: 0;
}

[data-cb-page-hero].page-hero,
.page-hero[data-cb-page-hero] {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  padding: 72px 0;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
}

[data-cb-page-hero] .page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  transform: scale(1.04);
}

[data-cb-page-hero] .page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(10, 41, 91, 0.7);
}

[data-cb-page-hero] .container {
  position: relative;
  z-index: 2;
}

[data-cb-page-hero] .page-hero-content {
  text-align: center;
  animation: cb-page-hero-copy 1s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both;
}

@keyframes cb-page-hero-copy {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

[data-cb-page-hero] h1 {
  color: var(--white);
  font-size: var(--text-5xl);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0;
}

@media (max-width: 1100px) {
  [data-cb-page-hero].page-hero {
    min-height: 280px;
    padding: 56px 0;
  }
}

@media (max-width: 767px) {
  [data-cb-page-hero].page-hero {
    min-height: 240px;
    padding: 48px 0;
  }

  [data-cb-page-hero] h1 {
    font-size: var(--text-4xl);
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-cb-page-hero] .page-hero-content {
    animation: none;
  }
}
