@charset "UTF-8";
/**
 * 푸터 스타일
 */


.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 32px 0;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--font-sm);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-links .sep {
    margin: 0 10px;
    color: var(--text-muted);
}

.copyright {
    color: var(--text-secondary);
    font-size: var(--font-sm);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social .social-btn {
    width: 40px;
    height: 40px;
}

/* 반응형 */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-left {
        align-items: center;
    }

    .footer-links {
        justify-content: center;
    }
}