.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 31rem;
  padding: 6.5rem 0 3rem;
  display: flex;
  align-items: center;
  background: #0b0b0b;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.36) 0%, rgba(7, 7, 7, 0.62) 100%),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 26%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 30%);
  z-index: 1;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/selected/about/about-community.jpg") center center / cover no-repeat;
  transform: scale(1.03);
  animation: heroSoftFloat 12s ease-in-out infinite alternate;
}

.page-hero-copy {
  max-width: 36rem;
  padding: 1.5rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.about-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.page-hero-dark .eyebrow,
.page-hero-dark .section-heading,
.page-hero-dark .section-copy {
  color: #ffffff;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.page-hero-metrics {
  display: grid;
  gap: 0.85rem;
  align-self: start;
}

.page-hero-visual {
  overflow: hidden;
  padding: 0;
  min-height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.page-hero-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.page-hero-metrics .stacked-card {
  padding: 1.2rem;
}

.page-hero-metrics strong {
  display: block;
  margin-bottom: 0.3rem;
  color: #ffffff;
}

.page-hero-metrics span {
  color: rgba(255, 255, 255, 0.76);
}

.content-section {
  padding: 4.5rem 0;
}

.content-section-alt {
  background: var(--color-surface);
}

.content-grid {
  display: grid;
  gap: 1.5rem;
}

.content-card {
  padding: 1.75rem;
}

.content-card .section-copy + .section-copy {
  margin-top: 1rem;
}

@media (min-width: 900px) {
  .content-grid,
  .page-hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .about-hero-grid {
    grid-template-columns: 1.08fr 0.92fr;
  }
}
