/* =====================================================
   developer_footer.css — Standalone developer footer
   Scoped under .dev-footer to prevent hub bleed
   ===================================================== */

/* Fix dev-footer itself to be full width, no extra space */
.dev-footer {
    width: 100%;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--dev-border2);
}

.dev-footer .footer-bottom {
    padding: 24px 0;
    background: transparent;
    width: 100%;
}

.dev-footer .footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.dev-footer .footer-bottom-content p {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #a0aab4;
}

.dev-footer .footer-legal {
    display: flex;
    align-items: center;
    gap: 24px;
}

.dev-footer .footer-legal a {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #a0aab4;
    text-decoration: none;
    transition: color 0.2s;
}

.dev-footer .footer-legal a:hover {
    color: var(--dev-green);
}

/* Remove any default body margin at bottom */
body {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .dev-footer .footer-bottom {
        padding: 20px 0;
    }

    .dev-footer .footer-bottom-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 0 20px;
    }

    .dev-footer .footer-legal {
        gap: 16px;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .dev-footer .footer-legal {
        gap: 12px;
    }

    .dev-footer .footer-legal a,
    .dev-footer .footer-bottom-content p {
        font-size: 11px;
    }
}