/* Keep the artwork absent in the upper half, then reveal it fully at the bottom. */
.mn-operating-dashboard .mn-operating-overview::before,
.dark .mn-operating-dashboard .mn-operating-overview::before {
  opacity: 1 !important;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 50%,
    rgb(0 0 0 / 8%) 58%,
    rgb(0 0 0 / 30%) 69%,
    rgb(0 0 0 / 64%) 82%,
    #000 100%
  ) !important;
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 50%,
    rgb(0 0 0 / 8%) 58%,
    rgb(0 0 0 / 30%) 69%,
    rgb(0 0 0 / 64%) 82%,
    #000 100%
  ) !important;
  -webkit-mask-mode: alpha;
  mask-mode: alpha;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
