/** Blog Section */
.blog-section {
	text-align: center;
	background: #C6C6C64D;
	padding: 60px 20px;
}

.blog-section h2 {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 40px;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	max-width: 1350px;
	margin: 0 auto 40px;
}

.blog-card {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	text-align: left;
	padding-bottom: 20px;
	transition: box-shadow 0.3s ease;
}
.blog-card:hover {
	box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.blog-thumb {
	width: 100%;
	height: 180px;
	background: #ccc;
}

.blog-card h3 {
	font-size: 16px;
	font-weight: 600;
	margin: 20px;
}

.blog-card p {
	font-size: 14px;
	color: #555;
	margin: 0 20px 20px;
}

.blog-card a {
	font-size: 14px;
	color: #222;
	font-weight: 500;
	margin-left: 20px;
	text-decoration: none;
}