/* ==========================================================================
   页脚（footer.css）
   --------------------------------------------------------------------------
   - "Powered by Astra" 等品牌信息已通过 functions.php 中的过滤器移除
   - 此处负责页脚视觉：背景、边框、字色、间距
   - 备案号、隐私政策等链接的版权文本，请在
     后台 → 外观 → 自定义 → 页脚 中配置
   ========================================================================== */

.site-footer {
    background: var(--caiees-color-bg-soft);
    border-top: 1px solid var(--caiees-color-border);
    color: var(--caiees-color-text-muted);
    font-family: var(--caiees-font-sans);
    font-size: 0.9rem;
    padding: 2.4em 0;
    line-height: 1.8;
}

.site-footer a {
    color: var(--caiees-color-text-muted);
    text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus {
    color: var(--caiees-color-link);
    text-decoration: underline;
}

/* 备案信息中各分隔斜杠的间距微调 */
.site-footer .ast-footer-copyright,
.site-footer .footer-section {
    text-align: center;
}

/* 页脚分隔栏（如使用多列页脚） */
.site-footer .ast-footer-widget {
    border-right: 1px solid var(--caiees-color-border);
    padding: 0 1.5em;
}

.site-footer .ast-footer-widget:last-child {
    border-right: none;
}

/* 移动端 */
@media (max-width: 768px) {
    .site-footer {
        padding: 1.6em 1em;
        font-size: 0.85rem;
    }

    .site-footer .ast-footer-widget {
        border-right: none;
        border-bottom: 1px solid var(--caiees-color-border);
        padding: 1em 0;
    }

    .site-footer .ast-footer-widget:last-child {
        border-bottom: none;
    }
}
