.blog-hero{
    position: relative;
    padding: 110px 0;
    background: url('../images/1.jpg') center/cover no-repeat;
    overflow: hidden;
}
.blog-hero-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.72), rgba(0,0,0,.45));
}
.blog-hero .container{
    position: relative;
    z-index: 2;
}
.blog-kicker{
    display: inline-block;
    padding: 8px 16px;
    border-radius: 30px;
    background: rgba(255,255,255,.14);
    margin-bottom: 16px;
    font-weight: 600;
}
.blog-hero h1{
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
}
.blog-hero p{
    max-width: 760px;
    margin: 15px auto 0;
    font-size: 18px;
    color: rgba(255,255,255,.9);
}
.blog-search .form-control{
    border-radius: 14px 0 0 14px;
}
.blog-search .btn{
    border-radius: 0 14px 14px 0;
}
.featured-post,
.blog-card,
.sidebar-box{
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.featured-img{
    width: 100%;
    object-fit: cover;
    min-height: 100%;
}
.featured-content{
    padding: 28px;
}
.blog-card{
    transition: .3s;
    height: 100%;
}
.blog-card:hover{
    transform: translateY(-6px);
}
.blog-image img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
.blog-content{
    padding: 22px;
}
.blog-category,
.blog-tag{
    display: inline-block;
    margin-bottom: 12px;
    color: #0d6efd;
    font-weight: 700;
    font-size: 14px;
}
.blog-content h3,
.featured-content h2{
    font-weight: 700;
}
.blog-meta{
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: 14px 0;
    color: #666;
    font-size: 14px;
}
.blog-meta i{
    margin-right: 6px;
}
.read-more{
    font-weight: 700;
    text-decoration: none;
}
.blog-sidebar{
    display: grid;
    gap: 20px;
}
.sidebar-box{
    padding: 24px;
}
.sidebar-box h4{
    margin-bottom: 18px;
    font-weight: 700;
}
.category-list{
    display: grid;
    gap: 12px;
}
.category-list a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #222;
    padding: 10px 14px;
    background: #f8f9fa;
    border-radius: 12px;
}
.popular-post{
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}
.popular-post img{
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 12px;
}
.popular-post a{
    display: block;
    text-decoration: none;
    font-weight: 600;
    color: #222;
    line-height: 1.3;
}
.popular-post span{
    font-size: 13px;
    color: #777;
}
@media (max-width: 768px){
    .blog-hero h1{
        font-size: 32px;
    }
}

.btn-sub{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 32px;
    background:#D97A00;
    color:black;
    font-size:16px;
    font-weight:600;
    border:none;
    border-radius:50px;
    text-decoration:none;
    transition:all .3s ease;
    box-shadow:0 5px 15px rgba(244,166,42,.3);
}

.btn-primary:hover{
    background:#D88A0F;
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(244,166,42,.4);
}