/*
 * OpsMed — Privacy Policy Page Styles
 * WCAG 2.2 AA Compliant
 */

/* Hero */
.page-hero { background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 100%); color: var(--white); padding: var(--space-4xl) 0 var(--space-3xl); text-align: center; }
.page-hero--compact { padding: var(--space-3xl) 0 var(--space-2xl); }
.page-hero h1 { font-family: 'Inter', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: var(--space-md); }
.page-hero__subtitle { font-size: 1.05rem; color: var(--blue-100); }

/* Shared */
.section { padding: var(--space-4xl) 0; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 var(--space-lg); }

/* Legal Content */
.legal-content { background: var(--white); }
.legal-container { max-width: 780px; margin: 0 auto; }
.legal-container h2 { font-family: 'Inter', sans-serif; font-size: 1.35rem; font-weight: 700; color: var(--slate-900); margin: var(--space-2xl) 0 var(--space-md); }
.legal-container h2:first-child { margin-top: 0; }
.legal-container h3 { font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--slate-800); margin: var(--space-lg) 0 var(--space-sm); }
.legal-container p { color: var(--slate-700); line-height: 1.8; margin-bottom: var(--space-md); font-size: 1rem; }
.legal-container em { font-style: italic; }
.legal-container a { color: var(--blue-600); text-decoration: underline; text-underline-offset: 2px; }
.legal-container a:hover { color: var(--blue-800); }

/* Focus */
a:focus-visible { outline: 3px solid var(--blue-400); outline-offset: 2px; }

/* Responsive */
@media (max-width: 600px) {
  .page-hero--compact { padding: var(--space-2xl) 0 var(--space-xl); }
  .section { padding: var(--space-3xl) 0; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }
