/* Blog Section */
.blog-container{
    max-width:1200px;
    margin:40px auto;
    padding:0 15px;
}

.blog-heading{
    text-align:center;
    margin-bottom:40px;
}

.blog-heading h1{
    font-size:38px;
    font-weight:700;
    margin-bottom:10px;
    color:#111;
}

.blog-heading p{
    color:#666;
    font-size:16px;
}

/* Grid Layout */
.blog-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

/* Card */
.blog-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 25px rgba(0,0,0,0.08);
    transition:0.3s ease;
}

.blog-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 35px rgba(0,0,0,0.15);
}

/* Image */
.blog-image{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

/* Content */
.blog-content{
    padding:20px;
}

.blog-title{
    margin:0 0 12px;
    font-size:22px;
    line-height:1.4;
}

.blog-title a{
    text-decoration:none;
    color:#111;
    transition:.3s;
}

.blog-title a:hover{
    color:#e60000;
}

.blog-desc{
    color:#666;
    font-size:15px;
    line-height:1.8;
    margin-bottom:20px;
}

/* Button */
.read-more-btn{
    display:inline-block;
    padding:10px 20px;
    background:#00ffe7;
    color:#000;
    text-decoration:none;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.read-more-btn:hover{
    background:#000;
    color:#00ffe7;
}

/* Mobile */
@media(max-width:768px){

    .blog-heading h1{
        font-size:30px;
    }

    .blog-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .blog-image{
        height:200px;
    }

    .blog-title{
        font-size:20px;
    }
}