*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


.container{
    width:100%;
    margin:auto;
}

.header{
    background:#08145c;
    color:#fff;
    padding:20px 0;
}

.header h1{
    font-size:32px;
}

/*.main-layout{*/
/*    display:flex;*/
/*    gap:30px;*/
/*    margin-top:40px;*/
/*}*/

/*.blog-column{*/
/*    width:70%;*/
/*}*/

/*.sidebar{*/
/*    width:30%;*/
/*}*/

/*.blog-grid{*/
/*    display:grid;*/
/*    grid-template-columns:1fr 1fr;*/
/*    gap:25px;*/
/*}*/

.blog-card{
    background:#fff;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.blog-thumb{
    width:100%;
    height:220px;
    object-fit:cover;
}

.card-body{
    padding:20px;
}

.card-body h2{
    font-size:24px;
    margin-bottom:15px;
}

.excerpt{
    line-height:1.7;
    margin-bottom:20px;
}

.read-btn{
    display:inline-block;
    padding:10px 18px;
    background:#003298;
    color:#fff;
    text-decoration:none;
    border-radius:15px;
}



.blog-sidebar-box{
    background:#fff;
    padding:25px;
    margin-bottom:25px;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.blog-sidebar-box h3{
    margin-bottom:20px;
}

.blog-sidebar form input{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:1px solid #ccc;
}

.blog-sidebar form button{
    width:100%;
    padding:12px;
    background:#003298;
    color:#fff;
    border:none;
    cursor:pointer;
}

.recent-post{
    display:flex;
    gap:10px;
    margin-bottom:15px;
}

.recent-post img{
    width:80px;
    height:60px;
    object-fit:cover;
}

.recent-post a{
    text-decoration:none;
    color:#111;
    font-size:14px;
    font-weight:bold;
}

.pagination{
    margin-top:40px;
}

.pagination a{
    padding:10px 15px;
    background:#fff;
    margin-right:10px;
    text-decoration:none;
    color:#111;
    border-radius:4px;
}

.pagination a.active{
    background:#003298;
    color:#fff;
}

.blog-hero{
    height:420px;
    background-size:cover;
    background-position:center;
    position:relative;
}

.overlay{
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.55);
    display:flex;
    align-items:center;
}

.blog-hero h1{
    color:#fff;
    font-size:52px;
    max-width:800px;
}

.blog-layout{
    display:flex;
    gap:30px;
    margin-top:50px;
}

.blog-content{
    width:70%;
    background:#fff;
    padding:40px;
    line-height:1.9;
}

.blog-content h2{
    margin:25px 0 15px;
}

.blog-content img{
    width:100%;
    margin:25px 0;
    border-radius:8px;
}

.footer{
    background:#08145c;
    color:#fff;
    padding:20px;
    text-align:center;
    margin-top:50px;
}

/* RESPONSIVE */

@media(max-width:992px){

    .main-layout,
    .blog-layout{
        flex-direction:column;
    }

    .blog-column,
    .blog-sidebar,
    .blog-content{
        width:100%;
    }

    .blog-grid{
        grid-template-columns:1fr;
    }

    .blog-hero h1{
        font-size:36px;
    }
}

.blog-page{
    background:#f7efe9;
}

.blog-card{
    background:#fff;
    border-radius:8px;
    overflow:hidden;
    height:100%;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
    transition:0.3s;
}

.blog-card:hover{
    transform:translateY(-5px);
}

.blog-image img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.blog-content{
    padding:20px;
}

.blog-content h3{
    font-size:24px;
    line-height:1.4;
    margin-bottom:15px;
    color:#111;
}

.blog-content p{
    font-size:15px;
    line-height:1.8;
    color:#555;
}

.read-more{
    display:inline-block;
    margin-top:15px;
    background:#08145c;
    color:#fff;
    padding:10px 20px;
    text-decoration:none;
    border-radius:4px;
}

.blog-sidebar-box{
    background:#fff;
    padding:25px;
    border-radius:8px;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.blog-sidebar-box h3{
    margin-bottom:20px;
    font-size:28px;
}

.recent-post{
    display:flex;
    gap:15px;
    margin-bottom:20px;
    align-items:center;
}

.recent-post img{
    width:90px;
    height:70px;
    object-fit:cover;
    border-radius:6px;
}

.recent-post a{
    text-decoration:none;
    color:#111;
    font-size:15px;
    font-weight:600;
    line-height:1.5;
}

@media(max-width:991px){

    .blog-sidebar-box{
        margin-top:30px;
    }

}

.blog-page{
    background:#f4e9e1;
}

.blog-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.blog-img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.blog-card-body{
    padding:20px;
}

.blog-card-body h3{
    font-size:26px;
    margin-bottom:15px;
    line-height:1.4;
}

.blog-card-body p{
    line-height:1.8;
}

.read-btn{
    display:inline-block;
    margin-top:15px;
    padding:10px 20px;
    background:#003298;
    color:#fff;
    text-decoration:none;
    border-radius:4px;
}

.blog-sidebar-box{
    background:#fff;
    padding:25px;
    border-radius:10px;
}

.recent-post{
    display:flex;
    gap:12px;
    margin-bottom:20px;
}

.recent-post img{
    width:90px;
    height:70px;
    object-fit:cover;
    border-radius:6px;
}

.recent-post a{
    color:#111;
    text-decoration:none;
    font-weight:600;
    line-height:1.5;
}

@media(max-width:991px){

    .blog-sidebar-box{
        margin-top:20px;
    }

}
.blog-sidebar{
    position:relative;
}

.blog-sidebar-box{
    background:#fff;
    padding:25px;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
}
.blog-flex{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.blog-card-wrapper{
    width:calc(50% - 15px);
}

.blog-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
    height:100%;
}

.blog-img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.blog-card-body{
    padding:20px;
}

.blog-card-body h3{
    font-size:24px;
    line-height:1.4;
    margin-bottom:15px;
}

.blog-card-body p{
    font-size:15px;
    line-height:1.8;
    color:#555;
}



/* MOBILE */

@media(max-width:768px){

    .blog-card-wrapper{
        width:100%;
    }
    .blog-banner-overlay h1 {
        font-size:26px!important;
    }
    .single-blog-content {
        padding:20px!important;
    }
    .blog-banner img {
        height:300px!important;
     
    }

}

.blog-author-section {
background: rgba(0, 50, 152, 0.8);
  border-radius: 24px;
  padding: 30px 15px;
  position: relative;

  /* Premium layered shadow */
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.04),
    0 12px 24px rgba(0, 0, 0, 0.06),
    0 24px 48px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);

  border: 1px solid rgba(255, 255, 255, 0.8);

  /* Smooth premium feel */
  transition: all 0.3s ease;
  color:#fff;
}

.blog-author-section:hover {
  transform: translateY(-4px);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.06),
    0 20px 40px rgba(0, 0, 0, 0.08),
    0 32px 64px rgba(0, 0, 0, 0.12);
}

.author-social .fab{
        background-color: #fff;
    border-radius: 25%;
    padding: 7px;
}
.rounded-img{
    border-radius:15px;
}