/* Site-level overrides loaded after theme styles (see extra_head in theme template) */

/* Elegantly override the masthead gradient stops while preserving other background properties */
.masthead {
  /* Keep existing background-position/repeat/attachment/size from theme */
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.1) 25%,  /* was fade-out($black, 0.7) -> alpha 0.3 */
      rgba(0, 0, 0, 0.7) 75%,  /* was fade-out($black, 0.3) -> alpha 0.7 */
      #000 100%
    ),
    url("../assets/img/bg-masthead.jpg");
}
