/* Root Variables */
:root {
	--cs-04cf01c4-primary: #1e8736;
	--cs-04cf01c4-text-main: #111827;
	--cs-04cf01c4-text-muted: #6b7280;
	--cs-04cf01c4-bg: #ffffff;
	--cs-04cf01c4-border: #e5e7eb;
}

.cs-04cf01c4-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 90px 20px;
	background: var(--cs-04cf01c4-bg);
	font-family: inherit;
}

/* Header */
.cs-04cf01c4-header {
	text-align: center;
	margin-bottom: 40px;
}
.cs-04cf01c4-label {
	color: var(--cs-04cf01c4-primary);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 12px;
}
.cs-04cf01c4-title {
	color: var(--cs-04cf01c4-text-main);
	font-size: 36px;
	font-weight: 800;
	margin: 0 0 16px;
	line-height: 1.2;
}
.cs-04cf01c4-divider {
	width: 40px;
	height: 3px;
	background-color: var(--cs-04cf01c4-primary);
	margin: 0 auto;
	border-radius: 2px;
}

/* Filters */
.cs-04cf01c4-filters-wrap {
	display: flex;
	justify-content: center;
	margin-bottom: 50px;
}
.cs-04cf01c4-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	background: #f9fafb;
	padding: 8px;
	border-radius: 50px;
	border: 1px solid var(--cs-04cf01c4-border);
}
.cs-04cf01c4-filter-btn {
	background: transparent;
	border: 1px solid transparent;
	color: var(--cs-04cf01c4-text-main);
	padding: 10px 24px;
	border-radius: 40px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}
.cs-04cf01c4-filter-btn:hover {
	background: rgba(30, 135, 54, 0.05);
}
.cs-04cf01c4-filter-btn.active {
	background: var(--cs-04cf01c4-primary);
	color: #fff;
	box-shadow: 0 4px 10px rgba(30, 135, 54, 0.2);
}

/* Grid & Cards */
.cs-04cf01c4-grid {
	display: flex;
	flex-direction: column;
	gap: 32px;
}
.cs-04cf01c4-card {
	display: flex;
	background: #fff;
	border: 1px solid var(--cs-04cf01c4-border);
	border-radius: 18px;
	padding: 30px;
	gap: 40px;
	transition: all 0.4s ease;
	box-shadow: 0 4px 15px rgba(0,0,0,0.02);
	opacity: 1;
	transform: translateY(0);
}
.cs-04cf01c4-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.cs-04cf01c4-card.hide {
	display: none;
}

/* Card Left */
.cs-04cf01c4-card-left {
	flex: 0 0 300px;
	position: relative;
	border-radius: 12px;
	overflow: hidden;
}
.cs-04cf01c4-image {
	width: 100%;
	height: 100%;
	min-height: 250px;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.cs-04cf01c4-card:hover .cs-04cf01c4-image {
	transform: scale(1.03);
}
.cs-04cf01c4-badge {
	position: absolute;
	top: 15px;
	left: 15px;
	background: var(--cs-04cf01c4-primary);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 6px 12px;
	border-radius: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Card Middle */
.cs-04cf01c4-card-middle {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.cs-04cf01c4-card-title {
	font-size: 24px;
	font-weight: 700;
	color: var(--cs-04cf01c4-text-main);
	margin: 0 0 12px;
}
.cs-04cf01c4-card-desc {
	font-size: 15px;
	color: var(--cs-04cf01c4-text-muted);
	line-height: 1.6;
	margin: 0 0 20px;
}
.cs-04cf01c4-features {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.cs-04cf01c4-features li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: var(--cs-04cf01c4-text-main);
	font-weight: 500;
}
.cs-04cf01c4-check {
	width: 18px;
	height: 18px;
	color: var(--cs-04cf01c4-primary);
	flex-shrink: 0;
}

/* Card Right */
.cs-04cf01c4-card-right {
	flex: 0 0 220px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border-left: 1px solid var(--cs-04cf01c4-border);
	padding-left: 40px;
}
.cs-04cf01c4-stats {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.cs-04cf01c4-stat-item {
	display: flex;
	flex-direction: column;
}
.cs-04cf01c4-stat-val {
	font-size: 32px;
	font-weight: 800;
	color: var(--cs-04cf01c4-primary);
	line-height: 1;
	margin-bottom: 6px;
}
.cs-04cf01c4-stat-label {
	font-size: 13px;
	color: var(--cs-04cf01c4-text-muted);
	line-height: 1.4;
}
.cs-04cf01c4-btn-wrap {
	margin-top: 20px;
}
.cs-04cf01c4-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: var(--cs-04cf01c4-primary);
	text-decoration: none;
	transition: all 0.3s ease;
}
.cs-04cf01c4-arrow {
	transition: transform 0.3s ease;
}
.cs-04cf01c4-btn:hover .cs-04cf01c4-arrow {
	transform: translateX(5px);
}

/* Pagination */
.cs-04cf01c4-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 50px;
}
.cs-04cf01c4-page-btn {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid var(--cs-04cf01c4-border);
	background: #fff;
	color: var(--cs-04cf01c4-text-main);
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}
.cs-04cf01c4-page-btn:hover {
	border-color: var(--cs-04cf01c4-primary);
	color: var(--cs-04cf01c4-primary);
}
.cs-04cf01c4-page-btn.active {
	background: var(--cs-04cf01c4-primary);
	border-color: var(--cs-04cf01c4-primary);
	color: #fff;
}
.cs-04cf01c4-page-prev,
.cs-04cf01c4-page-next {
	width: auto;
	padding: 0 20px;
	border-radius: 30px;
}

/* Responsive */
@media (max-width: 1024px) {
	.cs-04cf01c4-card {
		flex-direction: column;
		gap: 30px;
	}
	.cs-04cf01c4-card-left {
		flex: none;
		width: 100%;
		height: 300px;
	}
	.cs-04cf01c4-card-right {
		border-left: none;
		border-top: 1px solid var(--cs-04cf01c4-border);
		padding-left: 0;
		padding-top: 30px;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
	}
	.cs-04cf01c4-stats {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 30px;
		width: 100%;
		margin-bottom: 20px;
	}
}

@media (max-width: 768px) {
	.cs-04cf01c4-filters {
		border-radius: 12px;
		justify-content: center;
	}
	.cs-04cf01c4-card-left {
		height: 200px;
	}
	.cs-04cf01c4-stats {
		flex-direction: column;
		gap: 20px;
	}
}
