.filter-card {
    padding: 24px;
    margin-bottom: 20px;
}

.filter-row {
    display: flex;
    margin-bottom: 16px;
}

.filter-row:last-child {
    margin-bottom: 0;
}

.filter-label {
    width: 60px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 28px;
    flex-shrink: 0;
}

.filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-item {
    font-size: 14px;
    color: var(--text-main);
    padding: 4px 16px;
    border-radius: 14px;
    line-height: 20px;
}

.filter-item:hover {
    color: var(--primary);
}

.filter-item.active {
    background: var(--primary);
    color: #fff;
}

.news-list {
    display: flex;
    flex-direction: column;
}

.news-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px dashed var(--border);
}

.news-item:last-child {
    border-bottom: none;
}

.news-cover {
    width: 200px;
    aspect-ratio: 16 / 9;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}

.news-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
}

.news-meta {
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    gap: 16px;
}

.news-meta span {
    display: flex;
    align-items: center;
}

.news-tag {
    color: var(--primary);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    list-style: none;
    padding: 0;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border-radius: 4px;
    border: 1px solid var(--border);
    color: var(--text-main);
    font-size: 14px;
    background: #fff;
}

.pagination a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.pagination .disabled span {
    opacity: 0.5;
    background: #f5f5f5;
}

@media (max-width: 768px) {
    .news-item {
        flex-direction: column;
        gap: 12px;
    }

    .news-cover {
        width: 100%;
        height: auto;
    }
}
