.blog-post-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

.blog-post-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Image Container */
.blog-post-image-container {
	position: relative;
	overflow: hidden;
	height: 240px;
}

.blog-post-image {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: transform 0.5s ease;
}

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

.blog-post-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to top, rgba(2, 49, 111, 0.8) 0%, transparent 50%);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.blog-post-card:hover .blog-post-overlay {
	opacity: 1;
}

.read-more-btn {
	background: white;
	color: #02316f;
	padding: 10px 24px;
	border-radius: 25px;
	font-weight: 600;
	font-size: 0.9rem;
	transform: translateY(20px);
	transition: transform 0.3s ease;
}

.blog-post-card:hover .read-more-btn {
	transform: translateY(0);
}

/* Content Styles */
.blog-post-content {
	padding: 1.5rem;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.blog-post-date {
	color: #6c757d;
	font-size: 0.85rem;
	margin-bottom: 0.75rem;
	font-weight: 500;
}

.blog-post-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 1rem;
	line-height: 1.4;
}

.blog-post-title a {
	color: #212529;
	text-decoration: none;
	transition: color 0.3s ease;
}

.blog-post-title a:hover {
	color: #02316f;
}

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

.blog-post-link {
	color: #02316f;
	font-weight: 600;
	font-size: 0.9rem;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	margin-top: auto;
}

.blog-post-link:hover {
	color: #0b5ed7;
	gap: 8px;
}

/* Pagination Styles */
.blog-pagination {
	margin-top: 3rem;
}

.blog-pagination .page-link {
	color: #02316f;
	border: 1px solid #dee2e6;
	padding: 0.5rem 1rem;
	margin: 0 0.25rem;
	border-radius: 8px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.blog-pagination .page-link:hover {
	background-color: #02316f;
	border-color: #02316f;
	color: white;
}

.blog-pagination .page-item.active .page-link {
	background-color: #02316f;
	border-color: #02316f;
	color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
	.blog-post-image-container {
		height: 200px;
	}
	
	.blog-post-title {
		font-size: 1.1rem;
	}
}