.blog-sidebar{
    background:#f8fafc;
    padding:20px;
    border-radius:20px;
    position:sticky;
    top:100px;
}

.category-item{
    display:flex;
    justify-content:space-between;
    padding:12px 15px;
    margin-bottom:10px;
    background:#fff;
    border-radius:12px;
    text-decoration:none;
    color:#0f172a;
    transition:.3s;
    border:1px solid #eee;
}

.category-item:hover{
    transform:translateX(5px);
    border-color:#D4A017;
}

.category-item.active{
    background:#0B1F3A;
    color:white;
}

/* newa detail */
/* =======================
   META ARTICLE
======================= */

.article-meta{
    display:flex;
    gap:20px;
    font-size:14px;
    color:#64748b;
}

.meta-author, .meta-date{
    display:flex;
    align-items:center;
    gap:5px;
}

/* =======================
   CONTENT STYLE
======================= */

.article-content{
    font-size:16px;
    line-height:1.9;
    color:#334155;
}

/* =======================
   SIDEBAR FIXE
======================= */

.blog-sidebar{
    position:sticky;
    top:100px;
    background:#f8fafc;
    padding:20px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

/* =======================
   SIDEBAR NEWS ITEM
======================= */

.sidebar-news{
    display:flex;
    gap:12px;
    margin-bottom:15px;
    text-decoration:none;
    color:#0f172a;
    padding:10px;
    border-radius:12px;
    transition:.3s;
    background:#fff;
    border:1px solid #eee;
}

.sidebar-news:hover{
    transform:translateX(5px);
    border-color:#D4A017;
}

.sidebar-news img{
    width:55px;
    height:55px;
    object-fit:cover;
    border-radius:10px;
}