.na-box {
    border-radius: 18px;
    background: #f9fafb;

    border: 1px solid rgba(29, 78, 216, 0.12);

    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
    padding: 24px 24px 28px;
    text-align: center;
    max-width: 360px;
    margin: 0 auto;

    transition: 
        transform 0.15s ease, 
        box-shadow 0.15s ease,
        border-color 0.15s ease;
}

.na-box:hover {
    transform: none;
    box-shadow: 
        0 12px 28px rgba(15, 23, 42, 0.16),
        /* 0 0 26px rgba(140, 40, 35, 0.45); */           /* red glow*/
        0 0 26px rgba(29, 78, 216, 0.35);               /* blue glow*/
}

.na-box--lift:hover {
    transform: translateY(-4px);
}

.na-box-title {
    font-weight: 700;
    margin-bottom: 10px;
}

.na-box-text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

a:focus-visible .na-box,
button:focus-visible .na-box {
    outline: 2px solid rgba(29, 78, 216, 0.6);
    outline-offset: 3px;
}