#category-filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 30px;
}
.cat-filter-btn {
	padding: 6px 14px;
	background: none;
	border: none;
	cursor: pointer;
	color: #777;
	font-weight: 500;
}
.cat-filter-btn.active {
	color: black;
	border-bottom: 2px solid #111;
}

button.cat-filter-btn {
    background-color: transparent !important;
    color: #c0b9b9 !important;
    margin: 0 !important;
}

.cfp-wrapper {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
	max-width: 1300px;
	margin: auto;
}
.cfp-content {
	width: 66%;
	max-width: 880px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}
.cfp-sidebar {
	width: 340px;
}
@media (max-width: 1024px) {
	.cfp-content {
		grid-template-columns: 1fr;
	}
	.cfp-sidebar {
		width: 100%;
	}
}

/* Sidebar widgets */
.widget {
	margin-bottom: 40px;
}
.widget h4 {
	margin-bottom: 10px;
	font-size: 18px;
}
.widget ul {
	list-style: none;
	padding-left: 0;
}
.widget ul li {
	margin-bottom: 8px;
}
.widget ul li a {
	color: #0073aa;
	text-decoration: none;
}
.widget ul li a:hover {
	text-decoration: underline;
}

/* Post item styling */
.post-item {
    background: #fff;
    border-radius: 5px;
    margin-bottom: 40px;
    overflow: hidden;
}
.post-thumbnail img {
	width: 100%;
    height: 280px !important;
}
.post-meta-top {
    font-size: 12px;
    text-transform: uppercase;
    color: #999;
    padding: 15px 0px 0;
}

.post-title a {
    text-decoration: none !important;
    font-size: 20px;
    line-height: 0.1;
}
.post-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
}	
.post-readmore {
    padding: 0 0 10px 0px;
}
input.search-submit {
    display: none;
}
.read-more {
	color: #0073aa;
	font-size: 14px;
	text-decoration: underline;
}
.post-share {
    padding: 10px 0;
    font-size: 13px;
    color: #666;
}
.post-share a {
	text-decoration: none;
	color: #444;
}

.post-share a:hover {
	text-decoration: underline;
}