/* Blog Page Styles */
.blog-page {
	padding: 2rem 0;
}

.blog-page-header {
	text-align: center;
	margin-bottom: 3rem;
	padding: 2rem 0;
}

.blog-page-title {
	font-size: 2.5rem;
	font-weight: 800;
	color: #1e1e2d;
	margin: 0 0 1rem 0;
	line-height: 1.2;
}

.blog-page-subtitle {
	font-size: 1.2rem;
	color: #6b7280;
	margin: 0;
	line-height: 1.6;
}

.blog-posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.blog-post-card {
	margin: 0;
}

.blog-card {
	background: #fff;
	border-radius: 18px;
	border: 1px solid #e5e7eb;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
}

.blog-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(37, 99, 235, 0.15);
}

.blog-card-thumbnail {
	width: 100%;
	height: 220px;
	overflow: hidden;
	background: #f3f4f6;
	position: relative;
}

.blog-card-thumbnail a {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

.blog-card-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image {
	transform: scale(1.08);
}

.blog-card-content {
	padding: 1.75rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.blog-card-meta {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
	font-size: 0.9rem;
	color: #6b7280;
	flex-wrap: wrap;
}

.blog-card-meta .dashicons {
	font-size: 16px;
	width: 16px;
	height: 16px;
	color: #667eea;
}

.blog-card-date,
.blog-card-category {
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.blog-card-category a {
	color: #667eea;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.blog-card-category a:hover {
	color: #4f46e5;
	text-decoration: underline;
}

.blog-card-title {
	margin: 0 0 1rem 0;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.4;
}

.blog-card-title a {
	color: #1e1e2d;
	text-decoration: none;
	transition: color 0.3s ease;
}

.blog-card-title a:hover {
	color: #667eea;
}

.blog-card-excerpt {
	color: #6b7280;
	line-height: 1.7;
	margin-bottom: 1.5rem;
	flex: 1;
}

.blog-card-read-more {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #667eea;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	margin-top: auto;
}

.blog-card-read-more:hover {
	color: #4f46e5;
	gap: 0.75rem;
}

.blog-card-read-more .dashicons {
	font-size: 16px;
	width: 16px;
	height: 16px;
}

.no-posts-message {
	text-align: center;
	padding: 4rem 2rem;
	background: #f9fafb;
	border-radius: 16px;
	border: 1px solid #e5e7eb;
}

.no-posts-message p {
	font-size: 1.1rem;
	color: #6b7280;
	margin: 0;
}

/* Responsive Blog Page */
@media (max-width: 768px) {
	.blog-page-title {
		font-size: 2rem;
	}
	
	.blog-page-subtitle {
		font-size: 1rem;
	}
	
	.blog-posts-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.blog-card-thumbnail {
		height: 180px;
	}
	
	.blog-card-content {
		padding: 1.5rem;
	}
}

