.cpf-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 30px;
	justify-content: center;
}
.cpf-filter-btn {
	padding: 8px 16px;
	border: 1px solid #ddd;
	background: #f9f9f9;
	cursor: pointer;
	border-radius: 20px;
	transition: all 0.3s ease;
}
.cpf-filter-btn:hover, .cpf-filter-btn.active {
	background: #333;
	color: #fff;
	border-color: #333;
}
.cpf-posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 20px;
}
.cpf-post-card {
	border: 1px solid #eaeaea;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
}
.cpf-post-thumb img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
}
.cpf-post-content {
	padding: 15px;
}
.cpf-post-title {
	margin: 0 0 10px;
	font-size: 1.2rem;
}
.cpf-post-title a {
	text-decoration: none;
	color: #333;
}
.cpf-post-excerpt {
	font-size: 0.9rem;
	color: #666;
}
