	/* Reset & Base */
	* {
		margin: 0;
		padding: 0;
		box-sizing: border-box;
	}

	.blog-container {
		font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
		color: #1a1a1a;
		line-height: 1.6;
		position: relative;
		z-index: 1;
	}

	/* Hero Section - Enhanced with Marketing */
	.blog-hero {
		padding: 100px 0 50px;
		text-align: center;
		margin-top: 0;
		padding-top: calc(var(--header-height-desktop, 80px) + 30px);
		position: relative;
		background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 400"%3E%3Cdefs%3E%3ClinearGradient id="grad1" x1="0%25" y1="0%25" x2="100%25" y2="100%25"%3E%3Cstop offset="0%25" style="stop-color:%232D7A3E;stop-opacity:0.95" /%3E%3Cstop offset="100%25" style="stop-color:%2322543d;stop-opacity:0.9" /%3E%3C/linearGradient%3E%3Cpattern id="pattern" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"%3E%3Ccircle cx="50" cy="50" r="1" fill="white" opacity="0.1"/%3E%3Ccircle cx="0" cy="0" r="1" fill="white" opacity="0.1"/%3E%3Ccircle cx="100" cy="100" r="1" fill="white" opacity="0.1"/%3E%3C/pattern%3E%3C/defs%3E%3Crect fill="url(%23grad1)" width="1920" height="400"/%3E%3Crect fill="url(%23pattern)" width="1920" height="400" opacity="0.3"/%3E%3Cpath d="M0,200 Q480,250 960,200 T1920,200 L1920,400 L0,400 Z" fill="white" opacity="0.1"/%3E%3C/svg%3E');
		background-size: cover;
		background-position: center top;
		background-repeat: no-repeat;
		overflow: hidden;
	}

	.blog-hero::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background:
			radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
			radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
		pointer-events: none;
	}

	.blog-hero::after {
		content: "";
		position: absolute;
		bottom: -2px;
		left: 0;
		right: 0;
		height: 50px;
		background: white;
		clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
	}

	.blog-hero h1 {
		font-size: clamp(2.5rem, 5vw, 4rem);
		font-weight: 800;
		letter-spacing: -0.02em;
		color: white;
		margin-bottom: 1rem;
		opacity: 0;
		animation: fadeInUp 0.8s ease forwards;
		position: relative;
		z-index: 1;
		text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
	}

	.blog-hero-subtitle {
		font-size: 1.25rem;
		color: rgba(255, 255, 255, 0.95);
		max-width: 700px;
		margin: 0 auto 2rem;
		opacity: 0;
		animation: fadeInUp 0.8s ease 0.2s forwards;
		position: relative;
		z-index: 1;
		line-height: 1.8;
		text-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
	}

	/* Hero Stats Bar */
	.hero-stats {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 2rem;
		flex-wrap: wrap;
		margin-top: 2rem;
		position: relative;
		z-index: 1;
		opacity: 0;
		animation: fadeInUp 0.8s ease 0.4s forwards;
	}

	.hero-stat-item {
		display: flex;
		align-items: center;
		gap: 0.5rem;
		color: white;
		font-size: 0.95rem;
		font-weight: 600;
		text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
	}

	.hero-stat-item strong {
		font-size: 1.1rem;
		color: #fbbf24;
	}

	/* Popular Posts Highlight Section */
	.popular-posts-section {
		background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
		padding: 3rem 0;
		border-top: 3px solid #2D7A3E;
		border-bottom: 3px solid #2D7A3E;
		margin-bottom: 3rem;
	}

	.popular-posts-header {
		text-align: center;
		margin-bottom: 2.5rem;
	}

	.popular-posts-header h2 {
		font-size: 2rem;
		font-weight: 800;
		color: #1a1a1a;
		margin-bottom: 0.5rem;
	}

	.popular-posts-header p {
		color: #4b5563;
		font-size: 1rem;
	}

	.popular-posts-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 2rem;
		max-width: 1200px;
		margin: 0 auto;
	}

	.popular-post-card {
		background: white;
		border-radius: 12px;
		overflow: hidden;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
		transition: all 0.4s ease;
		position: relative;
	}

	.popular-post-card:hover {
		transform: translateY(-8px);
		box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
	}

	.popular-badge {
		position: absolute;
		top: 1rem;
		left: 1rem;
		background: #fbbf24;
		color: #1e5a3e;
		padding: 0.5rem 1rem;
		border-radius: 20px;
		font-size: 0.75rem;
		font-weight: 700;
		z-index: 2;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	}

	/* Layout Flex - Sidebar + Main Content */
	.blog-layout {
		display: flex;
		gap: 2rem;
		padding: 2rem 0;
	}

	/* Sidebar Verticale Gauche - Enhanced */
	.blog-sidebar {
		width: 300px;
		flex-shrink: 0;
		position: sticky;
		top: 100px;
		height: fit-content;
		background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
		padding: 2rem;
		border-radius: 16px;
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
		border: 1px solid rgba(45, 122, 62, 0.1);
	}

	.blog-sidebar h3 {
		font-size: 1.375rem;
		font-weight: 800;
		color: #1a1a1a;
		margin-bottom: 1.75rem;
		padding-bottom: 1rem;
		border-bottom: 3px solid #2D7A3E;
		display: flex;
		align-items: center;
		gap: 0.5rem;
		letter-spacing: -0.02em;
	}

	.blog-sidebar h3::before {
		content: "📂";
		font-size: 1.5rem;
	}

	/* Newsletter Widget in Sidebar */
	.sidebar-newsletter {
		background: linear-gradient(135deg, #2D7A3E 0%, #22543d 100%);
		padding: 1.5rem;
		border-radius: 12px;
		margin-bottom: 2rem;
		color: white;
		box-shadow: 0 4px 16px rgba(45, 122, 62, 0.3);
	}

	.sidebar-newsletter h4 {
		font-size: 1.125rem;
		font-weight: 700;
		margin-bottom: 0.75rem;
		display: flex;
		align-items: center;
		gap: 0.5rem;
	}

	.sidebar-newsletter p {
		font-size: 0.875rem;
		line-height: 1.5;
		margin-bottom: 1rem;
		opacity: 0.95;
	}

	.newsletter-benefits {
		list-style: none;
		padding: 0;
		margin: 1rem 0;
		font-size: 0.8125rem;
	}

	.newsletter-benefits li {
		margin-bottom: 0.5rem;
		padding-left: 1.25rem;
		position: relative;
	}

	.newsletter-benefits li::before {
		content: "✓";
		position: absolute;
		left: 0;
		color: #fbbf24;
		font-weight: 700;
	}

	.newsletter-input-group {
		display: flex;
		flex-direction: column;
		gap: 0.5rem;
	}

	.newsletter-input {
		padding: 0.75rem;
		border: 2px solid rgba(255, 255, 255, 0.3);
		border-radius: 8px;
		font-size: 0.875rem;
		background: rgba(255, 255, 255, 0.1);
		color: white;
		transition: all 0.3s ease;
	}

	.newsletter-input::placeholder {
		color: rgba(255, 255, 255, 0.6);
	}

	.newsletter-input:focus {
		outline: none;
		border-color: #fbbf24;
		background: rgba(255, 255, 255, 0.15);
	}

	.newsletter-submit {
		padding: 0.75rem 1.25rem;
		background: #fbbf24;
		color: #1e5a3e;
		border: none;
		border-radius: 8px;
		font-size: 0.875rem;
		font-weight: 700;
		cursor: pointer;
		transition: all 0.3s ease;
		box-shadow: 0 2px 8px rgba(251, 191, 36, 0.4);
	}

	.newsletter-submit:hover {
		background: #f59e0b;
		transform: translateY(-2px);
		box-shadow: 0 4px 12px rgba(251, 191, 36, 0.6);
	}

	.newsletter-privacy {
		font-size: 0.6875rem;
		opacity: 0.8;
		margin-top: 0.5rem;
		line-height: 1.4;
	}

	.sidebar-filters {
		display: flex;
		flex-direction: column;
		gap: 0.625rem;
	}

	.sidebar-filter-link {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 0.875rem;
		padding: 1rem 1.125rem;
		border-radius: 12px;
		font-size: 0.9375rem;
		font-weight: 600;
		text-decoration: none;
		color: #4a5568;
		background: white;
		transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
		border: 2px solid transparent;
		position: relative;
		overflow: hidden;
	}

	.sidebar-filter-link::before {
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		bottom: 0;
		width: 4px;
		background: #2D7A3E;
		transform: scaleY(0);
		transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	}

	.sidebar-filter-link:hover::before {
		transform: scaleY(1);
	}

	.sidebar-filter-link:hover {
		background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
		color: #2D7A3E;
		border-color: #2D7A3E;
		transform: translateX(6px) scale(1.02);
		box-shadow: 0 4px 12px rgba(45, 122, 62, 0.15);
	}

	.sidebar-filter-link.active {
		background: linear-gradient(135deg, #2D7A3E 0%, #22543d 100%);
		color: white;
		border-color: #2D7A3E;
		font-weight: 700;
		transform: translateX(6px);
		box-shadow: 0 6px 16px rgba(45, 122, 62, 0.3);
	}

	.sidebar-filter-link.active::before {
		transform: scaleY(1);
		background: white;
	}

	.sidebar-filter-content {
		display: flex;
		align-items: center;
		gap: 0.875rem;
	}

	.sidebar-filter-icon {
		font-size: 1.5rem;
		transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
		filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
	}

	.sidebar-filter-link:hover .sidebar-filter-icon {
		transform: scale(1.2) rotate(5deg);
	}

	.sidebar-filter-link.active .sidebar-filter-icon {
		transform: scale(1.15);
		filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
	}

	.sidebar-filter-count {
		background: rgba(0, 0, 0, 0.08);
		color: #6b7280;
		font-size: 0.75rem;
		font-weight: 700;
		padding: 0.25rem 0.625rem;
		border-radius: 12px;
		min-width: 32px;
		text-align: center;
		transition: all 0.35s ease;
	}

	.sidebar-filter-link:hover .sidebar-filter-count {
		background: rgba(45, 122, 62, 0.15);
		color: #2D7A3E;
	}

	.sidebar-filter-link.active .sidebar-filter-count {
		background: rgba(255, 255, 255, 0.25);
		color: white;
	}

	/* Main Content Area */
	.blog-main {
		flex: 1;
		min-width: 0;
	}

	/* Bouton Mobile Filtre */
	.mobile-filter-toggle {
		display: none;
		width: 100%;
		padding: 1rem 1.25rem;
		background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
		border: 2px solid #2D7A3E;
		border-radius: 12px;
		font-size: 1rem;
		font-weight: 700;
		color: #2D7A3E;
		cursor: pointer;
		margin-bottom: 1.5rem;
		transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
		align-items: center;
		justify-content: center;
		gap: 0.625rem;
	}

	.mobile-filter-toggle:hover {
		background: linear-gradient(135deg, #2D7A3E 0%, #22543d 100%);
		color: white;
		transform: translateY(-2px);
		box-shadow: 0 4px 12px rgba(45, 122, 62, 0.25);
	}

	.mobile-filter-toggle:active {
		transform: translateY(0);
	}

	.sidebar-info {
		margin-top: 2rem;
		padding: 1rem;
		background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
		border-radius: 12px;
		border-left: 4px solid #2D7A3E;
		font-size: 0.8125rem;
		color: #4a5568;
		line-height: 1.5;
	}

	.sidebar-info strong {
		color: #2D7A3E;
		font-weight: 700;
	}

	/* Grid d'articles */
	.posts-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 1.5rem;
	}

	/* Carte d'article - Enhanced with Engagement Metrics */
	.post-card {
		background: white;
		border-radius: 12px;
		overflow: hidden;
		transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
		box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
		opacity: 0;
		animation: fadeInUp 0.6s ease forwards;
		position: relative;
	}

	.post-card:hover {
		transform: translateY(-8px);
		box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
	}

	.post-image {
		width: 100%;
		height: 180px;
		overflow: hidden;
		position: relative;
		background: #f5f5f5;
	}

	.post-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.6s ease;
	}

	.post-card:hover .post-image img {
		transform: scale(1.08);
	}

	/* Reading Time Badge */
	.reading-time-badge {
		position: absolute;
		top: 0.75rem;
		right: 0.75rem;
		background: rgba(45, 122, 62, 0.9);
		color: white;
		padding: 0.4rem 0.75rem;
		border-radius: 20px;
		font-size: 0.75rem;
		font-weight: 600;
		backdrop-filter: blur(10px);
		z-index: 2;
		display: flex;
		align-items: center;
		gap: 0.25rem;
	}

	.post-content {
		padding: 1.25rem;
	}

	.post-category {
		display: inline-block;
		font-size: 0.75rem;
		font-weight: 600;
		text-transform: uppercase;
		letter-spacing: 0.05em;
		color: #2D7A3E;
		margin-bottom: 0.75rem;
	}

	.post-title {
		font-size: 1.25rem;
		font-weight: 700;
		line-height: 1.4;
		margin-bottom: 0.75rem;
		color: #1a1a1a;
	}

	.post-title a {
		text-decoration: none;
		color: inherit;
		transition: color 0.3s ease;
	}

	.post-title a:hover {
		color: #2D7A3E;
	}

	.post-excerpt {
		font-size: 0.9375rem;
		color: #4b5563;
		line-height: 1.6;
		margin-bottom: 1.25rem;
	}

	.post-meta {
		display: flex;
		align-items: center;
		gap: 1rem;
		font-size: 0.8125rem;
		color: #6b7280;
		padding-top: 1rem;
		border-top: 1px solid #f0f0f0;
	}

	.post-meta-item {
		display: flex;
		align-items: center;
		gap: 0.25rem;
	}

	.post-meta svg {
		width: 14px;
		height: 14px;
		opacity: 0.6;
	}

	.read-more {
		display: inline-flex;
		align-items: center;
		gap: 0.5rem;
		font-size: 0.875rem;
		font-weight: 600;
		color: #2D7A3E;
		text-decoration: none;
		transition: gap 0.3s ease;
		margin-bottom: 1rem;
	}

	.read-more:hover {
		gap: 0.75rem;
	}

	.read-more svg {
		width: 16px;
		height: 16px;
		transition: transform 0.3s ease;
	}

	.read-more:hover svg {
		transform: translateX(3px);
	}

	/* Mid-Content CTA Section */
	.mid-content-cta {
		grid-column: 1 / -1;
		background: linear-gradient(135deg, #2D7A3E 0%, #22543d 100%);
		padding: 3rem 2rem;
		border-radius: 16px;
		text-align: center;
		color: white;
		position: relative;
		overflow: hidden;
		margin: 2rem 0;
	}

	.mid-content-cta::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v6h4v4h2V6h4V4H6z"/></g></g></svg>') repeat;
		opacity: 0.3;
	}

	.mid-content-cta h3 {
		font-size: 2rem;
		font-weight: 800;
		margin-bottom: 1rem;
		position: relative;
		z-index: 1;
	}

	.mid-content-cta p {
		font-size: 1.125rem;
		margin-bottom: 2rem;
		opacity: 0.95;
		position: relative;
		z-index: 1;
	}

	.mid-cta-buttons {
		display: flex;
		justify-content: center;
		gap: 1rem;
		flex-wrap: wrap;
		position: relative;
		z-index: 1;
	}

	.mid-cta-btn {
		padding: 1rem 2rem;
		border-radius: 12px;
		font-size: 1rem;
		font-weight: 700;
		text-decoration: none;
		transition: all 0.3s ease;
		display: inline-flex;
		align-items: center;
		gap: 0.5rem;
	}

	.mid-cta-btn-primary {
		background: #fbbf24;
		color: #1e5a3e;
		box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
	}

	.mid-cta-btn-primary:hover {
		background: #f59e0b;
		transform: translateY(-2px);
		box-shadow: 0 6px 16px rgba(251, 191, 36, 0.6);
	}

	.mid-cta-btn-secondary {
		background: transparent;
		color: white;
		border: 2px solid white;
	}

	.mid-cta-btn-secondary:hover {
		background: white;
		color: #2D7A3E;
		transform: translateY(-2px);
	}

	/* Pagination - Enhanced */
	.pagination {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 0.5rem;
		padding: 3rem 0 1rem;
	}

	.pagination a,
	.pagination span {
		display: flex;
		align-items: center;
		justify-content: center;
		min-width: 40px;
		height: 40px;
		padding: 0 0.75rem;
		border-radius: 8px;
		font-size: 0.875rem;
		font-weight: 500;
		text-decoration: none;
		transition: all 0.3s ease;
	}

	.pagination a {
		background: #f5f5f5;
		color: #4b5563;
	}

	.pagination a:hover {
		background: #2D7A3E;
		color: white;
	}

	.pagination .current {
		background: #2D7A3E;
		color: white;
	}

	.pagination .disabled {
		opacity: 0.3;
		cursor: not-allowed;
		pointer-events: none;
	}

	.pagination-motivation {
		text-align: center;
		padding: 1rem 0 2rem;
		color: #4b5563;
		font-size: 0.9375rem;
	}

	.pagination-motivation strong {
		color: #2D7A3E;
		font-weight: 700;
	}

	/* Empty state */
	.empty-state {
		text-align: center;
		padding: 5rem 2rem;
	}

	.empty-state-icon {
		font-size: 4rem;
		margin-bottom: 1.5rem;
		opacity: 0.3;
	}

	.empty-state h2 {
		font-size: 1.5rem;
		font-weight: 600;
		color: #1a1a1a;
		margin-bottom: 0.5rem;
	}

	.empty-state p {
		color: #4b5563;
		margin-bottom: 2rem;
	}

	/* Animations */
	@keyframes fadeInUp {
		from {
			opacity: 0;
			transform: translateY(30px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}

	/* Stagger animation delays */
	.post-card:nth-child(1) { animation-delay: 0.1s; }
	.post-card:nth-child(2) { animation-delay: 0.2s; }
	.post-card:nth-child(3) { animation-delay: 0.3s; }
	.post-card:nth-child(4) { animation-delay: 0.4s; }
	.post-card:nth-child(5) { animation-delay: 0.5s; }
	.post-card:nth-child(6) { animation-delay: 0.6s; }
	.post-card:nth-child(7) { animation-delay: 0.7s; }
	.post-card:nth-child(8) { animation-delay: 0.8s; }
	.post-card:nth-child(9) { animation-delay: 0.9s; }

	/* Responsive */
	@media (max-width: 1024px) {
		.blog-hero {
			margin-top: 0;
			padding-top: calc(var(--header-height-mobile, 70px) + 20px);
			padding-bottom: 40px;
		}

		.blog-hero h1 {
			font-size: clamp(2rem, 8vw, 3rem);
			margin-bottom: 0.75rem;
		}

		.blog-hero-subtitle {
			font-size: 1rem;
			padding: 0 1rem;
			line-height: 1.6;
		}

		.hero-stats {
			flex-direction: column;
			gap: 1rem;
		}

		.popular-posts-section {
			padding: 2rem 0;
		}

		.popular-posts-grid {
			grid-template-columns: 1fr;
		}

		.blog-layout {
			flex-direction: column;
			padding: 2rem 0;
		}

		.blog-sidebar {
			display: none;
			width: 100%;
			position: static;
			margin-bottom: 2rem;
		}

		.blog-sidebar.mobile-open {
			display: block;
			animation: slideDown 0.3s ease forwards;
		}

		@keyframes slideDown {
			from {
				opacity: 0;
				transform: translateY(-20px);
			}
			to {
				opacity: 1;
				transform: translateY(0);
			}
		}

		.mobile-filter-toggle {
			display: flex;
		}

		.posts-grid {
			grid-template-columns: 1fr;
			gap: 2rem;
		}

		.mid-content-cta h3 {
			font-size: 1.5rem;
		}

		.mid-content-cta p {
			font-size: 1rem;
		}

		.mid-cta-buttons {
			flex-direction: column;
			align-items: stretch;
		}

		.mid-cta-btn {
			justify-content: center;
		}
	}

	@media (min-width: 1025px) and (max-width: 1280px) {
		.posts-grid {
			grid-template-columns: repeat(2, 1fr);
		}
	}

	@media (min-width: 1281px) {
		.posts-grid {
			grid-template-columns: repeat(2, 1fr);
		}
	}
