#mission {
  position: relative;
  width: auto;
  height: 100%;
  min-height: 80vh;
}

#missionTitle {
  margin-top: 15%;
}

#mission::after {
  /* content: ""; */
  content: var(--image-credit-mission, "");
  position: absolute;
  top: 5%;
  left: 5%;
  width: auto;
  height: auto;
  font-family: "cdmono-regular";
  font-size: var(--heroPhotoCredit);

  /* background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)); */
}

#missionBackground {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* mix-blend-mode: screen; */
  /* opacity: 0.3; */
  /* pointer-events: none; */
  border-radius: 10px;
  min-height: 80vh;
}

#missionBackground video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: lighten;
  opacity: 0.777;

  border-radius: 10px;
}

#missionBackground::after {
  content: "";
  position: absolute;
  top: 0; /* Changed from bottom to top */
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(transparent, #030b22);
  pointer-events: none;
}

#missionForeground {
  position: relative;
  width: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  min-height: 80vh;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#missionCopy {
  width: 90%;
  max-width: 30em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.missionRight {
  position: relative;
  width: 100%;
  min-width: 50px;
  height: 100%;
  /* min-height: 20em; */
  max-height: 100vh !important;
  /* height: 100% !important; */
  /* min-height: 3em; */
}
