/* Softly blends page hero artwork into the dark background, matching the home page treatment. */
.content-page .page-hero img {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.45) 8%, #000 24%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.45) 8%, #000 24%);
}

.content-page .page-hero img[src*="finger-manager"] {
  width: 45%;
  justify-self: end;
}
@media (max-width: 760px) {
  .content-page .page-hero img {
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 14%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 14%);
  }
  .content-page .page-hero img[src*="finger-manager"] {
    width: 45%;
    justify-self: center;
  }
}
