/* ==========================================================
   WILAYAH DESA
========================================================== */

.stats-card .stats-card-header{
    margin-bottom:18px;
}

.stats-card .stats-card-header div{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:20px;
    font-weight:700;
    color:#8b5a00;
}

.stats-card .stats-card-header i{
    color:#8b5a00;
    font-size:22px;
}

/* =======================================
   LIST DATA
======================================= */

.stats-legend{
    display:flex;
    flex-direction:column;
    gap:0;
    flex:1;
}

.legend-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 0;
    border-bottom:1px solid #ececec;
}

.legend-item:last-child{
    border-bottom:none;
}

.legend-item span{
    display:flex;
    align-items:center;
    gap:10px;
    color:#555;
    font-size:15px;
    font-weight:500;
}

.legend-item span i{
    width:18px;
    text-align:center;
    color:#8b5a00;
}

.legend-item strong{
    color:#222;
    font-size:16px;
    font-weight:700;
    text-align:right;
}

/* =======================================
   RESPONSIVE
======================================= */

@media (max-width:992px){

    .legend-item{
        padding:10px 0;
    }

}

@media (max-width:768px){

    .legend-item{
        flex-direction:column;
        align-items:flex-start;
        gap:4px;
    }

    .legend-item strong{
        margin-left:28px;
    }

}