/* app/static/css/layout/footer.css */

.footer {
    background-color: var(--app-color-text-primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 1.5rem 0;
    margin-top: auto;
    z-index: 999;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--app-spacing-md);
}

.footer-left,
.footer-right {
    display: flex;
    align-items: center;
}

.copyright {
    font-size: var(--app-font-size-sm);
    opacity: 0.7;
}

.credits {
    font-size: var(--app-font-size-sm);
    opacity: 0.7;
}

@media (max-width: 768px) {
    .footer-row {
        flex-direction: column;
        text-align: center;
    }
}