.policies-page { color: var(--text); background: var(--background); }
.policies-hero { color: var(--white); background: var(--navy-deep); }
.policies-hero__inner { max-width: 78rem; padding-top: clamp(5rem, 10vw, 9rem); padding-bottom: clamp(5rem, 10vw, 9rem); }
.policies-hero h1 { max-width: 12ch; margin: var(--space-3) 0 var(--space-5); color: var(--white); font-size: clamp(3.25rem, 8vw, 7.5rem); line-height: .96; letter-spacing: -.06em; overflow-wrap: anywhere; }
.policies-hero p { max-width: 48rem; margin: 0; color: #dce8f5; font-size: clamp(1.05rem, 1.8vw, 1.35rem); line-height: 1.65; }
.policy-library { padding: clamp(4.5rem, 8vw, 8rem) 0; }
.policy-library__heading { display: grid; max-width: 54rem; gap: var(--space-3); margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.policy-library__heading h2 { max-width: 18ch; margin: 0; color: var(--navy); font-size: clamp(2.25rem, 5vw, 4.5rem); line-height: 1.02; letter-spacing: -.045em; overflow-wrap: anywhere; }
.policy-library__heading p { max-width: 42rem; margin: 0; color: var(--muted); font-size: var(--text-lg); }
.policy-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.25rem, 2.5vw, 2rem); }
.policy-document { display: flex; min-width: 0; min-height: 28rem; flex-direction: column; padding: clamp(1.5rem, 3vw, 2.5rem); border: 1px solid var(--border); border-top: 4px solid var(--cyan); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 .8rem 2.4rem rgba(24, 54, 95, .07); transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.policy-document:hover { border-color: rgba(34, 167, 223, .65); transform: translateY(-.25rem); box-shadow: 0 1.2rem 3rem rgba(24, 54, 95, .11); }
.policy-document__top { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--space-4); margin-bottom: var(--space-5); }
.policy-document__category { color: var(--blue); font-size: var(--text-xs); font-weight: 800; letter-spacing: .12em; line-height: 1.4; text-transform: uppercase; overflow-wrap: anywhere; }
.policy-document__icon { width: 2.15rem; flex: 0 0 2.15rem; fill: none; stroke: var(--cyan); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.policy-document h3 { margin: 0 0 var(--space-4); color: var(--navy-deep); font-size: clamp(1.45rem, 2.3vw, 2rem); line-height: 1.2; letter-spacing: -.025em; overflow-wrap: anywhere; hyphens: auto; }
.policy-document p { margin: 0 0 var(--space-6); color: var(--muted); font-size: 1rem; line-height: 1.75; }
.policy-document > a { display: inline-flex; width: fit-content; min-height: 3rem; align-items: center; gap: .65rem; margin-top: auto; padding: .65rem 1rem; border: 2px solid var(--blue); border-radius: 999px; color: var(--blue); font-weight: 800; line-height: 1.2; text-decoration: none; transition: color 160ms ease, background-color 160ms ease, transform 160ms ease; }
.policy-document > a span { transition: transform 160ms ease; }
.policy-document > a:hover { color: var(--white); background: var(--blue); }
.policy-document > a:hover span { transform: translate(.12rem, -.1rem); }
.policy-document > a:focus-visible { outline: 3px solid rgba(34, 167, 223, .42); outline-offset: 4px; }
@media (max-width: 760px) {
  .policies-hero__inner { padding-top: 4.5rem; padding-bottom: 4.5rem; }
  .policies-hero h1 { font-size: clamp(3rem, 15vw, 5.5rem); }
  .policy-grid { grid-template-columns: minmax(0, 1fr); }
  .policy-document { min-height: 0; }
  .policy-document > a { width: 100%; justify-content: center; text-align: center; }
}
@media (max-width: 420px) {
  .policy-document { padding: 1.35rem; }
  .policy-document__top { gap: var(--space-3); }
  .policy-document h3 { font-size: 1.4rem; }
}
@media (prefers-reduced-motion: reduce) {
  .policy-document, .policy-document > a, .policy-document > a span { transition: none; }
  .policy-document:hover, .policy-document > a:hover span { transform: none; }
}
