/* ===============================
   1. 隐藏论坛大标题 (点亮星空闲聊区)
   =============================== */
body.bbpress h1.wp-block-query-title {
    display: none !important;
}

/* ===============================
   2. 论坛整体布局
   =============================== */
body.bbpress #bbpress-forums {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    max-width: 960px;
    margin: 0 auto;
    padding: 10px;
}

/* ===============================
   3. 面包屑导航
   =============================== */
body.bbpress .bbp-breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}
body.bbpress .bbp-breadcrumb a {
    color: #0073aa;
    text-decoration: none;
}
body.bbpress .bbp-breadcrumb a:hover {
    text-decoration: underline;
}

/* ===============================
   4. 论坛/主题列表卡片化
   =============================== */
#bbpress-forums .bbp-body .forum,
#bbpress-forums .bbp-body .topic {
    padding: 16px;
    margin-bottom: 12px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* 主题标题 */
#bbpress-forums .bbp-topic-title a {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
}
#bbpress-forums .bbp-topic-title a:hover {
    color: #0073aa;
}

/* 主题摘要（如果启用了摘要代码/插件） */
.bbp-topic-excerpt {
    font-size: 15px;
    color: #666;
    margin-top: 4px;
}

/* ===============================
   5. 回复区样式
   =============================== */
#bbpress-forums .bbp-reply {
    padding: 16px;
    margin-bottom: 12px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fafafa;
}
#bbpress-forums .bbp-reply-content {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}
#bbpress-forums .bbp-reply-author {
    font-size: 14px;
    color: #555;
}

/* ===============================
   6. 表单样式（发帖/回复）
   =============================== */
#bbpress-forums textarea,
#bbpress-forums input[type="text"] {
    font-size: 15px;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ddd;
    width: 100%;
    box-sizing: border-box;
}
#bbpress-forums input[type="submit"] {
    background: #0073aa;
    color: #fff;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
}
#bbpress-forums input[type="submit"]:hover {
    background: #005f8d;
}

/* ===============================
   7. 移动端优化
   =============================== */
@media (max-width: 768px) {
    body.bbpress #bbpress-forums {
        font-size: 18px;
        line-height: 1.8;
    }
    #bbpress-forums .bbp-topic-title a {
        font-size: 20px;
    }
    #bbpress-forums .bbp-reply-content {
        font-size: 17px;
    }
}
/* 自定义：让底部导航子菜单往上展开 */
.main-navigation ul ul {
    top: auto !important;
    bottom: 100% !important;
}
