/* ─── STATIC CONTENT PAGES (privacy policy, terms, etc.) ─────────────────
   Reuses the :root variables and base body styles from site.css.
   Load order: site.css, then policy.css. ───────────────────────────── */

.policy-page {
  padding: 56px 20px 80px;
}

.policy-container {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 48px 52px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.40),
    0 8px 24px rgba(0, 0, 0, 0.20);
  backdrop-filter: blur(8px);
}

.policy-brand {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
  margin-bottom: 32px;
}

.policy-brand:hover {
  color: #F4A8D4;
}

.policy-container h1 {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 8px;
  color: var(--text);
}

.policy-meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 36px;
}

.policy-container h2 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 36px 0 12px;
}

.policy-container h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(251, 250, 253, 0.90);
  margin: 22px 0 8px;
}

.policy-container p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(251, 250, 253, 0.85);
  margin: 0 0 14px;
}

.policy-container ul {
  margin: 0 0 14px;
  padding-left: 20px;
}

.policy-container li {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(251, 250, 253, 0.85);
  margin-bottom: 6px;
}

.policy-container a {
  color: #F4A8D4;
  text-decoration: underline;
  text-decoration-color: rgba(244, 168, 212, 0.4);
  text-underline-offset: 2px;
}

.policy-container a:hover {
  text-decoration-color: #F4A8D4;
}

.policy-back {
  display: inline-block;
  margin-top: 36px;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
}

.policy-back:hover {
  color: var(--text);
}

@media (max-width: 640px) {
  .policy-container {
    padding: 32px 24px;
    border-radius: 20px;
  }

  .policy-container h1 {
    font-size: 26px;
  }
}
