.blog-header {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 140px 0 80px;
	text-align: center;
}

.blog-header h1 {
	font-size: 48px;
	font-weight: 800;
	margin-bottom: 25px;
	color: #2c3e50;
	line-height: 1.2;
}

.blog-meta {
	font-size: 16px;
	color: #6c757d;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 25px;
	flex-wrap: wrap;
}

.blog-meta-center {
	text-align: center;
}

.meta-badge {
	background: #00AA86;
	color: white;
	padding: 8px 20px;
	border-radius: 25px;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 8px;
}

.blog-content {
	max-width: 900px;
	margin: 0 auto;
	padding: 80px 20px;
}

.content-wrapper {
	background: white;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	padding: 60px;
	position: relative;
}

.article-header {
	display: flex;
	align-items: flex-start;
	gap: 40px;
	margin-bottom: 50px;
}

.blog-image {
	flex-shrink: 0;
}

.blog-image img {
	width: 200px;
	height: 200px;
	object-fit: cover;
	border-radius: 15px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.article-intro {
	flex: 1;
}

.article-intro h2 {
	font-size: 24px;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 20px;
	line-height: 1.4;
}

.intro-text {
	font-size: 18px;
	color: #495057;
	line-height: 1.6;
	font-weight: 500;
}

.blog-text {
	color: #495057;
	line-height: 1.8;
	font-size: 16px;
}

.blog-text p {
	margin-bottom: 25px;
}

.award-highlight {
	background: rgba(0, 170, 134, 0.08);
	color: #2c3e50;
	padding: 30px;
	border-radius: 15px;
	border-left: 4px solid #00AA86;
	margin: 40px 0;
	position: relative;
	overflow: hidden;
}

.award-highlight::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 150%;
	height: 150%;
	background: radial-gradient(circle, rgba(0, 170, 134, 0.05) 0%, transparent 60%);
	border-radius: 50%;
}

.award-highlight h3 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 15px;
	position: relative;
	z-index: 2;
	color: #00AA86;
}

.award-highlight p {
	margin-bottom: 0;
	position: relative;
	z-index: 2;
	line-height: 1.6;
	color: #495057;
}

.stats-section {
	background: #f8f9fa;
	padding: 50px;
	margin: 50px 0;
	border-radius: 15px;
	border: 1px solid #e9ecef;
}

.stat-item {
	text-align: center;
	padding: 20px;
}

.stat-number {
	font-size: 42px;
	font-weight: 800;
	color: #00AA86;
	margin-bottom: 8px;
}

.stat-label {
	font-size: 15px;
	color: #6c757d;
	font-weight: 600;
}

.back-to-blogs {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #00AA86;
	color: white;
	padding: 12px 25px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 170, 134, 0.3);
}

.back-to-blogs:hover {
	background: #00C896;
	transform: translateY(-2px);
	color: white;
	text-decoration: none;
	box-shadow: 0 6px 20px rgba(0, 170, 134, 0.4);
}

.blog-hero-container {
	padding-top: 8rem;
	padding-bottom: 3rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

@media (max-width: 768px) {
	.blog-header {
		padding: 120px 0 60px;
	}

	.blog-header h1 {
		font-size: 36px;
	}

	.content-wrapper {
		padding: 40px 30px;
	}

	.article-header {
		flex-direction: column;
		text-align: center;
	}

	.blog-image img {
		width: 150px;
		height: 150px;
	}

	.blog-text {
		font-size: 15px;
	}

	.stats-section {
		padding: 30px 20px;
	}
}
