/* Shared hero banner for CMS inner pages — no stock fallback (prevents flash before uploaded image). */

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--navy-dark, #0f2744);
}

.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.04);
  animation: aboutHeroZoom 18s ease-in-out infinite alternate;
}

.about-hero-overlay,
.about-hero-glow {
  z-index: 1;
}

.about-hero-content {
  z-index: 2;
  position: relative;
}
