/* Blog Section Styles */
        .blog-section {
            padding: 4rem 0;
            background: linear-gradient(135deg, var(--background-secondary) 0%, var(--background) 100%);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2rem;
            margin-bottom: 2rem;
        }

        .blog-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            aspect-ratio: 16/9;
            text-decoration: none;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .blog-image {
            width: 100%;
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
		
		.blog-image::before {
			content: '';
			position: absolute;
		    top: 0;
		    left: 0;
		    width: 100%;
			height: 100%;
			background: rgba(0, 0, 0, 0.5); /* Black with 50% opacity */
			z-index: 1;
					}

        .blog-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
        }

        .blog-content {
            padding: 1.5rem;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            color: var(--white);
            z-index: 2;
        }

        .blog-title {
            font-size: 1.25rem;
            font-weight: 600;
			line-height:1;
            margin-bottom: 0.5rem;
            color: var(--white);
        }

        .blog-date {
            font-size: 0.875rem;
            opacity: 0.9;
            color: var(--white);
        }

        .view-all-posts {
            display: inline-block;
            margin-top: 2rem;
            padding: 1rem 2rem;
            background: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: var(--radius-lg);
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .view-all-posts:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

/* Responsive Adjustments */
        @media (max-width: 768px) {
            .blog-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .blog-card {
                aspect-ratio: 16/9;
            }

            .blog-image {
                height: 180px;
            }
        }