/* ─── Menevo site-wide minimal footer ───────────────────────
   Shared across dashboard, profile, index, pricing, how-it-works.
   Single-line layout with logo left · links center · social right,
   plus a copyright line underneath. */

.site-footer {
    border-top: 1px solid rgba(0, 62, 84, 0.15);
    padding: 18px 24px 12px;
    margin-top: 2rem;
    font-family: var(--font);
    color: #003E54;
    background: transparent;
}

.site-footer__main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.site-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #003E54;
    text-decoration: none;
}

.site-footer__logo img {
    width: 20px;
    height: 20px;
    display: block;
}

.site-footer__links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.site-footer__links a {
    font-size: 11px;
    color: rgba(0, 62, 84, 0.65);
    text-decoration: none;
}

.site-footer__links a:hover {
    color: #003E54;
}

.site-footer__social {
    display: flex;
    gap: 10px;
}

.site-footer__social a {
    color: rgba(0, 62, 84, 0.65);
    display: inline-flex;
}

.site-footer__social a:hover {
    color: #003E54;
}

.site-footer__bottom {
    margin-top: 12px;
    font-size: 10px;
    color: rgba(0, 62, 84, 0.5);
    text-align: left;
}

@media (max-width: 48em) {
    .site-footer {
        padding: 16px 16px 10px;
    }
    .site-footer__main {
        justify-content: center;
        text-align: center;
    }
    .site-footer__links {
        justify-content: center;
    }
    .site-footer__bottom {
        text-align: center;
    }
}

/* Link legali nella riga copyright (Privacy · Terms) */
.site-footer__bottom a {
    color: inherit;
    text-decoration: underline;
}
.site-footer__bottom a:hover {
    color: #003E54;
}
