.lqw-nearby-dashboard{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

}

.lqw-nearby-card{

    background:#FFF;

    border:1px solid #E5E7EB;

    border-radius:10px;

    padding:18px;

}

/*
==========================================================
LQW Nearby Explorer v2.0
==========================================================
*/

/*==========================================================
SECTION
==========================================================*/

.lqw-nearby-section{

    margin:60px 0 90px;
	
	margin-bottom:90px;

}

.lqw-nearby-header{

    margin-bottom:25px;

}

.lqw-nearby-header h2{

    margin:0;

    color:#0055A4;

    font-size:30px;

    font-weight:700;

}

.lqw-nearby-header p{

    margin:10px 0 0;

    color:#666;

    line-height:1.6;

}

/*==========================================================
MAP WRAPPER
==========================================================*/

.lqw-nearby-map-wrapper{

    margin-bottom:28px;

}

.lqw-nearby-map-column{

    width:100%;

}

/*==========================================================
MAP
==========================================================*/

#lqw-nearby-map{

    width:100%;

    height:460px;

    border-radius:16px;

    overflow:hidden;

    border:1px solid #E5E7EB;

    box-shadow:0 10px 28px rgba(0,0,0,.08);

}

/*==========================================================
RIGHT PANEL
==========================================================*/

.lqw-nearby-dashboard{

    display:grid;

    grid-template-columns:repeat(3,minmax(0,1fr));

    gap:18px;

}

/*==========================================================
CATEGORY CARD
==========================================================*/
.lqw-nearby-card{

    position:relative;

    background:#FFFFFF;

    border:1px solid #E5E7EB;

    border-radius:14px;

    padding:18px;

    box-shadow:0 2px 10px rgba(0,0,0,.05);

    transition:all .25s ease;

    overflow:hidden;

}

.lqw-nearby-card:hover{

    transform:translateY(-3px);

    box-shadow:0 10px 24px rgba(0,0,0,.10);

}

.lqw-nearby-card h4{

    margin:0 0 12px;

    font-size:16px;

    font-weight:700;

    color:#1F2937;

    letter-spacing:.2px;

}

/*==========================================================
CATEGORY COLORS
==========================================================*/

.lqw-nearby-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:#0055A4;

}

/* Education */

.lqw-nearby-card:nth-child(1)::before{

    background:#1976D2;

}

/* Healthcare */

.lqw-nearby-card:nth-child(2)::before{

    background:#D32F2F;

}

/* Government */

.lqw-nearby-card:nth-child(3)::before{

    background:#2E7D32;

}

/* Shopping */

.lqw-nearby-card:nth-child(4)::before{

    background:#F9A825;

}

/* Lifestyle */

.lqw-nearby-card:nth-child(5)::before{

    background:#7B1FA2;

}

/* Transport */

.lqw-nearby-card:nth-child(6)::before{

    background:#616161;

}

/*==========================================================
FACILITY
==========================================================*/

.facility-item{

    padding:6px 0;

    border-bottom:1px dashed #EFEFEF;

}

.facility-item:last-child{

    border-bottom:none;

}

.facility-name{

    font-size:13px;

    font-weight:600;

    line-height:1.2;

    margin-bottom:2px;

}
.facility-distance{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:10px;

    margin-top:3px;

    font-size:11px;

    color:#6B7280;

}

.facility-meta{

    display:flex;

    align-items:center;

    gap:4px;

    white-space:nowrap;

}

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

@media(max-width:1024px){

    .lqw-nearby-layout{

        grid-template-columns:1fr;

    }

    #lqw-nearby-map{

        height:320px;

    }

    .lqw-nearby-dashboard{

        grid-template-columns:repeat(2,1fr);

        height:auto;

    }

}

@media(max-width:768px){

    .lqw-nearby-dashboard{

        grid-template-columns:1fr;

    }

    #lqw-nearby-map{

        height:260px;

    }

}

/*==========================================================
LQW PREMIUM MAP PIN
==========================================================*/

.lqw-marker{

    position:relative;

    width:34px;
    height:34px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50% 50% 50% 0;

    transform:rotate(-45deg);

    border:3px solid #FFF;

    box-shadow:0 5px 16px rgba(0,0,0,.30);

    transition:.25s ease;

}

.lqw-marker:hover{

    transform:rotate(-45deg) scale(1.12);

}

.lqw-marker span{

    transform:rotate(45deg);

    font-size:20px;

    line-height:1;

}

.lqw-marker:hover{

    transform:scale(1.15);

}

/*-----------------------------------
Education
-----------------------------------*/

.marker-education{

    background:#1976D2;

}

/*-----------------------------------
Healthcare
-----------------------------------*/

.marker-healthcare{

    background:#D32F2F;

}

/*-----------------------------------
Government
-----------------------------------*/

.marker-government{

    background:#2E7D32;

}

/*-----------------------------------
Shopping
-----------------------------------*/

.marker-shopping{

    background:#F9A825;

}

/*-----------------------------------
Lifestyle
-----------------------------------*/

.marker-lifestyle{

    background:#7B1FA2;

}

/*-----------------------------------
Transport
-----------------------------------*/

.marker-transport{

    background:#616161;

}

