/* =========================
   MISSION PAGE OVERRIDES
========================= */

/* logo size + header alignment */
body.mission .logo{
  height: 120px;
  width: auto;
  display: block;
}

/* push header content wider / more left-right (optional, fixes “not left enough”) */
body.mission .site-header .container.header-inner{
  max-width: none;
  padding-left: 24px;
  padding-right: 24px;
}

/* =========================
   MISSION HERO IMAGE
========================= */

body.mission .hero--mission{
  position: relative;
  overflow: hidden;
}

/* bind image to the actual hero background div */
body.mission .hero--mission .hero-bg{
background-image: url("/assets/images/cave-darktolight.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* subtle overlay for readability */
body.mission .hero--mission::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.10));
  z-index: 1;
}

/* ensure title sits above overlay */
body.mission .hero--mission .hero-content{
  position: relative;
  z-index: 2;
}
body.mission .hero--mission .hero-title{
  color: var(--warm-white);
}
