/* lib/styles/pages/access_restricted_page.css */

.access-restricted-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    background: var(--color-paper-white);
}

.access-restricted-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card-hover);
    max-width: 560px;
    width: 100%;
    padding: var(--space-3xl) var(--space-xl);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.access-restricted-card__logo {
    width: 64px;
    height: 64px;
    margin-bottom: var(--space-sm);
}

.access-restricted-card__eyebrow {
    font-family: var(--font-body);
    font-size: var(--fs-label);
    font-weight: var(--fw-bold);
    color: var(--color-guidance-teal);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.access-restricted-card__title {
    margin: 0;
    color: var(--color-justice-blue);
    font-size: var(--fs-h1);
    line-height: var(--lh-heading-1);
}

.access-restricted-card__subtitle {
    margin: 0;
    color: var(--color-neutral-navy);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    max-width: 46ch;
}

.access-restricted-card .primary-button {
    margin-top: var(--space-md);
    min-width: 220px;
}