/* ═══════════════════════════════════════════════════════════
   NOVALYX WEB — Legal Pages (Privacy Policy, Terms of Service)
   Used by: privacy-policy.html, terms.html
   ═══════════════════════════════════════════════════════════ */

/* ── POLICY CONTENT SECTIONS ── */
.policy-section {
  border-left: 2px solid rgba(255, 107, 26, 0.3);
  padding-left: 1.5rem;
  margin-bottom: 2.5rem;
}
.policy-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--cool-white);
  margin-bottom: 0.75rem;
}
.policy-section h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--cool-white);
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}
.policy-section p {
  font-family: 'Inter', sans-serif;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}
.policy-section ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0.75rem;
}
.policy-section ul li {
  font-family: 'Inter', sans-serif;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
  padding-left: 1.25rem;
  position: relative;
}
.policy-section ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.75rem;
  top: 0.15em;
}
.policy-section a {
  color: var(--orange-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}
.policy-section a:hover { color: #FFB347; }

/* ── TABLE OF CONTENTS SIDEBAR ── */
.toc-link {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 107, 26, 0.08);
  transition: color 0.3s ease, padding-left 0.3s ease;
}
.toc-link:hover { color: var(--orange-light); padding-left: 0.5rem; }
.toc-link:last-child { border-bottom: none; }

/* ── LAST UPDATED BADGE ── */
.last-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 26, 0.1);
  border: 1px solid rgba(255, 107, 26, 0.2);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  color: var(--orange-light);
}
