/* ================================================================
   FEF MAPS WIDGET
   ================================================================ */
.fef-map-wrap{display:flex;width:100%;overflow:hidden;border-radius:8px}
.fef-map-split_left{flex-direction:row}
.fef-map-split_right{flex-direction:row-reverse}
.fef-map-map_top{flex-direction:column-reverse}
.fef-map-map_only{flex-direction:column}
.fef-map-container{flex:0 0 var(--map-w,60%);height:var(--map-h,500px);min-height:300px}
.fef-map-map_only .fef-map-container{flex:1;width:100%}
.fef-map-map_top .fef-map-container{flex:none;width:100%}

/* List panel */
.fef-map-list{flex:0 0 var(--list-w,40%);height:var(--map-h,500px);overflow-y:auto;background:#fff;border:1px solid #e0e0e0}
.fef-map-split_left .fef-map-list{border-right:none;border-radius:8px 0 0 8px}
.fef-map-split_right .fef-map-list{border-left:none;border-radius:0 8px 8px 0}
.fef-map-map_top .fef-map-list{height:auto;max-height:400px;width:100%;border-radius:0 0 8px 8px;border-top:none}
.fef-map-list-header{padding:10px 12px;font-size:13px;font-weight:600;color:#555;border-bottom:1px solid #eee;background:#fafafa;position:sticky;top:0;z-index:1}
.fef-map-list-count{color:#2e7d32;font-size:16px}
.fef-map-list-items{display:flex;flex-direction:column}
.fef-map-list-item{display:flex;gap:10px;padding:10px 12px;border-bottom:1px solid #f0f0f0;cursor:pointer;transition:background .15s}
.fef-map-list-item:hover,.fef-map-list-item.active{background:#f5f5f5}
.fef-map-list-thumb{width:60px;height:60px;border-radius:6px;background-size:cover;background-position:center;flex-shrink:0}
.fef-map-list-content{flex:1;min-width:0}
.fef-map-list-title{font-weight:600;font-size:14px;color:#333;text-decoration:none;display:block;line-height:1.3}
.fef-map-list-title:hover{color:#1565c0}
.fef-map-list-text{font-size:12px;color:#777;margin-top:3px;line-height:1.4}
.fef-map-list-text i{margin-right:4px;color:#999;font-size:11px}

/* Info window */
.fef-map-iw{padding:0;font-family:inherit}
.fef-map-iw-img{width:100%;height:120px;object-fit:cover;border-radius:6px 6px 0 0}
.fef-map-iw-body{padding:10px 12px}
.fef-map-iw-title{font-weight:700;font-size:14px;color:#333;margin-bottom:4px}
.fef-map-iw-text{font-size:12px;color:#666;margin-bottom:3px;line-height:1.4}
.fef-map-iw-text i{margin-right:4px;color:#999}
.fef-map-iw-metas{display:flex;flex-wrap:wrap;gap:4px;margin-top:4px}
.fef-map-iw-meta{font-size:11px;background:#f5f5f5;padding:2px 6px;border-radius:3px;color:#777}
.fef-map-iw-link{display:inline-block;margin-top:8px;font-size:13px;color:#1565c0;text-decoration:none;font-weight:500}
.fef-map-iw-link:hover{text-decoration:underline}

/* Responsive */
@media(max-width:767px){.fef-map-split_left,.fef-map-split_right{flex-direction:column-reverse}.fef-map-list{flex:none;width:100%!important;height:auto;max-height:300px;border-radius:0 0 8px 8px}.fef-map-container{flex:none;width:100%!important;border-radius:8px 8px 0 0}}