/* Фильтры и группы фильтров */
.filters-section {
    background: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}
.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}
.filter-group {
    display: flex;
    flex-direction: column;
}
.filter-group label {
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--text-color);
}
.topics-filter {
    margin-bottom: 20px;
}
.topics-checkboxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}
.topics-checkboxes label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: normal;
    color: var(--text-color);
} 