.blog-page {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 15px 60px;
}

.blog-hero {
	padding: 40px 0 20px;
	text-align: center;
}

.blog-hero h1 {
	color: #1e1d24;
	font-size: 2.4rem;
	font-weight: 800;
	margin-bottom: 12px;
}

.blog-hero p {
	color: #555;
	font-size: 1.05rem;
	line-height: 1.7;
	margin: 0 auto;
	max-width: 720px;
}

.blog-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin: 28px 0 36px;
}

.blog-filter-btn {
	background: #fff;
	border: 2px solid #ddd;
	border-radius: 999px;
	color: #1e1d24;
	display: inline-block;
	font-size: 0.9rem;
	font-weight: 600;
	padding: 8px 18px;
	text-decoration: none;
	transition: all 0.2s ease;
}

.blog-filter-btn:hover,
.blog-filter-btn.is-active {
	background: #93ce20;
	border-color: #93ce20;
	color: #1e1d24;
}

.blog-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.blog-card {
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.blog-card:hover {
	border-color: #93ce20;
	box-shadow: 0 8px 24px rgba(147, 206, 32, 0.2);
	transform: translateY(-2px);
}

.blog-card-image {
	background: #1e1d24;
	height: 180px;
	object-fit: cover;
	width: 100%;
}

.blog-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 22px;
}

.blog-card-meta {
	color: #777;
	font-size: 0.82rem;
	margin-bottom: 10px;
}

.blog-card-category {
	color: #93ce20;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.blog-card h2 {
	color: #1e1d24;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.35;
	margin: 0 0 10px;
}

.blog-card p {
	color: #555;
	flex: 1;
	font-size: 0.94rem;
	line-height: 1.6;
	margin: 0;
}

.blog-single .entry-content {
	color: #333;
	font-size: 1rem;
	line-height: 1.75;
}

.blog-single .entry-content p {
	margin-bottom: 1.2em;
}

.blog-single .entry-meta-top {
	color: #777;
	font-size: 0.9rem;
	margin-bottom: 18px;
}

.blog-single .entry-meta-top .cat-links a {
	color: #93ce20;
	font-weight: 700;
	text-decoration: none;
}

@media (max-width: 767px) {
	.blog-hero h1 {
		font-size: 1.9rem;
	}

	.blog-grid {
		grid-template-columns: 1fr;
	}
}
