body{
    margin:0;
}
a {
    color: #f8b133;
    font-weight: 700;
    text-decoration: underline;
}
.site-header{
    background:#000;
    color:#fff;
    padding:20px 0;
}

.hero-section{
    padding:100px 0;
    text-align:center;
}
/* =========================
BLOG GRID DESIGN
========================= */

.jf-blog-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
	    font-family: 'DM Sans', sans-serif;

}

/* CARD */
.jf-blog-card{
    background:#f5f5f5;
    border-radius:24px;
    overflow:hidden;
    transition:0.4s ease;
    height:100%;
    display:flex;
    flex-direction:column;
}

.jf-blog-card:hover{
    transform:translateY(-6px);
}

/* IMAGE */
.jf-blog-image{
    overflow:hidden;
}

.jf-blog-image img{
    width:100%;
    height:320px;
    object-fit:cover;
    display:block;
    transition:0.5s ease;
}

.jf-blog-card:hover .jf-blog-image img{
    transform:scale(1.06);
}

/* CONTENT */
.jf-blog-content{
    padding:26px 24px 28px;
    display:flex;
    flex-direction:column;
    height:100%;
}

/* DATE */
.jf-blog-date{
    font-size:13px;
    font-weight:600;
    color:#555;
    text-transform:uppercase;
    margin-bottom:18px;
    letter-spacing:0.4px;
}

/* TITLE */
.jf-blog-title{
    font-size:22px;
    line-height:1.3;
    margin:0 0 18px;
    font-weight:700;
}

.jf-blog-title a{
    color:#000;
    text-decoration:none;
}

/* EXCERPT */
.jf-blog-excerpt{
    font-size:17px;
    line-height:1.7;
    color:#444;
    margin-bottom:28px;
}

/* BUTTON */
.jf-blog-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:auto;
    color:#000;
    font-size:17px;
    font-weight:700;
    text-decoration:none;
    transition:0.3s ease;
}

.jf-blog-btn span{
    transition:0.3s ease;
}

.jf-blog-btn:hover span{
    transform:translateX(5px);
}

/* TABLET */
@media(max-width:1024px){

    .jf-blog-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* MOBILE */
@media(max-width:767px){

    .jf-blog-grid{
        grid-template-columns:1fr;
        gap:24px;
    }

    .jf-blog-image img{
        height:240px;
    }

    .jf-blog-content{
        padding:22px 20px;
    }

    .jf-blog-title{
        font-size:20px;
    }

    .jf-blog-excerpt{
        font-size:15px;
        margin-bottom:22px;
    }

}