/*==================================================
                BLOG SECTION
==================================================*/

.nf-blog{
    padding:10px 0;
    background:#f8faf6;
}

/*====================================
SECTION TITLE
====================================*/

.nf-section-title{
    text-align:center;
    margin-bottom:60px;
}

.nf-section-title span{
    display:inline-block;
    color:#76b82a;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:10px;
}

.nf-section-title h2{
    font-size:42px;
    font-weight:700;
    color:#222;
    margin-bottom:10px;
}

.nf-section-title p{
    max-width:760px;
    margin:auto;
    color:#666;
    font-size:17px;
    line-height:1.8;
}

/*====================================
BLOG GRID
====================================*/

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

/*====================================
BLOG CARD
====================================*/

.blog-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
    display:flex;
    flex-direction:column;
    height:100%;
    border-top:5px solid #76b82a;
}

.blog-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

/*====================================
BLOG IMAGE
====================================*/

.blog-image{
    display:block;
    overflow:hidden;
    height:240px;
    background:#f3f3f3;
}

.blog-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
    display:block;
}

.blog-card:hover .blog-image img{
    transform:scale(1.08);
}

/*====================================
CONTENT
====================================*/

.blog-content{
    padding:28px;
    display:flex;
    flex-direction:column;
    flex:1;
}

/*====================================
META
====================================*/

.blog-meta{
    margin-bottom:18px;
}

.blog-meta span{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:14px;
    color:#76b82a;
    font-weight:600;
}

.blog-meta i{
    font-size:14px;
}

/*====================================
TITLE
====================================*/

.blog-content h3{
    font-size:24px;
    margin-bottom:15px;
    line-height:1.4;
}

.blog-content h3 a{
    color:#222;
    text-decoration:none;
    transition:.3s;
}

.blog-content h3 a:hover{
    color:#76b82a;
}

/*====================================
EXCERPT
====================================*/

.blog-content p{
    color:#666;
    font-size:15px;
    line-height:1.8;
    margin-bottom:25px;
    flex:1;
}

/*====================================
READ MORE
====================================*/

.read-more{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#76b82a;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.read-more i{
    transition:.3s;
}

.read-more:hover{
    color:#2f7d32;
}

.read-more:hover i{
    transform:translateX(6px);
}

/*====================================
VIEW ALL BUTTON
====================================*/

.blog-btn{
    text-align:center;
    margin-top:60px;
}

.blog-btn a{
    display:inline-block;
    background:#76b82a;
    color:#fff;
    text-decoration:none;
    padding:16px 36px;
    border-radius:6px;
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.5px;
    transition:.35s;
}

.blog-btn a:hover{
    background:#2f7d32;
    transform:translateY(-3px);
}