/* CSS Document */

.blog-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            padding: 20px 20px;
        }

        .blog-card {
            background: white;
			margin: 40px 20px;
            border-radius: 16px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        }

        .blog-card img {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }

        .blog-card-content {
			
            padding: 20px;
        }

        .blog-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #333333;
        }

        .blog-card p {
            font-size: 14px;
            color: #555555;
            line-height: 1.6;
            margin: 20px;
        }

        .blog-card a {
            display: inline-block;
            background: linear-gradient(135deg, #4CAF50, #388E3C);
            color: white;
            padding: 10px 20px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: bold;
            font-size: 14px;
            transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
        }

        .blog-card a:hover {
            background: linear-gradient(135deg, #388E3C, #4CAF50);
            transform: scale(1.05);
        }

        .blog-header {
            text-align: center;
            padding: 60px 20px;
            background: linear-gradient(135deg, #F5F5DC, #FFFFFF);
        }

        .blog-header h1 {
            font-size: 36px;
            margin-bottom: 20px;
            color: #333333;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .blog-header p {
            font-size: 18px;
            color: #555555;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }