/* ===================================
   Footer Styles
   =================================== */

.site-footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 20px;
    text-align: center;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-content {
    font-size: 14px;
    line-height: 1.6;
}

.footer-copyright {
    margin-bottom: 4px;
}

.footer-powered {
    font-size: 12px;
    margin-top: 4px;
    opacity: 0.8;
}

.footer-link {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--white);
}

@media (max-width: 768px) {
    .site-footer {
        padding: 16px;
    }

    .footer-content {
        font-size: 13px;
    }

    .footer-powered {
        font-size: 11px;
    }
}