.blog-header-img {
	width: 100%;
	height: 450px;
	object-fit: cover;
	margin-bottom: 30px;
}

.blog-meta {
	font-size: 14px;
	color: #888;
	margin-bottom: 10px;
}

.blog-single h1 {
	font-size: 32px;
	font-weight: bold;
	color: var(--primary-blue);
	margin-bottom: 15px;
}

.blog-content img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 20px 0;
	border-radius: 8px;
}

.blog-content p {
	line-height: 1.8;
	margin-bottom: 20px;
	color: #333;
}

.related-articles h4 {
	margin-top: 40px;
	color: var(--primary-blue);
}

.related-articles .related-post {
	display: flex;
	gap: 15px;
	margin-top: 15px;
}

.related-post img {
	width: 100px;
	height: 80px;
	object-fit: cover;
	border-radius: 6px;
}

.related-post a {
	color: #333;
	text-decoration: none;
}

.related-post a:hover {
	color: var(--primary-blue);
}
.related-articles .card:hover {
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
	transform: translateY(-2px);
	transition: all 0.3s ease;
}

.related-articles .card-title a:hover {
	color: var(--dark-pink);
}
