.npe-nclex-app {
    max-width: 1180px;
    margin: 30px auto;
    padding: 24px;
    font-family: Inter, Segoe UI, Arial, sans-serif;
    color: #0c2340;
}

.npe-nclex-hero {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    background: linear-gradient(135deg, #175a85, #1b7fc4);
    color: #fff;
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 18px 45px rgba(16, 36, 61, 0.16);
}

.npe-nclex-kicker {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12px;
    opacity: .9;
    margin-bottom: 10px;
}

.npe-nclex-hero h1 {
    margin: 0;
    font-size: 42px;
    font-weight: 900;
}

.npe-nclex-hero p {
    margin: 10px 0 0;
    max-width: 620px;
    font-size: 17px;
    line-height: 1.6;
    opacity: .95;
}

.npe-nclex-badge {
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .28);
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 800;
    white-space: nowrap;
}

.npe-nclex-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 22px;
}

.npe-nclex-card {
    background: #fff;
    border: 1px solid #dce7f1;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 10px 28px rgba(16, 36, 61, .06);
}

.npe-card-label {
    display: block;
    color: #5f7287;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 10px;
}

.npe-nclex-card strong {
    display: block;
    color: #123d6b;
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 8px;
}

.npe-nclex-card p {
    margin: 0;
    color: #5f7287;
    line-height: 1.55;
}

.npe-nclex-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.npe-nclex-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border-radius: 14px;
    border: 1px solid #bfd0df;
    background: #fff;
    color: #27435c;
    font-weight: 800;
    text-decoration: none;
}

.npe-nclex-btn.npe-primary {
    background: #1b7fc4;
    border-color: #1b7fc4;
    color: #fff;
}

@media (max-width: 800px) {
    .npe-nclex-hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .npe-nclex-grid {
        grid-template-columns: 1fr;
    }

    .npe-nclex-hero h1 {
        font-size: 34px;
    }
}