/* ============================================================
   NFA FOOTER — footer.css
   Matches Figma: dark navy blue bg, centered links, copyright
   ============================================================ */

.nfa-footer {
    background: #0f2d6b;
    padding: 28px 30px;
}

.nfa-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.nfa-footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.nfa-footer__links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-family: var(--nfa-font, 'Open Sans', sans-serif);
    padding: 4px 18px;
    position: relative;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}

/* Separator between links */
.nfa-footer__links a+a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
}

.nfa-footer__links a:hover {
    opacity: 0.75;
}

.nfa-footer__copy {
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    font-family: var(--nfa-font, 'Open Sans', sans-serif);
    text-align: center;
}

/* ---------- MOBILE ---------- */
@media (max-width: 600px) {
    .nfa-footer {
        padding: 24px 16px;
    }

    .nfa-footer__links a {
        padding: 6px 12px;
        font-size: 12px;
    }
}