/* ─────────────────────────────────────────
   FOOTER INNER LAYOUT
   Copyright left, links right
───────────────────────────────────────── */
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: 0.85rem;
    color: #6c757d;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a,
.footer-copy a {
    color: #0d6efd;
    text-decoration: none;
}

.footer-links a:hover,
.footer-copy a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }
}