/* Access Denied Card — Base */
.access-denied-card {
    max-width: 60%;
    width: 100%;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    font-family: 'Averia Serif Libre', Arial, sans-serif;
    box-sizing: border-box;
}

/* Title (h2) */
.access-denied-title {
    color: #d32f2f;
    margin-bottom: 20px;
    font-size: 1.8em; /* matches original visual weight */
}

/* Login Link (Not Logged In) */
.access-denied-login-link {
    color: #1976d2;
    font-weight: 400;
    font-size: 20px;
    text-decoration: underline;
}

/* Alternative Program Link (Logged In Wrong Type) */
.access-denied-alt-link {
    color: #1976d2;
    font-size: 18px;
    text-decoration: underline;
}

/* Consistent Spacing Wrappers */
.access-denied-login-wrapper,
.access-denied-alt-wrapper,
.access-denied-subscription-wrapper,
.access-denied-contact-wrapper,
.access-denied-home-link {
    margin: 15px auto;
    text-align: center;
}

.access-denied-subscription-wrapper,
.access-denied-contact-wrapper {
    margin: 20px auto;
}

.access-denied-home-link {
    margin-top: 20px;
}

/* Global Home Link (← Home Page) */
.global-link a {
    color: #1976d2;
    text-decoration: none;
    font-size: 16px;
}

.global-link a:hover {
    text-decoration: underline;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .access-denied-card {
        max-width: 100%;
        margin: 15px auto;     /* ~62.5% reduction from 40px */
        padding: 12px;         /* 60% reduction from 30px */
        border-radius: 8px;
    }

    .access-denied-title {
        font-size: 1.5em;
        margin-bottom: 15px;
    }

    .access-denied-login-link {
        font-size: 18px;
    }

    .access-denied-alt-link {
        font-size: 16px;
    }

    /* Reduce wrapper margins on mobile for tighter layout */
    .access-denied-login-wrapper,
    .access-denied-alt-wrapper,
    .access-denied-subscription-wrapper,
    .access-denied-contact-wrapper,
    .access-denied-home-link {
        margin: 10px auto;
    }

    .access-denied-subscription-wrapper,
    .access-denied-contact-wrapper {
        margin: 15px auto;
    }
}