/*
|--------------------------------------------------------------------------
| VALORABANK
| BLOG DETAILS PAGE CSS
|--------------------------------------------------------------------------
*/

.blog-details-hero{

    min-height:55vh;

    display:flex;
    align-items:center;

    background:
    linear-gradient(
        rgba(8,31,77,.88),
        rgba(8,31,77,.75)
    ),
    url('../images/blog/details-hero.jpg');

    background-size:cover;
    background-position:center;

    color:#fff;

}

.blog-details-hero h1{

    font-size:3.2rem;
    font-weight:800;

}

.blog-details-meta{

    display:flex;

    gap:20px;

    font-size:14px;

    color:#e5e7eb;

    margin-top:15px;

}

/* ==============================
CONTENT
============================== */

.blog-details-section{

    padding:100px 0;

    background:#f8fafc;

}

.blog-content-box{

    background:#fff;

    padding:50px;

    border-radius:30px;

    box-shadow:0 25px 70px rgba(0,0,0,.06);

}

.blog-content-box h2{

    color:#081F4D;

    font-weight:800;

    margin-top:30px;

}

.blog-content-box p{

    color:#64748B;

    line-height:2;

    margin-top:15px;

}

/* ==============================
SIDEBAR
============================== */

.blog-sidebar{

    background:#fff;

    border-radius:25px;

    padding:30px;

    box-shadow:0 20px 60px rgba(0,0,0,.06);

}

.sidebar-title{

    font-weight:700;

    color:#081F4D;

    margin-bottom:20px;

}

.related-post{

    display:flex;

    gap:15px;

    margin-bottom:20px;

}

.related-post img{

    width:70px;

    height:70px;

    border-radius:15px;

    object-fit:cover;

    background:#e5e7eb;

}

.related-post h6{

    font-weight:600;

    color:#081F4D;

    margin:0;

}

/* ==============================
QUOTE BOX
============================== */

.quote-box{

    background:linear-gradient(135deg,#081F4D,#103A8C);

    color:#fff;

    padding:30px;

    border-radius:25px;

    margin:40px 0;

    font-style:italic;

}

/* ==============================
RESPONSIVE
============================== */

@media(max-width:991px){

    .blog-details-hero h1{
        font-size:2.5rem;
    }

}

@media(max-width:576px){

    .blog-content-box{

        padding:25px;

    }

}