/* 베이스 */
.yu-wrap{width:100%;margin:28px auto;color:#111;font-size:14px;line-height:20px}
.yu-wrap *{box-sizing:border-box}
.yu-wrap a{text-decoration:none;color:inherit}

/* 검색바 */
.yu-searchbar{display:flex;justify-content:flex-end;margin:0 0 14px}
.yu-searchbar input{height:36px;min-width:280px;padding:0 12px;border:1px solid #e5e7eb;border-radius:10px;font-size:14px;line-height:20px}

.yu-list .thead,.yu-list .row{display:grid;grid-template-columns:minmax(0,1fr) 160px 120px 120px;align-items:center;padding:0 16px;column-gap:0}
.yu-list .thead{height:46px;background:#f7f8fa;color:#4b5563;font-weight:700;line-height:22px;border-radius:12px;font-size:14px}
.yu-list .thead .c-subs,.yu-list .thead .c-videos{justify-content:flex-end;text-align:right;display:flex}

/* 리스트 */
.yu-list .tbody{display:flex;flex-direction:column;gap:2px;margin-top:8px}
.yu-list .row{min-height:64px;background:#ffffff;border:none;border-radius:12px;padding:10px 16px}
.yu-list .row:nth-child(odd){background:#fafafa}
.yu-list .row:hover{background:#fdfdfd}

.cell{display:flex;align-items:center}
.cell.name{gap:12px;min-width:0}
.cell.cat{justify-content:flex-start}
.cell.subs,.cell.videos{justify-content:flex-end;text-align:right;font-variant-numeric:tabular-nums}

.avatar{width:40px;height:40px;border-radius:50%;overflow:hidden;background:#eef2f7;flex:0 0 40px}
.avatar img{width:40px;height:40px;object-fit:cover;display:block}
.title{display:flex;flex-direction:column;gap:2px;min-width:0}
.title b{font-weight:800;font-size:15px;line-height:22px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.title em{font-style:normal;color:#6b7280;font-size:12px;line-height:18px}

.badge{display:inline-flex;align-items:center;justify-content:center;height:24px;padding:0 10px;border-radius:9999px;background:#dc2626;border:1px solid #b91c1c;color:#ffffff;font-weight:700;font-size:12px;line-height:20px;letter-spacing:-0.2px;white-space:nowrap}

.row.empty{justify-content:center;text-align:center;color:#6b7280;font-size:14px;line-height:20px}

@media (max-width:1000px){
.yu-list .thead{display:none}
.yu-list .row{grid-template-columns:1fr auto;grid-template-areas:"name cat";gap:10px;padding:12px 14px}
.cell.name{grid-area:name}
.cell.cat{grid-area:cat;justify-content:flex-end}
.cell.subs,.cell.videos{display:none}
.avatar{width:42px;height:42px}
.avatar img{width:42px;height:42px}
.title b{font-size:16px;line-height:22px}
.yu-searchbar{justify-content:stretch}
.yu-searchbar input{min-width:0;width:100%}
}