/* ==========================================================================
   Layout Styles - 页面布局样式 (v2.0 - 支持主题切换)
   ========================================================================== */

/* --- 头部导航与筛选器 --- */
.app-header {
    text-align: center;
    padding: 2rem 1rem;
    /* 【修改】使用变量替换硬编码的颜色和阴影 */
    background-color: var(--bg-secondary-color);
    box-shadow: var(--shadow); /* 使用在base.css中定义的标准阴影 */
    /* 添加过渡效果，使切换更平滑 */
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.app-header h1 {
    font-size: 1.8rem;
    /* 【修改】使用变量 */
    color: var(--text-highlight);
    margin-bottom: 0.5rem;

    /* Flexbox 布局，用于对齐 Logo 和标题 */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
}

.header-logo {
    width: 32px;
    height: 32px;
}

.subtitle {
    display: block;
    font-size: 0.9rem;
    color: var(--text-sub);
    font-weight: normal;
    margin-top: 0.2rem;
}

/* --- 口号区域样式 --- */
.app-slogan {
    margin: 1.5rem auto;
    max-width: 600px;
    font-size: 0.95rem;
    color: var(--text-sub);
    line-height: 1.6;
    position: relative;
    padding: 0 1rem;
}

.app-slogan p {
    margin-bottom: 0.3rem;
}

.app-slogan strong {
    color: var(--text-main);
    font-weight: 700;
}

.app-slogan .highlight {
    /* 【修改】使用变量 */
    color: var(--text-main);
    font-weight: 600;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 1px;
}

.filter-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}


/* --- 卡片网格布局 --- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- 懒加载触发器布局 --- */
.load-more-trigger {
    grid-column: 1 / -1;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    min-height: 80px;
}
.load-more-trigger.is-visible {
    display: flex;
}

/* --- 页脚样式 --- */
.app-footer {
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 2rem;
    /* 【修改】使用变量 */
    border-top: 1px solid var(--border-color);
    color: var(--text-sub);
    font-size: 0.85rem;
    transition: border-color 0.3s ease;
}
.app-footer p { margin: 0.3rem 0; }