/* skin/css/list.css */

.category-tabs {
    display: flex;
    padding: 15px 0;
    gap: 10px;
    overflow-x: auto;
}
.category-tabs a {
    background: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-sub);
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
    flex-shrink: 0;
}
.category-tabs a.active {
    background: var(--primary-color);
    color: #fff;
    box-shadow: var(--shadow-md);
}

.list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.list-card-lg {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 15px;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.lc-left img {
    width: 68px;
    height: 68px;
    border-radius: 14px;
    margin-right: 15px;
}

.lc-mid { flex: 1; min-width: 0; }
.lc-mid h4 { font-size: 16px; margin-bottom: 4px; color: var(--text-main); font-weight: bold; }
.lc-mid p { font-size: 12px; color: var(--text-sub); margin-bottom: 4px; }
.lc-mid .desc { font-size: 12px; color: #94a3b8; }

.lc-right a {
    display: block;
    padding: 6px 18px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}
.lc-right a:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Pagination */
.tspage {
    text-align: center !important;
    margin: 30px 0 !important;
}
.tspage a {
    background: #fff !important;
    color: var(--text-main) !important;
    box-shadow: var(--shadow-sm) !important;
    padding: 8px 14px !important;
    border-radius: 8px !important;
    margin: 0 4px !important;
    border: none !important;
}
.tspage b, .tspage a:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
    box-shadow: var(--shadow-md) !important;
}