.wplm-locations ul {
       display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px;
    padding: 0;
    margin: 0;
}

.wplm-locations ul li {
    list-style: none;
    background: #f3f3f3;
    padding: 20px 15px;
    border-radius: 12px;
    transition: all .4s linear;
    -webkit-transition: all .4s linear;
    -moz-transition: all .4s linear;
    -ms-transition: all .4s linear;
    -o-transition: all .4s linear;
}

.wplm-locations li h4 {
    font-size: 18px;
    font-weight: 600;
    display: flex;
    gap: 6px;
    margin: 0;
    margin-bottom: 10px;
}

.wplm-locations li h4 svg {
    margin-top: -3px;
}

.wplm-locations li p {
    margin: 0;
    padding-left: 30px;
    font-size: 15px;
    font-weight:500;
}

.wplm-locations ul li:hover {
    background: var( --e-global-color-primary );
    transition: all .4s linear;
    -webkit-transition: all .4s linear;
    -moz-transition: all .4s linear;
    -ms-transition: all .4s linear;
    -o-transition: all .4s linear;
   
}

.wplm-locations ul li:hover svg,
.wplm-locations ul li:hover svg path
 {
   fill: #fff;
}
.wplm-locations ul li:hover h4, 
.wplm-locations ul li:hover p
{
    color: #fff;
}


.elementor-shortcode .page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color:  var( --e-global-color-primary );
    border-color:  var( --e-global-color-primary );
    outline: 0;
    box-shadow: none;
}
.elementor-shortcode  .pagination  .page-link:hover
{
     color:  var( --e-global-color-primary );
}
.elementor-shortcode  .pagination  .page-link {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #000;
    background-color: #fff;
    border: 1px solid #dee2e6;
    outline: 0;
    box-shadow: none;
}

.mb-30
{
	margin-bottom:30px
}
#wplm-map
{
	height: 500px;
	width: 100%; 
}


form#wplm-zip-form {
    width: 100%;
    background: #090e4d;
    padding: 10px;
    display: flex;
}

#wplm-zip-form input {
    width: calc(100% - 130px);
	padding-left:20px;
	outline:0 !important;
	border:0  !important;
	box-shadow:none !important;
	border-radius:50px;
	border-top-right-radius: 0;
    border-bottom-right-radius: 0;
	
}

#wplm-zip-form button {
    width: 130px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    text-transform: uppercase;
    font-weight: 700;
	outline:0 !important;
	box-shadow:none !important
}


@media (max-width: 1024px) {
    .wplm-locations ul {
        grid-template-columns: repeat(2, 1fr); /* 2 per row on tablet */
    }
}

@media (max-width: 600px) {
    .wplm-locations ul {
        grid-template-columns: 1fr; /* 1 per row on mobile */
    }
	#wplm-zip-form input {
    width: calc(100% - 80px);
	
}

#wplm-zip-form button {
    width:80px;
	padding:10px;
}
}