/* Scope the presentation to the homepage; preserve the artwork's colors. */
#page-home .hero-banner--main {
  display: flex;
  flex-direction: column;
  height: auto;
}

#page-home .hero-banner-image-container {
  position: relative;
  order: 1;
  height: auto;
}

#page-home .hero-banner-image-wrapper.has-bg-img {
  background: transparent;
}

#page-home .hero-banner-image {
  display: block;
  height: auto;
  mix-blend-mode: normal;
}

#page-home .hero-banner-content-container.has-quick-links {
  height: auto;
  padding-top: 7rem;
  padding-bottom: 2rem;
}

#page-home .hero-banner-content-container .fluid-grid {
  height: auto;
}

#page-home .hero-banner-content {
  min-width: 0;
}

#page-home .hero-banner-comp {
  display: none;
}

#page-home .hero-banner-title {
  line-height: 1.16;
  text-wrap: balance;
}

#page-home .quick-link-list--large {
  position: relative;
  order: 2;
}

#page-home .hero-banner-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: none;
}

#page-home .hero-banner-subtitle {
  color: #d6dfed;
  font-weight: 400;
  line-height: 1.5;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .7);
}

@media (min-width: 992px) {
  #page-home .hero-banner--main {
    --home-art-height: max(36rem, min(56.25vw, calc(100svh - 8rem)));
    display: block;
  }

  #page-home .hero-banner-image-container {
    position: absolute;
    height: var(--home-art-height);
  }

  #page-home .hero-banner-image {
    width: auto;
    max-width: 100%;
    height: 100%;
    margin-left: auto;
    object-fit: contain;
    object-position: right center;
    mask-image: linear-gradient(90deg, transparent, #000 8%);
  }

  #page-home .hero-banner-content-container.has-quick-links {
    height: var(--home-art-height);
    align-items: flex-start;
    padding-top: clamp(8rem, 14svh, 11rem);
  }

  #page-home .hero-banner-content {
    max-width: min(52vw, 52rem);
  }

  #page-home .hero-banner-image-wrapper::after {
    display: block;
    background: linear-gradient(90deg, rgba(5, 14, 27, .18), transparent 55%);
  }

  #page-home .hero-banner-title {
    font-size: clamp(2.5rem, 3.7vw, 4.6rem);
    text-shadow: 0 2px 8px rgba(0, 0, 0, .35);
  }
}

@media (max-width: 991px) {
  #page-home .hero-banner-content-container {
    padding-left: 0;
    padding-right: 0;
  }

  #page-home .hero-banner-title {
    margin-left: 0;
  }
}
