/* art_type.css — 文章分類頁 */
.art-list { }
.art-list-item {
  display: flex; gap: 14px; padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.art-list-cover { flex-shrink: 0; width: 120px; height: 80px; border-radius: var(--radius); overflow: hidden; background: var(--bg-elevated); }
.art-list-cover img { width: 100%; height: 100%; object-fit: cover; }
.art-list-info { flex: 1; min-width: 0; }
.art-list-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.art-list-title a:hover { color: var(--accent); }
.art-list-desc { font-size: 13px; color: var(--text-2); line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.art-list-meta { font-size: 12px; color: var(--text-3); margin-top: 6px; }
