/* ============================================================
   3-components / section-header.css
   区块标题栏：图标 + 标题
   来源：website-complete / styles.css L373–379
   ============================================================ */

.section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.section-icon { width: 20px; height: 20px; color: var(--text-tertiary); }
.section-title { font-size: 14px; font-weight: 500; color: var(--text-primary); }

@media (max-width: 768px) {
    .section-header { margin-bottom: 16px; }
    .section-title { font-size: 18px; }
}
