/* skin/css/list.css */

.filter-bar {
    display: flex; gap: 12px;
    padding: 15px; overflow-x: auto;
}
.f-btn {
    border: 1px solid #000;
    padding: 5px 15px;
    font-size: 12px; font-weight: bold;
    background: #fff;
    white-space: nowrap;
    flex-shrink: 0;
}
.f-btn.active {
    background: #000; color: var(--primary-color);
}

.list-item {
    display: flex; align-items: center;
    padding: 12px;
}
.list-item img {
    width: 60px; height: 60px;
    border: 1px solid #000; margin-right: 15px;
}
.li-content { flex: 1; }
.li-content h4 { font-size: 16px; font-weight: 900; margin-bottom: 4px; }
.li-meta { font-size: 12px; background: #ddd; display: inline-block; padding: 2px 5px; margin-bottom: 5px; }
.li-desc { font-size: 12px; color: #666; }

.pager-tech {
    display: flex; justify-content: center; align-items: center; gap: 20px;
    margin: 30px 0; font-family: monospace;
}
.pager-tech a { text-decoration: underline; font-weight: bold; }