/* Shared page title overlay on hero photos — sits just above scroll arrow */
.hero-page-title {
  position: absolute;
  top: auto;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: max-content;
  max-width: calc(100vw - 4rem);
  margin: 0;
  padding: 0;
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  pointer-events: auto;
  cursor: pointer;
}

.hero-page-title--stacked {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1em;
  bottom: 7rem;
}

.hero-page-title__line {
  display: block;
}

.hero-page-title__line--full {
  display: block;
}

.hero-page-title__split-mobile {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.1em;
}

@media (max-width: 768px) {
  .hero-page-title {
    bottom: 5.5rem;
    max-width: calc(100vw - 2rem);
  }

  .hero-page-title--stacked {
    bottom: 7.5rem;
  }

  .hero-page-title__line--full {
    display: none;
  }

  .hero-page-title__split-mobile {
    display: flex;
  }
}

@media (max-width: 480px) {
  .hero-page-title {
    bottom: 5.25rem;
  }

  .hero-page-title--stacked {
    bottom: 7.5rem;
  }
}
