/* PAGE HERO */
.page-hero {
  padding: 80px 24px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -260px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: var(--brand-gradient);
  filter: blur(160px);
  opacity: 0.12;
  z-index: -1;
  border-radius: 50%;
}
.page-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 12px;
}
.page-hero-lede {
  font-size: 1rem;
  color: var(--muted);
}

/* PAGE CONTENT */
.page-content {
  padding: 16px 24px 96px;
}
.page-content-inner {
  max-width: 820px;
  margin: 0 auto;
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.7;
}
.page-content-inner .last-updated {
  color: var(--muted);
  margin-bottom: 32px;
  font-size: 0.95rem;
}
.page-content-inner h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-top: 44px;
  margin-bottom: 14px;
  color: var(--ink);
}
.page-content-inner h2:first-child { margin-top: 0; }
.page-content-inner h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 26px;
  margin-bottom: 10px;
  color: var(--ink);
}
.page-content-inner p {
  color: var(--ink-2);
  margin-bottom: 14px;
}
.page-content-inner ul {
  margin: 0 0 16px 22px;
}
.page-content-inner li {
  margin-bottom: 8px;
  color: var(--ink-2);
}
.page-content-inner a {
  color: var(--c-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}
.page-content-inner a:hover { color: #1f15c4; }
.page-content-inner strong { color: var(--ink); font-weight: 600; }

/* HIGHLIGHT BOX (used on child-safety, can appear elsewhere) */
.highlight-box {
  background: var(--soft);
  border-left: 4px solid var(--c-blue);
  padding: 18px 22px;
  border-radius: 0 12px 12px 0;
  margin: 24px 0;
}
.highlight-box p:last-child { margin-bottom: 0; }
