/*=========================================
            BLOG SECTION
=========================================*/

.blog-section{
    padding:110px 0;
    background:#FFFFFF;
}

.blog-header{
    max-width:760px;
    margin:0 auto 70px;
    text-align:center;
}

.blog-header h2{
    font-size:46px;
    font-weight:800;
    color:#0F172A;
    margin:18px 0;
    line-height:1.2;
}

.blog-header p{
    font-size:17px;
    color:#64748B;
    line-height:1.8;
}

.blog-wrapper{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.blog-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(15,23,42,.08);
    transition:.35s ease;
    display:flex;
    flex-direction:column;
    height:100%;
}

.blog-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 55px rgba(15,23,42,.15);
}

.blog-image{
    overflow:hidden;
}

.blog-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
    transition:.5s ease;
}

.blog-card:hover .blog-image img{
    transform:scale(1.08);
}

.blog-content{
    padding:30px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.blog-meta{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
    flex-wrap:wrap;
    gap:10px;
}

.blog-meta span{
    font-size:14px;
    color:#64748B;
    display:flex;
    align-items:center;
    gap:8px;
}

.blog-meta i{
    color:#C89B3C;
}

.blog-content h3{
    font-size:24px;
    color:#0F172A;
    line-height:1.45;
    margin-bottom:18px;
    transition:.3s;
}

.blog-card:hover h3{
    color:#2563EB;
}

.blog-content p{
    color:#64748B;
    font-size:16px;
    line-height:1.8;
    margin-bottom:30px;
    flex:1;
}

.read-more{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#2563EB;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.read-more i{
    transition:.3s;
}

.read-more:hover{
    color:#C89B3C;
}

.read-more:hover i{
    transform:translateX(8px);
}

/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:991px){

.blog-wrapper{
    grid-template-columns:repeat(2,1fr);
}

.blog-header h2{
    font-size:38px;
}

.blog-image img{
    height:230px;
}

}

@media(max-width:767px){

.blog-section{
    padding:80px 0;
}

.blog-wrapper{
    grid-template-columns:1fr;
}

.blog-header{
    margin-bottom:45px;
}

.blog-header h2{
    font-size:30px;
}

.blog-content{
    padding:25px;
}

.blog-content h3{
    font-size:22px;
}

.blog-image img{
    height:220px;
}

.blog-meta{
    flex-direction:column;
    align-items:flex-start;
}

}