body[data-page="home"] {
  overflow-x: clip;
}

body[data-page="home"] .hero {
  position: relative;
  isolation: isolate;
}

body[data-page="home"] .hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -76px;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background:
    linear-gradient(to bottom, rgba(8, 11, 8, .48), rgba(10, 13, 9, .56) 72%, #0d100c 100%),
    linear-gradient(90deg, rgba(8, 11, 8, .86), rgba(8, 11, 8, .48) 52%, rgba(8, 11, 8, .68)),
    url("/hero-squad-background.webp") center center / cover no-repeat;
  pointer-events: none;
}

body[data-page="home"] .hero-copy,
body[data-page="home"] .hero-art {
  position: relative;
  z-index: 1;
}

body[data-page="home"] .site-header {
  background: rgba(10, 13, 9, .7);
}

body[data-page="home"] .hero-copy > p {
  color: #c8cabc;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .85);
}

.live-community-stats {
  gap: clamp(22px, 4vw, 50px);
}

.live-community-stats div {
  min-width: 110px;
}

.live-community-stats dt {
  color: var(--blue);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
}

.live-community-stats dd {
  margin-top: 7px;
  color: #d5d7ca;
  font-weight: 700;
  text-shadow: 0 2px 10px #000;
}

.hero-photo-credit {
  position: absolute;
  right: 14px;
  bottom: 10px;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1;
  text-shadow: 0 1px 5px rgba(0, 0, 0, .9);
}

@media (max-width: 580px) {
  body[data-page="home"] .hero::before {
    top: -66px;
    background-position: 58% center;
  }

  .live-community-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .live-community-stats div {
    min-width: 0;
  }

  .live-community-stats dt {
    font-size: 27px;
  }

  .live-community-stats dd {
    font-size: 9px;
  }

  .hero-photo-credit {
    right: 10px;
    bottom: 8px;
    font-size: 9px;
  }
}
