.hero  {
  position: relative;
  height: 550px;
  border-top: 1px solid rgb(255, 255, 255);
  border-bottom: 1px solid rgb(193, 193, 193);
}

.hero picture  {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-image  {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 50%;
}

.verse  {
  position: absolute;
  margin: 0px;
  color: rgb(255, 255, 255);
  text-align: right;
  text-shadow: rgb(0, 0, 0) 1px 1px 5px;
  font-family: Kalam, cursive;
  font-weight: 400;
}

.verse-desktop  {
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  line-height: 33px;
  padding-top: 10px;
}

.verse cite  {
  display: block;
  font-size: 12px;
  font-style: normal;
}

.verse-mobile  {
  display: none;
}

@media (max-width: 989px)  {
  .hero  {
    height: auto;
    border: 0px;
  }

  .hero picture  {
    height: auto;
  }

  .hero-image  {
    width: 100%;
    height: auto;
    object-fit: contain;
    aspect-ratio: var(--mobile-hero-ratio,1.76366843);
  }

  .verse-desktop  {
    display: none;
  }

  .verse-mobile  {
    display: flex;
    flex-direction: column;
    justify-content: center;
    top: 6%;
    bottom: 6%;
    right: 4%;
    width: 58%;
    font-size: clamp(10px, 3.3vw, 30px);
    line-height: 1.35;
    text-shadow: rgb(0, 0, 0) 0px 1px 3px, rgba(0, 0, 0, 0.733) 0px 0px 8px;
  }

  .verse-mobile p  {
    margin: 0px;
  }

  .verse-mobile cite  {
    font-size: 0.78em;
    line-height: 1.4;
    margin-top: 0.4em;
  }

}

@media print  {
  .hero  {
    height: 350px;
    break-inside: avoid;
  }

}
