/* Dulat Baba mausoleum replaces the former oversized letter in the home hero. */
.hero::after {
  content: "";
  right: 0;
  top: 36px;
  width: 58%;
  height: 570px;
  background:
    linear-gradient(90deg, var(--ink) 0, transparent 38%),
    linear-gradient(0deg, var(--ink) 0, transparent 28%),
    url("/static/img/dulat-baba-mausoleum.jpg") 58% center / cover no-repeat;
  opacity: .58;
  filter: saturate(.72) contrast(1.04);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 23%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 23%, #000 100%);
}

@media (max-width: 760px) {
  .hero::after {
    top: 36px;
    right: -15px;
    width: 88%;
    height: 430px;
    opacity: .32;
    background-position: 62% center;
  }
}
