/* Blogs Page Styles */
.blogs-section {
	background-color: #f8f9fa;
}

.blog-card {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
}

.blog-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.blog-image,
.blog-image-placeholder {
	width: 100%;
	height: 200px;
	overflow: hidden;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	position: relative;
}

.blog-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.blog-card:hover .blog-img {
	transform: scale(1.1);
}

.blog-image-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
}

.blog-placeholder-content {
	color: #fff;
	font-size: 48px;
	opacity: 0.7;
}

.blog-content {
	padding: 1.5rem;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.blog-meta {
	margin-bottom: 0.75rem;
}

.blog-date {
	font-size: 0.875rem;
	color: #6c757d;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.blog-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #212529;
	line-height: 1.4;
	min-height: 3.5rem;
}

.blog-excerpt {
	color: #6c757d;
	line-height: 1.6;
	margin-bottom: 1rem;
	flex-grow: 1;
}

.blog-read-more {
	color: #667eea;
	text-decoration: none;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: color 0.3s ease;
	margin-top: auto;
}

.blog-read-more:hover {
	color: #764ba2;
}

@media (max-width: 768px) {
	.blog-title {
		font-size: 1.1rem;
		min-height: auto;
	}

	.blog-content {
		padding: 1.25rem;
	}
}








