.hero {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.hero-image {
  max-width: 60%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

body.page-hero {
  overflow: hidden;
}

body.page-hero .page {
  height: 100vh;
  overflow: hidden;
}

body.page-hero main {
  padding: 16px;
  max-width: 100vw;
  height: 100%;
}

body.page-hero .back-to-top {
  display: none;
}

.hero-caption {
  margin: 0;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

.hero-meta {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 700px) {
  .hero-image {
    max-width: 100%;
  }
}
