/*
|--------------------------------------------------------------------------
| VALORABANK
| BLOG PAGE CSS
|--------------------------------------------------------------------------
*/

.blog-hero{

    min-height:60vh;

    display:flex;
    align-items:center;

    background:
    linear-gradient(
        rgba(8,31,77,.85),
        rgba(8,31,77,.75)
    ),
    url('../images/blog/blog-hero.jpg');

    background-size:cover;
    background-position:center;

    color:#fff;

}

.blog-hero h1{

    font-size:3.5rem;
    font-weight:800;

}

.blog-hero p{

    color:#e5e7eb;
    font-size:1.1rem;

}

/* ==============================
BLOG SECTION
============================== */

.blog-section{

    padding:110px 0;

    background:#f8fafc;

}

.blog-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 20px 60px rgba(0,0,0,.06);

    transition:.4s;

    height:100%;

}

.blog-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 80px rgba(0,0,0,.12);

}

.blog-image{

    height:220px;

    background:#e5e7eb;

    background-size:cover;

    background-position:center;

}

.blog-content{

    padding:25px;

}

.blog-content h4{

    color:#081F4D;
    font-weight:700;

}

.blog-content p{

    color:#64748B;

    margin-top:10px;

    line-height:1.7;

}

.blog-meta{

    display:flex;
    justify-content:space-between;

    font-size:13px;

    color:#94a3b8;

    margin-top:15px;

}

.blog-btn{

    margin-top:20px;

    display:inline-block;

    padding:10px 25px;

    border-radius:30px;

    background:linear-gradient(135deg,#081F4D,#103A8C);

    color:#fff;

    font-weight:600;

    text-decoration:none;

}

/* ==============================
FEATURED POST
============================== */

.featured-post{

    background:#fff;

    border-radius:30px;

    overflow:hidden;

    box-shadow:0 25px 80px rgba(0,0,0,.08);

}

.featured-content{

    padding:40px;

}

.featured-content h2{

    font-size:2.5rem;

    font-weight:800;

    color:#081F4D;

}

/* ==============================
RESPONSIVE
============================== */

@media(max-width:991px){

    .blog-hero h1{
        font-size:2.8rem;
    }

}

@media(max-width:576px){

    .blog-hero h1{
        font-size:2.2rem;
    }

}