/* ======= Blog Preview Section ======= */
.blog-preview {
    padding: 40px 20px;
    background-color: #676767; 
    text-align: center;
}

    .blog-preview .section-title {
        font-size: 28px;
        margin-bottom: 10px;
        color: white;
    }

    .blog-preview .section-description {
        font-size: 16px;
        color: white;
        margin-bottom: 30px;
    }

/* Blog Container */
.blog-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Blog Card */
.blog-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 300px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

    .blog-card:hover {
        transform: scale(1.02);
    }

    .blog-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

.blog-info {
    padding: 15px;
    text-align: left;
}

    .blog-info h3 {
        margin: 0;
        font-size: 18px;
        color: #222;
    }
