.nexa-footer {
    flex: 0 0 auto;
    min-height: 48px;
    background: var(--nexa-surface);
    border-top: 1px solid var(--nexa-border);
}

.nexa-footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--nexa-space-4);
    width: 100%;
    max-width: var(--nexa-content-max-width);
    min-height: 48px;
    margin: 0 auto;
    padding: 0 var(--nexa-space-6);
    color: var(--nexa-text-muted);
    font-size: var(--nexa-font-xs);
}

@media (max-width: 600px) {
    .nexa-footer-container {
        justify-content: center;
        padding: var(--nexa-space-2) var(--nexa-space-4);
        text-align: center;
    }

    .nexa-footer-container span:last-child {
        display: none;
    }
}
