div.site-content {
    padding-top: 100px;
}

div.lps-map-search-wrap {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
}

form.lps-filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 20px;
    padding: 20px 40px;
    background: #f7f7f7;
    border-bottom: 1px solid #e0e0e0;
    box-sizing: border-box;
}

div.lps-filter-field {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
}

div.lps-filter-field label {
    margin-bottom: 4px;
    font-weight: 500;
    color: #333;
    font-family: "Jost", sans-serif;
    font-size: 0.85rem;
    text-transform: lowercase;
}

div.lps-filter-field input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 0px;
    min-width: 200px;
    font-family: "Jost", sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    width: 100%;
    height: 45px;
    margin-top: 0;
}

div.lps-filter-submit {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

div.lps-filter-submit button {
    padding: 5px 30px;
    background-color: #6cc24a !important;
    color: #fff !important;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Jost", sans-serif;
    font-size: 1.125rem;
    min-height: 45px;
}

div.lps-filter-submit button:hover {
    background-color: #6ca83b !important;
}

.lps-filter-clear {
    color: #888;
    text-decoration: underline;
    font-size: 0.85rem;
}

div.lps-map-list-split {
    display: flex;
    width: 100%;
    align-items: stretch;
}

div.lps-map-pane {
    width: 50%;
    height: 800px;
    position: sticky;
    top: 0;
    background: #eee;
}

.lps-map-missing-key {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #666;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

div.lps-list-pane {
    width: 50%;
    height: 800px;
    overflow-y: auto;
    padding: 20px 40px;
    box-sizing: border-box;
}

div.lps-list-pane div.property-grid-container {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    padding: 0;

    div.property-card {
        border-radius: 8px;

        div.property-details {
            padding: 0;

            img.property-image {}

            h3 {
                margin: 10px 15px 5px 15px;
                font-size: 0.85rem;
                font-family: "Jost", sans-serif;

                a {
                    color: #010101;
                }
            }

            p.price {
                font-family: "Jost", sans-serif;
                color: #6cc24a;
                font-size: 0.85rem;
                font-weight: bold;
                margin: 10px 15px 8px 15px;
            }

            p.location {
                font-family: "Jost", sans-serif;
                font-size: 0.75rem;
                margin: 0px 15px 5px 15px;
                height: 20px;
                line-height: 20px;

                span.dashicons {
                    font-size: 12px;
                    margin-right: 0;
                    display: inline-flex;
                    justify-content: center;
                    align-items: center;
                }
            }
        }
    }
}

.lps-no-results {
    padding: 40px;
    text-align: center;
    color: #888;
}

@media (max-width: 900px) {
    div.lps-map-list-split {
        flex-direction: column;
    }

    div.lps-map-pane,
    div.lps-list-pane {
        width: 100%;
        height: 500px;
    }

    div.lps-filter-bar {
        padding: 16px 20px;
    }
}