/* Frontend list layout */
.ll-list { display: grid; gap: 16px; }
.ll-item { display: grid; grid-template-columns: 96px 1fr; gap: 16px; align-items: start; padding: 12px; border:1px solid #e5e7eb; border-radius: 10px; background:#fff; }
.ll-thumb { width:96px; height:96px; overflow:hidden; border-radius:8px; background:#f3f4f6; display:flex; align-items:center; justify-content:center; }
.ll-thumb img { width:100%; height:100%; object-fit: cover; display:block; }
.ll-thumb--placeholder { width:100%; height:100%; background: repeating-linear-gradient(45deg, #e5e7eb, #e5e7eb 10px, #f3f4f6 10px, #f3f4f6 20px); border-radius:8px; }
.ll-body { min-width: 0; }
.ll-title { margin: 0 0 6px; font-size: 1.1rem; }
.ll-desc { color:#334155; }

/* Meta stacked vertically */
.ll-meta { list-style: none; margin: 8px 0 0; padding: 0; }
.ll-meta li { margin: 4px 0; font-size: .92rem; color:#1f2937; }
.ll-meta__website a { text-decoration: none; }

/* Admin Import UI */
.ll-import-controls { margin-top: 10px; }
.ll-progress-wrap { max-width: 520px; }
.ll-progress-bar { width: 100%; background:#f0f0f1; height: 12px; border-radius:6px; overflow:hidden; border:1px solid #dcdcde; }
.ll-progress { display:block; height:100%; width:0%; background:#2271b1; transition: width .2s ease; }
.ll-badge { padding:2px 6px; border-radius:4px; font-size:11px; }
.ll-success { background:#e6f4ea; color:#1e7e34; }
.ll-warning { background:#fff4e5; color:#7a4d00; }
.ll-error { background:#fde8e8; color:#a71d2a; }
