/* ======================================
   TRENDING SIDEBAR
====================================== */

.trending-widget{

    margin-bottom:30px;
}

.trending-list{

    display:flex;

    flex-direction:column;

    gap:15px;
}

.trending-item{

    display:flex;

    gap:12px;

    align-items:flex-start;
}

.trending-thumb{

    flex:0 0 95px;
}

.trending-thumb img{

    width:100%;

    height:95px;

    object-fit:cover;

    border-radius:4px;

    display:block;
}

.trending-content{

    flex:1;
}

.trending-rating{

    color:#7d7d7d;

    font-size:12px;

    letter-spacing:1px;

    margin-bottom:6px;
}

.trending-content h3{

    font-size:14px;

    line-height:1.35;

    font-weight:700;

    color:#222;

    display:-webkit-box;

    -webkit-line-clamp:3;

    -webkit-box-orient:vertical;

    overflow:hidden;
}

.trending-content h3:hover{

    color:#dc2626;
}