/**
 * 火桥（huoqiao）· 多功能沉浸式 WordPress 主题
 * 联系方式：12492501@qq.com
 * 支持正版，从我做起，你的支持是我们前行的动力！
 *
 * @package   huoqiao
 * @author    三木
 * @copyright Copyright (c) 2026-09-01 huoqiao.cn
 * @license   GPL-2.0-or-later
 * @link      https://huoqiao.cn
 * @tags      design-tokens, responsive, dark-mode, glassmorphism, animation
 */

.footer-custom .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    margin-top: 0;
    flex-wrap: wrap;
    gap: 12px;
    background: #000000;
}

.footer-custom .footer-bottom p {
    font-size: 13px;
    color: #fff;
    margin: 0;
}

.footer-custom .footer-bottom p a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.footer-custom .footer-bottom p a:hover {
    text-decoration: underline;
    color: #fff;
}

.footer-custom .footer-bottom-links {
    display: flex;
    gap: 18px;
}

.footer-custom .footer-bottom-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-custom .footer-bottom-links a:hover {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-custom .footer-bottom {
        padding: 8px 0;
        border-top: none;
        text-align: center;
        flex-direction: column;
        gap: 4px;
        background: #000000;
    }

    .footer-custom .footer-bottom p {
        font-size: 14px;
        color: #fff;
        margin: 0;
        line-height: 1.4;
    }

    .footer-custom .footer-bottom-links {
        gap: 15px;
        margin-top: 0;
    }

    .footer-custom .footer-bottom-links a {
        font-size: 14px;
        color: rgba(255,255,255,0.8);
    }

    .footer-custom .footer-bottom-links a:hover {
        color: #fff;
    }
}

@media (max-width: 480px) {
    .footer-custom .footer-bottom p {
        font-size: 13px;
    }

    .footer-custom .footer-bottom-links a {
        font-size: 13px;
    }
}
