/* ── Subpage Hero ──────────────────────────────── */
.page-hero {
  position: relative;
  height: 491px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

/* Dark overlay */
.page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero__heading {
  font-family: "Urbanist", sans-serif !important;
  font-size: 72px !important;
  font-weight: 700 !important;
  color: var(--color-white) !important;
  line-height: 1.1;
  margin: 0;
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 1024px) {
  .page-hero {
    height: 380px;
  }
  .page-hero__heading {
    font-size: 56px !important;
  }
}

@media (max-width: 768px) {
  .page-hero {
    height: 260px;
  }
  .page-hero__heading {
    font-size: 36px !important;
  }
}

@media (max-width: 480px) {
  .page-hero {
    height: 220px;
  }
  .page-hero__heading {
    font-size: 28px !important;
  }
}
