.blog-container{

max-width:1320px;

margin:auto;

padding:60px 20px;

display:grid;

grid-template-columns:2fr 1fr;

gap:40px;

}

@media(max-width:991px){

.blog-container{

grid-template-columns:1fr;

}

}

.blog-widget{

background:#FFEAEA;

padding:25px;

border-radius:18px;

margin-bottom:30px;

}

.widget-title{

margin-bottom:20px;

color:#AA3332;

font-size:24px;

font-weight:700;

}

.blog-sidebar{
    position:sticky;
    top:100px;
}

.blog-card{
    background:#FFEAEA;
    border-radius:18px;
    padding:25px;
    margin-bottom:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.blog-card h3{
    margin:0 0 20px;
    color:#AA3332;
    font-size:24px;
    font-weight:700;
}

.blog-search{
    display:flex;
}

.blog-search input{
    flex:1;
    height:48px;
    border:none;
    border-radius:12px 0 0 12px;
    padding:0 15px;
    background:#fff;
}

.blog-search button{
    width:55px;
    border:none;
    background:#AA3332;
    color:#fff;
    border-radius:0 12px 12px 0;
    cursor:pointer;
}

.author-card{
    text-align:center;
}

.author-avatar img{
    width:120px;
    height:120px;
    border-radius:50%;
    border:5px solid #AA3332;
    margin-bottom:20px;
}

.author-card p{
    color:#555;
    line-height:1.7;
}

.latest-post{
    display:flex;
    gap:15px;
    margin-bottom:20px;
    text-decoration:none;
}

.latest-post:last-child{
    margin-bottom:0;
}

.latest-post .thumb img{
    width:90px;
    height:70px;
    object-fit:cover;
    border-radius:10px;
}

.latest-post h4{
    color:#222;
    font-size:15px;
    margin:0 0 6px;
    line-height:1.4;
}

.latest-post span{
    font-size:13px;
    color:#777;
}

.category-list{
    list-style:none;
    margin:0;
    padding:0;
}

.category-list li{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 0;
    border-bottom:1px solid rgba(0,0,0,.08);
}

.category-list li:last-child{
    border-bottom:none;
}

.category-list a{
    color:#333;
    text-decoration:none;
}

.category-list .count{
    background:#AA3332;
    color:#fff;
    border-radius:20px;
    padding:4px 10px;
    font-size:12px;
}