
  /* Remove any theme background/border/shadow on the spacer itself */
  #heroAfterSpacer{
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    position: relative;
    isolation: isolate; /* keep pseudo-layers self-contained */
  }
  /* Ensure the mirror layers cover 100% and don't blend oddly */
  #heroAfterSpacer::before,
  #heroAfterSpacer::after{
    content:"";
    position:absolute; inset:0;
    background-color: transparent !important;
    mix-blend-mode: normal;
    box-shadow: none !important;
  }

