/* AD-specific onboarding styles.

   .c-persona-card--unavailable / .c-persona-card__unavailable —
   sales-gated persona-card variant used on /onboarding when a
   Company or Professional persona isn't enabled in the user's
   country. Card stays visible but the Get-started button is
   `disabled` and an inline notice explains why. */

.c-persona-card--unavailable {
    opacity: 0.72;
}
.c-persona-card--unavailable:hover {
    /* Cancel the normal hover lift so the card doesn't beckon a
       click it won't honour. */
    transform: none;
    box-shadow: none;
}
.c-persona-card__unavailable {
    /* Global reset zeroes <p> margins (OnPoint.Razor's app-reset.css),
       so the gap above and below has to be explicit — without this
       the notice sits flush against the desc above and the button
       row below. */
    margin: var(--space-3) 0 var(--space-4);
    padding: var(--space-2) var(--space-3);
    background: var(--color-surface-muted, rgba(15, 23, 42, 0.05));
    border-left: 3px solid var(--color-warning, #b45309);
    border-radius: var(--radius-sm, 0.25rem);
    font-size: var(--fs-ui-sm);
    color: var(--color-ink-soft, #475569);
}
