/* ===== Material 3 风格微调 ===== */

/* 1. 主页文章列表卡片间距：主题默认 gap: 40px 过大，收紧为 20px，更紧凑现代 */
.article-list {
    gap: 20px;
}

/* 2. 侧边栏部件头部：图标与标题在同一行（M3 组件头部 = 前导图标 + 标题） */
.widget-header {
    display: flex !important;
    /* 显式 row，避免被任何 column 布局影响 */
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px;
    margin-bottom: 14px;
}

.widget-header > .widget-icon,
.widget-header > .widget-title {
    flex: 0 0 auto;
    margin: 0;
}

.widget-header .widget-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.8;
    display: block;
}

.widget-header .widget-title {
    margin: 0;
    font-size: 2rem;
    line-height: 1.2;
}
