/* ==========================================================
   HARDIYANTO THEME
   SIDEBAR
========================================================== */

/* ==========================================
   SIDEBAR
========================================== */

.sidebar{

    position:sticky;

    top:120px;

}

/* ==========================================
   WIDGET
========================================== */

.sidebar-widget{

    margin-bottom:36px;

    padding:32px;

    background:#fff;

    border:1px solid var(--border);

    border-radius:18px;

    box-shadow:var(--shadow);

}

/* ==========================================
   TITLE
========================================== */

.widget-title{

    margin:0 0 26px;

    font-size:24px;

    font-weight:700;

    line-height:1.3;

    color:var(--heading);

}

/* ==========================================
   AUTHOR
========================================== */

.author-widget{

    text-align:center;

}

.author-photo{

    margin-bottom:22px;

}

.author-photo img{

    width:120px;

    height:120px;

    margin:auto;

    border-radius:50%;

    object-fit:cover;

    border:4px solid #F3F4F6;

}

.author-name{

    margin:0 0 14px;

    font-size:24px;

}

.author-description{

    margin-bottom:22px;

    font-size:16px;

    line-height:1.8;

    color:var(--light);

}

.author-link{

    display:inline-block;

    font-weight:700;

    color:var(--primary);

}

.author-link:hover{

    color:var(--primary-hover);

}

/* ==========================================
   CATEGORY
========================================== */

.category-list{

    margin:0;

    padding:0;

    list-style:none;

}

.category-list li{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:14px 0;

    border-bottom:1px solid #F1F5F9;

}

.category-list li:last-child{

    border-bottom:none;

}

.category-list a{

    color:var(--text);

    transition:.25s;

}

.category-list a:hover{

    color:var(--primary);

}

.category-list .count{

    color:var(--light);

    font-size:14px;

}

/* ==========================================
   LATEST POST
========================================== */

.latest-post-list{

    margin:0;

    padding:0;

    list-style:none;

}

.latest-post-list li{

    padding:16px 0;

    border-bottom:1px solid #F1F5F9;

}

.latest-post-list li:last-child{

    border-bottom:none;

    padding-bottom:0;

}

.latest-post-list a{

    display:block;

    color:var(--heading);

    font-size:17px;

    line-height:1.6;

    font-weight:600;

    transition:.25s;

}

.latest-post-list a:hover{

    color:var(--primary);

}

/* ==========================================
   SEARCH
========================================== */

.sidebar .search-form{

    width:100%;

}

.sidebar .search-field{

    width:100%;

}

/* ==========================================
   WIDGET SPACING
========================================== */

.sidebar-widget:last-child{

    margin-bottom:0;

}