/* skin/css/list.css */

.category-tabs {
    display: flex;
    overflow-x: auto;
    padding: 20px 0;
    gap: 10px;
}

.category-tabs a {
    background: #fff;
    padding: 8px 20px;
    border: var(--border-width) solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 14px;
    color: var(--text-main);
    font-weight: bold;
    box-shadow: var(--shadow-hard);
}
.category-tabs a:active {
    transform: translate(2px, 2px);
    box-shadow: none;
}
.category-tabs a.active {
    background: var(--primary-color);
    color: #fff;
}

.list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.list-card {
    background: #fff;
    border: var(--border-width) solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 15px;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-hard);
}

.lc-left img {
    width: 70px;
    height: 70px;
    margin-right: 15px;
}

.lc-mid { flex: 1; min-width: 0; }
.lc-mid h4 { font-size: 16px; margin-bottom: 5px; font-weight: 900; }
.lc-mid p { font-size: 12px; color: #666; font-weight: 500; margin-bottom: 5px; }
.lc-mid .desc { font-size: 13px; color: #333; }

.lc-right a {
    display: block;
    width: 70px;
    height: 36px;
    line-height: 34px;
    text-align: center;
    background: #fff;
    color: var(--text-main);
    border: var(--border-width) solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: bold;
    box-shadow: 2px 2px 0 #000;
}
.lc-right a:active {
    transform: translate(2px, 2px);
    box-shadow: none;
}

/* Pagination (Brutalist) */
.tspage {
    text-align: center !important;
    margin: 30px 0 !important;
    background: none !important;
    box-shadow: none !important;
}
.tspage a {
    background: #fff !important;
    border: 2px solid #000 !important;
    color: #000 !important;
    font-weight: bold !important;
    border-radius: 4px !important;
    margin: 0 4px !important;
    box-shadow: 3px 3px 0 #000 !important;
}
.tspage a:hover, .tspage b {
    background: var(--primary-color) !important;
    color: #fff !important;
    border-color: #000 !important;
    transform: translate(1px, 1px) !important;
    box-shadow: 2px 2px 0 #000 !important;
}