/* ==========================================================
   MULTIPRESS SIDEBAR
========================================================== */

.sidebar{
    width:100%;
}

.sidebar-inner{
    display:flex;
    flex-direction:column;
    gap:30px;
}

/* ==========================================================
   WIDGET
========================================================== */

.widget{
    background:#fff;
    border-radius:12px;
    padding:25px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
    border:1px solid #eef2f7;
}

.widget-title{
    font-size:20px;
    font-weight:700;
    color:#111827;
    margin:0 0 20px;
    padding-bottom:12px;
    border-bottom:3px solid #2563eb;
}

/* ==========================================================
   TRENDING
========================================================== */

.mp-sidebar-post{
    display:flex;
    align-items:center;
    gap:15px;
    padding:15px 0;
    border-bottom:1px solid #eceff3;
}

.mp-sidebar-post:last-child{
    border-bottom:none;
}

.mp-sidebar-post__number{
    width:34px;
    height:34px;
    min-width:34px;
    border-radius:50%;
    background:#dc2626;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:14px;
}

.mp-sidebar-post__image img{
    width:80px;
    height:80px;
    object-fit:cover;
    border-radius:8px;
}

.mp-sidebar-post__content h4{
    margin:0 0 8px;
    font-size:15px;
    line-height:1.5;
}

.mp-sidebar-post__content a{
    color:#111827;
    text-decoration:none;
}

.mp-sidebar-post__content a:hover{
    color:#dc2626;
}

.mp-sidebar-post__meta{
    font-size:13px;
    color:#6b7280;
}

/* ==========================================================
   SIMPLE LINKS
========================================================== */

.mp-sidebar-link{
    margin:12px 0;
    padding-bottom:12px;
    border-bottom:1px solid #eceff3;
}

.mp-sidebar-link:last-child{
    border-bottom:none;
}

.mp-sidebar-link a{
    color:#111827;
    text-decoration:none;
}

.mp-sidebar-link a:hover{
    color:#dc2626;
}

/* ==========================================================
   AD
========================================================== */

.mp-ad-placeholder{
    padding:50px 20px;
    border:2px dashed #d6dce5;
    text-align:center;
    border-radius:10px;
    font-weight:600;
    color:#6b7280;
    background:#fafafa;
}

/* ==========================================================
   NEWSLETTER
========================================================== */

.mp-newsletter{
    display:flex;
    flex-direction:column;
    gap:15px;
    margin-top:15px;
}

.mp-newsletter input{
    width:100%;
    padding:14px 16px;
    border:1px solid #d1d5db;
    border-radius:8px;
    font-size:15px;
}

.mp-newsletter input:focus{
    outline:none;
    border-color:#2563eb;
}

.mp-newsletter button{
    background:#2563eb;
    color:#fff;
    border:none;
    padding:14px;
    border-radius:8px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.mp-newsletter button:hover{
    background:#1d4ed8;
}

/* ==========================================================
   CATEGORIES
========================================================== */

.mp-sidebar-categories{
    list-style:none;
    margin:0;
    padding:0;
}

.mp-sidebar-categories li{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 0;
    border-bottom:1px solid #eceff3;
}

.mp-sidebar-categories li:last-child{
    border-bottom:none;
}

.mp-sidebar-categories a{
    color:#111827;
    text-decoration:none;
}

.mp-sidebar-categories a:hover{
    color:#dc2626;
}

/* ==========================================================
   SEARCH
========================================================== */

.widget_search input[type="search"]{
    width:100%;
    padding:14px;
    border:1px solid #d1d5db;
    border-radius:8px;
}

.widget_search input[type="submit"]{
    background:#111827;
    color:#fff;
    border:none;
    padding:14px 18px;
    border-radius:8px;
    cursor:pointer;
    margin-top:10px;
}

.widget_search input[type="submit"]:hover{
    background:#dc2626;
}

/* ==========================================================
   MOBILE
========================================================== */

@media(max-width:991px){

.widget{
    padding:20px;
}

.mp-sidebar-post{
    align-items:flex-start;
}

.mp-sidebar-post__image img{
    width:70px;
    height:70px;
}

}
