.blog-container {
	max-width: 1400px;
	margin: 0 auto;
	/* padding: 60px 40px; */
	/* background: #ffffff; */
}

.blog-title {
	font-size: 56px;
	font-weight: 900;
	color: #333333;
	text-transform: uppercase;
	letter-spacing: 4px;
	text-align: center;
	margin: 0 0 60px 0;
	background: linear-gradient(135deg, #2661c5 0%, #0F9181 50%, #ffc107 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.featured-article {
	position: relative;
	width: 100%;
	height: 600px;
	border-radius: 24px;
	overflow: hidden;
	margin-bottom: 60px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: pointer;
}

.featured-article:hover {
	transform: translateY(-5px);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.featured-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.featured-article:hover .featured-image {
	transform: scale(1.05);
}

.featured-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
	padding: 50px 40px 40px;
	color: #ffffff;
	z-index: 2;
}

.featured-category {
	display: inline-block;
	background: linear-gradient(135deg, #2661c5 0%, #0F9181 100%);
	color: #ffffff;
	padding: 8px 20px;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 20px;
}

.featured-title {
	font-size: 42px;
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 20px 0;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.featured-meta {
	display: flex;
	gap: 30px;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 500;
}

.articles-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.article-card {
	position: relative;
	width: 100%;
	height: 350px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	cursor: pointer;
	background: #ffffff;
}

.article-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 50px rgba(38, 97, 197, 0.2);
}

.article-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

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

.article-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
	padding: 30px 25px 25px;
	color: #ffffff;
	z-index: 2;
}

.article-category {
	display: inline-block;
	background: linear-gradient(135deg, #ff9800 0%, #ffb74d 100%);
	color: #ffffff;
	padding: 6px 16px;
	border-radius: 6px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 12px;
}

.article-title {
	font-size: 20px;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 15px 0;
	line-height: 1.3;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.article-meta {
	display: flex;
	gap: 20px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.85);
	font-weight: 500;
}

@media (max-width: 1200px) {
	/* .blog-container {
		padding: 50px 30px;
	} */
	
	.articles-grid {
		gap: 25px;
	}
	
	.article-card {
		height: 320px;
	}
}

@media (max-width: 968px) {
	/* .blog-container {
		padding: 40px 20px;
	} */
	
	.blog-title {
		font-size: 42px;
		margin-bottom: 40px;
	}
	
	.featured-article {
		height: 500px;
		margin-bottom: 40px;
	}
	
	.featured-overlay {
		padding: 40px 30px 30px;
	}
	
	.featured-title {
		font-size: 32px;
	}
	
	.articles-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
	
	.article-card {
		height: 300px;
	}
	
	.article-title {
		font-size: 18px;
	}
}

@media (max-width: 640px) {
	/* .blog-container {
		padding: 30px 15px;
	} */
	
	.blog-title {
		font-size: 32px;
		letter-spacing: 2px;
		margin-bottom: 30px;
	}
	
	.featured-article {
		height: 400px;
		margin-bottom: 30px;
		border-radius: 16px;
	}
	
	.featured-overlay {
		padding: 30px 20px 20px;
	}
	
	.featured-category {
		font-size: 10px;
		padding: 6px 16px;
		margin-bottom: 15px;
	}
	
	.featured-title {
		font-size: 24px;
		margin-bottom: 15px;
	}
	
	.featured-meta {
		font-size: 14px;
		gap: 20px;
	}
	
	.articles-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.article-card {
		height: 280px;
	}
	
	.article-overlay {
		padding: 25px 20px 20px;
	}
	
	.article-category {
		font-size: 10px;
		padding: 5px 12px;
		margin-bottom: 10px;
	}
	
	.article-title {
		font-size: 16px;
		margin-bottom: 12px;
	}
	
	.article-meta {
		font-size: 12px;
		gap: 15px;
	}
}
