:root {
	--primary: #0a6712;
	--primary-light: #01c635;
	--secondary: #3d8444;
	--dark: #1e293b;
	--light: #f8fafc;
	--accent: #f43f5e;
	--gray: #94a3b8;
}
/* Blog Section Styling */
.fc-blog {
	padding: 80px 0;
}
/* Blog Post Card */
.fc-blog-content{
	
margin-bottom: 50px;
}
.fc-blog-post {
	background-color: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.fc-blog-post:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
/* Blog Post Image */
.fc-blog-post-image {
	position: relative;
	overflow: hidden;
}
.fc-blog-post-image img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.fc-blog-post:hover .fc-blog-post-image img {
	transform: scale(1.05);
}
/* Blog Post Content */
.fc-blog-post-content {
	padding: 1.5rem;
}
.fc-blog-post-details {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}
/* Blog Post Title */
.fc-blog-post-title {
	margin-bottom: 1rem;
}
.fc-blog-post-title h5 {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 600;
}
.fc-blog-post-title a {
	color: var(--dark);
	text-decoration: none;
	transition: color 0.2s ease;
	position: relative;
	display: inline-block;
}
.fc-blog-post-title a:hover {
	color: var(--primary);
}
.fc-blog-post-title a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -4px;
	left: 0;
	background-color: var(--primary);
	transition: width 0.3s ease;
}
.fc-blog-post-title a:hover::after {
	width: 100%;
}
/* Blog Post Description */
.fc-blog-post-description {
	margin-bottom: 20px;
	flex-grow: 1;
}
.fc-blog-post-description p {
	margin: 0;
	color: var(--gray);
	font-size: 0.95rem;
	line-height: 1.7;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
/* Read More Button */
.fc-blog-post-link {
	margin-top: auto;
}
.fc-btn {
	display: inline-block;
	text-decoration: none;
	font-weight: 500;
	font-size: 0.9rem;
	padding: 0.6rem 1.2rem;
	border-radius: 6px;
	transition: all 0.3s ease;
	text-align: center;
	font-family: "Barlow Semi Condensed", sans-serif;
	letter-spacing: 1px;
}
.fc-btn-link {
	color: white;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
	border: none;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.fc-btn-link::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	color: white;
	background: var(--secondary);
	transition: width 0.3s ease;
	z-index: -1;
}
.fc-btn-link:hover::before {
	width: 100%;
	color: white;
}
.fc-btn-link:hover {
	box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
	color: white;
}
/* Responsive Styles */
@media (max-width: 768px) {
	.fc-blog-post {
		margin-bottom: 1.5rem;
	}
}