/*
 * catalog/static/catalog/css/registered_office.css
 * Hover effects externalised from templates/catalog/services/registered_office.html
 * (CSP migration — onmouseover/onmouseout replaced with :hover classes).
 */

/* "How to Subscribe" feature cards. The resting box-shadow was declared inline
   (specificity trap) — moved here so the :hover rule can override it. */
.ro-feature-card {
    transform: translateY(0);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.ro-feature-card--purple:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(49, 27, 146, 0.12);
}
.ro-feature-card--gold:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 179, 0, 0.12);
}
