/*
 * Block: Hero 404
 */

section.hero-404 {
  min-height: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-404__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: var(--section-space-xxl);
  overflow: hidden;
}

/* Large background display text */
.hero-404__display {
  font-family: 'DrukCond', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(20rem, 30vw, 50rem);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 2px var(--border-color-light, rgba(0, 0, 0, 0.08));
  user-select: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 0;
}

/* Content overlay */
.hero-404__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-m);
  max-width: 600px;
}

.hero-404__heading {
  font-size: var(--h1);
  margin: 0;
}

.hero-404__message {
  font-size: var(--text-m);
  color: var(--base-semi-dark);
  margin: 0;
  max-width: 480px;
}

/* Dark background variant */
.hero-404.bg--dark .hero-404__display {
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.06);
}
