/* Version 1.1: Hund im Startbereich bündig an den rechten Bildschirmrand setzen. */
@media (min-width: 901px) {
  .hero-visual {
    justify-content: flex-end;
    margin-right: calc(clamp(22px, 7vw, 110px) * -1);
    margin-bottom: -55px;
    height: calc(100% + 55px);
  }

  .hero-visual img {
    width: min(760px, 55vw);
    max-height: 100%;
    object-fit: contain;
    object-position: right bottom;
  }

  .hero-visual .sun {
    right: clamp(22px, 4vw, 65px);
  }

  .hero-visual .quote {
    right: clamp(18px, 3vw, 55px);
  }
}
