/* ============================================================
   PAGE: security — uses the shared .appx-* design system
   (defined in mani-globals-ltr.css). No custom cards, no custom
   colors: hero, grid, cards, spacing and CTA all inherit.
   Accent = brand green. Only addition: a hover affordance for the
   document cards, which are links rather than plain cards.
   ============================================================ */
.pg-security { --app-accent: var(--green); }

.pg-security .sec-doc {
    transition: border-color .18s ease, transform .18s ease;
}

.pg-security .sec-doc:hover {
    border-color: color-mix(in srgb, var(--green) 40%, var(--mist));
    transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
    .pg-security .sec-doc { transition: none; }
    .pg-security .sec-doc:hover { transform: none; }
}
