.klo-entity-card,
.klo-entity-card * {
    font-family: "Inter Tight", sans-serif !important;
}

.klo-entity-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #d9e0e6;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(20, 38, 55, 0.08);
}

/* Grid */

.klo-entity-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

/* Image */

.klo-entity-card__image {
    position: relative;
    overflow: hidden;
    background: #eef2f5;
    border-radius: 12px 12px 0 0 !important;
}

.klo-entity-card__image-link {
    display: block;
    border-radius: 12px 12px 0 0 !important;
}

.klo-entity-card__image-link picture {
    display: block;
}

.klo-entity-card__image-file {
    display: block;
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 12px 12px 0 0 !important;
    transition: transform 0.25s ease;
}
.klo-entity-card .klo-entity-card__image-link {
    overflow: hidden;
}
.klo-entity-card__image-link:hover .klo-entity-card__image-file {
    transform: scale(1.025);
}

.klo-entity-card__image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    padding: 2rem;
    color: #687681;
    text-align: center;
}

/* Special */

.klo-entity-card__special {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 0.4rem 0.75rem;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: #5a7158;
    border-radius: 999px;
    cursor: help;
}

.klo-entity-card__special::after {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 10;
    width: max-content;
    max-width: 260px;
    padding: 0.6rem 0.75rem;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: normal;
    text-transform: none;
    white-space: normal;
    pointer-events: none;
    content: attr(data-tooltip);
    background: #173c2b;
    border-radius: 6px;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(-3px);
    transition:
        opacity 0.15s ease,
        transform 0.15s ease;
}

.klo-entity-card__special:hover::after,
.klo-entity-card__special:focus::after {
    opacity: 1;
    transform: translateY(0);
}

/* Planner heart */

.klo-entity-card__planner {
    position: absolute !important;
    top: 3px !important;
    right: 3px !important;
    z-index: 2;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 48px !important;
    height: 48px !important;
    padding: 0 !important;
    color: #d62839 !important;
    line-height: 1 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    text-shadow: none !important;
    cursor: pointer;
}

.klo-entity-card__planner:hover,
.klo-entity-card__planner:focus {
    color: #b91c2d !important;
    background: transparent !important;
    transform: scale(1.08);
}

.klo-entity-card__heart-icon {
    width: 31px;
    height: 31px;
    overflow: visible;
    fill: none;
    stroke: #d62839;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter:
        drop-shadow(0 1px 1px rgba(0, 0, 0, 0.35))
        drop-shadow(0 0 2px rgba(255, 255, 255, 0.9));
}

/* Content */

.klo-entity-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.4rem;
}

.klo-entity-card__top-bullet {
    margin-bottom: 0.55rem;
    color: #4f6e88;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.4;
}

.klo-entity-card__title {
    margin: 0 !important;
    font-size: 1.27rem !important;
    line-height: 1.2 !important;
}

.klo-entity-card__title a {
    color: #163f5f;
    text-decoration: none !important;
}

.klo-entity-card__title a:hover,
.klo-entity-card__title a:focus {
    color: #2d6c89 !important;
    text-decoration: none !important;
}

.klo-entity-card__location {
    display: flex;
    gap: 0.35rem;
    align-items: center;
    margin-top: 0.4rem;
    color: #65727c;
    font-size: 0.92rem;
}

.klo-entity-card__location-icon {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
    fill: #65727c;
}

.klo-entity-card__summary {
    display: block;
    margin-top: 1rem;
    overflow: hidden;
    color: #394750;
    font-size: 0.98rem;
    line-height: 1.6;
}

.klo-entity-card__summary-link {
    display: inline-flex;
    margin-left: 0.2rem;
    color: #163f5f !important;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none !important;
}

.klo-entity-card__summary-link:hover,
.klo-entity-card__summary-link:focus {
    color: #2d6c89 !important;
    transform: translateX(2px);
}

.klo-entity-card__bullets {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem 1rem;
    margin: 1.15rem 0 0;
    padding: 0;
    list-style: none;
}

.klo-entity-card__bullets li {
    display: flex;
    gap: 0.45rem;
    align-items: flex-start;
    color: #35434c;
    font-size: 0.9rem;
    line-height: 1.35;
}

.klo-entity-card__bullets span {
    flex: 0 0 auto;
    color: #4f6e88;
    font-weight: 700;
}

/* Actions */

.klo-entity-card__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1.35rem;
}

/* Strong selectors are intentional to override Elementor button styles. */

.klo-entity-card .klo-entity-card__button,
.klo-entity-card a.klo-entity-card__button,
.klo-entity-card button.klo-entity-card__button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 46px !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: normal !important;
    text-decoration: none !important;
    text-transform: none !important;
    text-shadow: none !important;
    border-radius: 7px !important;
    box-shadow: none !important;
    cursor: pointer;
}

.klo-entity-card a.klo-entity-card__button--primary {
    color: #ffffff !important;
    background: #163f5f !important;
    border: 1px solid #163f5f !important;
}

.klo-entity-card a.klo-entity-card__button--primary:hover,
.klo-entity-card a.klo-entity-card__button--primary:focus {
    color: #ffffff !important;
    background: #0f314b !important;
    border-color: #0f314b !important;
}

.klo-entity-card button.klo-entity-card__button--map {
    color: #163f5f !important;
    background: #ffffff !important;
    border: 1px solid #163f5f !important;
}

.klo-entity-card button.klo-entity-card__button--map:hover,
.klo-entity-card button.klo-entity-card__button--map:focus {
    color: #163f5f !important;
    background: #edf3f7 !important;
    border-color: #163f5f !important;
}

/* Responsive */

@media (max-width: 900px) {
    .klo-entity-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .klo-entity-card__image-file,
    .klo-entity-card__image-placeholder {
        height: 220px;
        min-height: 220px;
    }

    .klo-entity-card__bullets {
        grid-template-columns: 1fr;
    }
}
/*
|--------------------------------------------------------------------------
| Entity Browser
|--------------------------------------------------------------------------
*/

.klo-entity-browser {
    width: 100%;
    margin-top: 1.75rem;
}

.klo-entity-browser__toolbar {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 3.25rem;
    padding: 1rem 1.125rem;
    background: #ffffff;
    border: 1px solid #d9e0e6;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(20, 38, 55, 0.06);
}

.klo-entity-browser__filters {
    flex: 1;
    min-width: 0;
}

.klo-entity-browser__result-count {
    flex: 0 0 auto;
    white-space: nowrap;
}

.klo-entity-browser__layout {
    display: grid;
    grid-template-columns:
        minmax(0, 50fr)
        minmax(0, 45fr);
    column-gap: 5%;
    align-items: start;
    width: 100%;
}

.klo-entity-browser__results,
.klo-entity-browser__map-column {
    min-width: 0;
}
.klo-entity-browser__results {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.klo-entity-browser__results .klo-entity-card {
    width: 100%;
    height: auto;
}

.klo-entity-browser__empty {
    margin: 0;
    padding: 1.5rem;
    background: #ffffff;
    border: 1px solid #d9e0e6;
    border-radius: 12px;
}

.klo-entity-browser__map-column {
    align-self: stretch;
}

.klo-entity-browser__map-sticky {
    position: sticky;
    top: 100px;
    height: calc(100vh - 130px);
    min-height: 560px;
}

.klo-entity-browser__map-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    background: #eef2f5;
    border: 1px dashed #8da2b2;
    border-radius: 12px;
    text-align: center;
}

@media (max-width: 767px) {

    .klo-entity-browser__toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .klo-entity-browser__layout {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 1.5rem;
    }

    .klo-entity-browser__map-sticky {
        position: static;
        height: 70vh;
        min-height: 450px;
    }
}
/*
|--------------------------------------------------------------------------
| Entity Browser Map
|--------------------------------------------------------------------------
*/

.klo-entity-browser__map-sticky .klo-location-map {
    width: 100%;
    height: 100% !important;
    aspect-ratio: auto;
    margin-bottom: 0;
    border-radius: 12px;
}

.klo-entity-browser__map {
    min-height: 100%;
}
.klo-entity-browser,
.klo-entity-browser__layout,
.klo-entity-browser__map-column {
    overflow: visible;
}

.klo-entity-browser__map-column {
    align-self: stretch;
}

.klo-entity-browser__map-sticky {
    position: sticky;
    top: 100px;
    height: calc(100vh - 130px);
}
/*
|--------------------------------------------------------------------------
| Entity Browser Filters
|--------------------------------------------------------------------------
*/

.klo-entity-browser__toolbar {
    flex-wrap: nowrap;
}

.klo-entity-browser__filters {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    gap: 0.625rem;
    align-items: center;
    min-width: 0;
}

.klo-entity-filter {
    position: relative;
}

.klo-entity-filter__summary {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    min-height: 42px;
    padding: 0.625rem 0.875rem;

    color: #173f5f;
    background: #ffffff;
    border: 1px solid #b9c6d1;
    border-radius: 7px;

    font-family: "Inter Tight", sans-serif !important;
    font-weight: 600;

    text-shadow: none !important;
    list-style: none;
    cursor: pointer;
}

.klo-entity-filter__summary:hover,
.klo-entity-filter__summary:focus,
.klo-entity-filter__summary:focus-visible,
.klo-entity-filter__summary:active,
.klo-entity-filter__summary:hover *,
.klo-entity-filter__summary:focus *,
.klo-entity-filter__summary:active * {
    text-shadow: none !important;
}

.klo-entity-filter__summary::-webkit-details-marker {
    display: none;
}

.klo-entity-filter__chevron {
    width: 16px;
    height: 16px;

    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.75;

    transition: transform 160ms ease;
}

.klo-entity-filter[open] .klo-entity-filter__chevron {
    transform: rotate(180deg);
}
.klo-entity-filter__count {
    font-weight: 700;
}.klo-entity-filter__panel {
    position: absolute;
    z-index: 20;
    top: calc(100% + 0.5rem);
    left: 0;
    max-height: 360px;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
    width: max-content;
    min-width: 230px;
    max-width: 320px;
    padding: 0.75rem;

    background: #ffffff;
    border: 1px solid #d5dde5;
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(20, 38, 55, 0.15);

    font-family: "Inter Tight", sans-serif !important;
    text-shadow: none !important;
}

.klo-entity-filter__option {
    display: flex;
    gap: 0.625rem;
    align-items: flex-start;
    padding: 0.5rem;

    border-radius: 5px;

    font-family: "Inter Tight", sans-serif !important;
    text-shadow: none !important;

cursor: pointer;}

.klo-entity-filter__option input {
    width: 17px;
    height: 17px;
    margin: 0.1rem 0 0;
}

.klo-entity-filter__option span {
    line-height: 1.35;
    font-family: "Inter Tight", sans-serif !important;
    text-shadow: none !important;
}
.klo-entity-filter__panel {
    scrollbar-width: thin;
    scrollbar-color: #b9c6d1 transparent;
}

.klo-entity-filter__panel::-webkit-scrollbar {
    width: 8px;
}

.klo-entity-filter__panel::-webkit-scrollbar-track {
    background: transparent;
}

.klo-entity-filter__panel::-webkit-scrollbar-thumb {
    background: #b9c6d1;
    border-radius: 999px;
}
/*
|--------------------------------------------------------------------------
| Apply and Clear Controls
|--------------------------------------------------------------------------
*/

/*
 * Strong selectors are intentional.
 * They override Elementor's global button and link styles.
 */

.klo-entity-browser
.klo-entity-browser__toolbar
button.klo-entity-browser__apply,
.klo-entity-browser
.klo-entity-browser__toolbar
button.klo-entity-browser__apply:hover,
.klo-entity-browser
.klo-entity-browser__toolbar
button.klo-entity-browser__apply:focus,
.klo-entity-browser
.klo-entity-browser__toolbar
button.klo-entity-browser__apply:focus-visible,
.klo-entity-browser
.klo-entity-browser__toolbar
button.klo-entity-browser__apply:active {
    appearance: none !important;
    -webkit-appearance: none !important;

    display: inline-flex !important;
    flex: 0 0 84px !important;
    align-items: center !important;
    justify-content: center !important;

    box-sizing: border-box !important;
    width: 84px !important;
    min-width: 84px !important;
    max-width: 84px !important;
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;

    margin: 0 !important;
    padding: 0 1rem !important;

    color: #ffffff !important;
    background: #173f5f !important;
    background-color: #173f5f !important;
    background-image: none !important;

    border: 1px solid #173f5f !important;
    border-radius: 7px !important;
    box-shadow: none !important;
    outline-offset: 2px;

    font-family: "Inter Tight", sans-serif !important;
    font-size: 0.875rem !important;
    font-style: normal !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: normal !important;
    text-transform: none !important;

    text-decoration: none !important;
    text-shadow: none !important;
    white-space: nowrap !important;

    cursor: pointer !important;

    transform: none !important;
    translate: none !important;
    scale: 1 !important;

    transition:
        color 150ms ease,
        background-color 150ms ease,
        border-color 150ms ease !important;
}

.klo-entity-browser
.klo-entity-browser__toolbar
button.klo-entity-browser__apply:hover,
.klo-entity-browser
.klo-entity-browser__toolbar
button.klo-entity-browser__apply:focus-visible,
.klo-entity-browser
.klo-entity-browser__toolbar
button.klo-entity-browser__apply:active {
    color: #173f5f !important;
    background: #ffffff !important;
    background-color: #ffffff !important;
    border-color: #173f5f !important;

    width: 84px !important;
    height: 42px !important;
    padding: 0 1rem !important;

    font-size: 0.875rem !important;
    line-height: 1 !important;

    transform: none !important;
    translate: none !important;
    scale: 1 !important;
}
.klo-entity-browser
.klo-entity-browser__toolbar
button.klo-entity-browser__apply:disabled,
.klo-entity-browser
.klo-entity-browser__toolbar
button.klo-entity-browser__apply:disabled:hover,
.klo-entity-browser
.klo-entity-browser__toolbar
button.klo-entity-browser__apply:disabled:focus,
.klo-entity-browser
.klo-entity-browser__toolbar
button.klo-entity-browser__apply:disabled:active {
    color: #8a98a5 !important;
    background: #ffffff !important;
    background-color: #ffffff !important;
    border-color: #cfd8df !important;

    cursor: default !important;
    opacity: 1 !important;
    pointer-events: none;

    transform: none !important;
    translate: none !important;
    scale: 1 !important;
}
/*
|--------------------------------------------------------------------------
| Active Clear Link
|--------------------------------------------------------------------------
*/

.klo-entity-browser
.klo-entity-browser__toolbar
a.klo-entity-browser__clear,
.klo-entity-browser
.klo-entity-browser__toolbar
a.klo-entity-browser__clear:hover,
.klo-entity-browser
.klo-entity-browser__toolbar
a.klo-entity-browser__clear:focus,
.klo-entity-browser
.klo-entity-browser__toolbar
a.klo-entity-browser__clear:focus-visible,
.klo-entity-browser
.klo-entity-browser__toolbar
a.klo-entity-browser__clear:active {
    display: inline-flex !important;
    flex: 0 0 84px !important;
    align-items: center !important;
    justify-content: center !important;

    box-sizing: border-box !important;
    width: 84px !important;
    min-width: 84px !important;
    max-width: 84px !important;
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;

    margin: 0 !important;
    padding: 0 1rem !important;

    color: #173f5f !important;
    background: #ffffff !important;
    border: 1px solid #173f5f !important;
    border-radius: 7px !important;
    box-shadow: none !important;

    font-family: "Inter Tight", sans-serif !important;
    font-size: 0.875rem !important;
    font-style: normal !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: normal !important;
    text-transform: none !important;

    text-decoration: none !important;
    text-shadow: none !important;
    white-space: nowrap !important;

    cursor: pointer !important;

    transform: none !important;
    translate: none !important;
    scale: 1 !important;

    transition:
        color 150ms ease,
        background-color 150ms ease,
        border-color 150ms ease !important;
}

.klo-entity-browser
.klo-entity-browser__toolbar
a.klo-entity-browser__clear:hover,
.klo-entity-browser
.klo-entity-browser__toolbar
a.klo-entity-browser__clear:focus-visible,
.klo-entity-browser
.klo-entity-browser__toolbar
a.klo-entity-browser__clear:active {
    color: #ffffff !important;
    background: #173f5f !important;
    border-color: #173f5f !important;
}

/*
|--------------------------------------------------------------------------
| Disabled Clear Placeholder
|--------------------------------------------------------------------------
*/

.klo-entity-browser
.klo-entity-browser__toolbar
span.klo-entity-browser__clear--disabled {
    display: inline-flex !important;
    flex: 0 0 84px !important;
    align-items: center !important;
    justify-content: center !important;

    box-sizing: border-box !important;
    width: 84px !important;
    min-width: 84px !important;
    max-width: 84px !important;
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;

    margin: 0 !important;
    padding: 0 1rem !important;

    color: #8a98a5 !important;
    background: #ffffff !important;
    border: 1px solid #cfd8df !important;
    border-radius: 7px !important;
    box-shadow: none !important;

    font-family: "Inter Tight", sans-serif !important;
    font-size: 0.875rem !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: normal !important;
    text-transform: none !important;

    text-decoration: none !important;
    text-shadow: none !important;
    white-space: nowrap !important;

    cursor: default !important;
    pointer-events: none;

    transform: none !important;
    translate: none !important;
    scale: 1 !important;
}
/*
|--------------------------------------------------------------------------
| Sort and Result Count
|--------------------------------------------------------------------------
*/



.klo-entity-browser__result-count {
    min-width: 5.5rem;

    font-family: "Inter Tight", sans-serif !important;
    text-align: right;
    text-shadow: none !important;
}

/*
|--------------------------------------------------------------------------
| Mobile
|--------------------------------------------------------------------------
*/

@media (max-width: 767px) {

    .klo-entity-browser__toolbar {
        flex-wrap: wrap;
    }

    .klo-entity-browser__filters {
        position: relative;
        width: 100%;
    }

    /*
     * Keep each <details> static so the open panel can span the full
     * mobile filter row, but give the filters wrapper positioning context.
     * Without this, the absolutely positioned amenities panel anchors to
     * the page/viewport and appears off-screen on mobile.
     */
    .klo-entity-filter {
        position: static;
    }

    .klo-entity-filter__panel {
        top: calc(100% + 0.5rem);
        right: 0;
        left: 0;
        width: auto;
        max-width: none;
        z-index: 50;
    }

    .klo-entity-browser__sort,
    .klo-entity-browser__sort select {
        width: 100%;
    }

    .klo-entity-browser__result-count {
        width: 100%;
        text-align: left;
    }
}
/*
|--------------------------------------------------------------------------
| Active Map Card
|--------------------------------------------------------------------------
*/

.klo-entity-browser .klo-entity-card {
    transition:
        border-color 160ms ease,
        box-shadow 160ms ease;
}

.klo-entity-browser .klo-entity-card--map-active {
    border-color: #4f6e88;
    box-shadow:
        0 0 0 2px rgba(79, 110, 136, 0.18),
        0 8px 22px rgba(20, 38, 55, 0.12);
}
.klo-map-marker {
    width: 30px;
    height: 30px;

    background: #5a7158;
    border: 4px solid #ffffff;

    box-shadow:
        0 0 0 1px rgba(20, 38, 55, 0.35),
        0 3px 9px rgba(20, 38, 55, 0.42);
}

.klo-map-marker::after {
    top: 22px;

    background: #5a7158;
    border-right: 4px solid #ffffff;
    border-bottom: 4px solid #ffffff;
}

.klo-map-marker--active {
    background: #3f5f43;

    box-shadow:
        0 0 0 6px rgba(90, 113, 88, 0.28),
        0 0 0 7px rgba(255, 255, 255, 0.9),
        0 5px 14px rgba(20, 38, 55, 0.45);

    transform: scale(1.3);
}

.klo-map-marker--active::after {
    background: #3f5f43;
}
/*
|--------------------------------------------------------------------------
| Mobile Map Controls
|--------------------------------------------------------------------------
*/

.klo-entity-browser__mobile-map-open,
.klo-entity-browser__mobile-map-header {
    display: none;
}

@media (max-width: 767px) {

    .klo-entity-browser__mobile-map-open {
        appearance: none !important;
        -webkit-appearance: none !important;

        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        width: 100% !important;
        min-height: 44px !important;
        margin: 0 !important;
        padding: 0.75rem 1rem !important;

        color: #ffffff !important;
        background: #173f5f !important;
        border: 1px solid #173f5f !important;
        border-radius: 7px !important;

        font-family: "Inter Tight", sans-serif !important;
        font-size: 0.95rem !important;
        font-weight: 700 !important;
        line-height: 1 !important;
        text-transform: none !important;
        text-shadow: none !important;

        cursor: pointer !important;
    }

    .klo-entity-browser__map-column {
        position: fixed;
        z-index: 99999;
        inset: 0;

        display: none;
        width: 100%;
        height: 100dvh;

        padding: 0;
        background: #ffffff;
    }

    .klo-entity-browser--map-open
    .klo-entity-browser__map-column {
        display: flex;
        flex-direction: column;
    }

    .klo-entity-browser__mobile-map-header {
        display: flex;
        flex: 0 0 auto;
        align-items: center;
        justify-content: space-between;

        min-height: 58px;
        padding: 0.75rem 1rem;

        background: #ffffff;
        border-bottom: 1px solid #d9e0e6;

        font-family: "Inter Tight", sans-serif !important;
    }

    .klo-entity-browser__mobile-map-close {
        appearance: none !important;
        -webkit-appearance: none !important;

        min-height: 38px !important;
        margin: 0 !important;
        padding: 0.5rem 0.875rem !important;

        color: #173f5f !important;
        background: #ffffff !important;
        border: 1px solid #173f5f !important;
        border-radius: 7px !important;

        font-family: "Inter Tight", sans-serif !important;
        font-size: 0.875rem !important;
        font-weight: 700 !important;
        line-height: 1 !important;
        text-transform: none !important;
        text-shadow: none !important;

        cursor: pointer !important;
    }

    .klo-entity-browser__map-sticky {
        position: static;
        flex: 1 1 auto;

        width: 100%;
        height: auto;
        min-height: 0;
    }

    .klo-entity-browser__map-sticky .klo-location-map {
        border-radius: 0;
    }

    body.klo-mobile-map-open {
        overflow: hidden;
    }
}
/*
|--------------------------------------------------------------------------
| Infinite Scroll Trigger
|--------------------------------------------------------------------------
*/

.klo-entity-browser__load-trigger {
    width: 100%;
    height: 1px;
    margin-top: 1rem;
}
/*
|--------------------------------------------------------------------------
| Hide Mobile Map Button on Desktop
|--------------------------------------------------------------------------
*/

.klo-entity-browser
button.klo-entity-browser__mobile-map-open {
    display: none !important;
}

@media (max-width: 767px) {

    .klo-entity-browser
    button.klo-entity-browser__mobile-map-open {
        display: inline-flex !important;
    }
}
/*
|--------------------------------------------------------------------------
| Space Below Entity Browser
|--------------------------------------------------------------------------
*/

.klo-entity-browser {
    margin-bottom: 2.5rem;
}

@media (max-width: 767px) {
    .klo-entity-browser {
        margin-bottom: 1.5rem;
    }
}

/* =======================================================
   STANDALONE ENTITY LIST MAP MODAL
   ======================================================= */

body.klo-entity-list-map-modal-open {
    overflow: hidden;
}

.klo-entity-list-map-modal {
    position: fixed;
    z-index: 999999;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.klo-entity-list-map-modal.is-open {
    display: flex;
}

.klo-entity-list-map-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 35, 50, 0.72);
}

.klo-entity-list-map-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(860px, 100%);
    overflow: hidden;
    background: #fff;
    border: 1px solid #d9e0e6;
    border-radius: 14px;
    box-shadow: 0 22px 60px rgba(20, 38, 55, 0.32);
}

.klo-entity-list-map-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 62px;
    padding: 0.85rem 1rem 0.85rem 1.25rem;
    border-bottom: 1px solid #d9e0e6;
}

.klo-entity-list-map-modal__title {
    margin: 0 !important;
    color: #163f5f;
    font-family: "Inter Tight", sans-serif !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
}

.klo-entity-list-map-modal__close {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #163f5f !important;
    background: #f4f7f9 !important;
    border: 0 !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    font-size: 1.75rem !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    text-shadow: none !important;
    cursor: pointer;
}

.klo-entity-list-map-modal__close:hover,
.klo-entity-list-map-modal__close:focus {
    background: #e8eef2 !important;
}

.klo-entity-list-map-modal__canvas {
    width: 100%;
    height: min(66vh, 560px) !important;
    min-height: 380px;
    margin: 0;
}

@media (max-width: 700px) {
    .klo-entity-list-map-modal {
        padding: 0.75rem;
    }

    .klo-entity-list-map-modal__canvas {
        height: 70vh !important;
        min-height: 340px;
    }
}


/* Featured card planner action ----------------------------------------- */
.klo-entity-card__button.klo-entity-card__button--planner.klo-add-to-planner {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 46px !important;
    margin: 0 !important;
    padding: 0.8rem 1rem !important;
    color: #123f60 !important;
    font-family: "Inter Tight", sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    background: #ffffff !important;
    border: 1px solid #123f60 !important;
    border-radius: 7px !important;
    box-shadow: none !important;
}

.klo-entity-card__button.klo-entity-card__button--planner.klo-add-to-planner:hover,
.klo-entity-card__button.klo-entity-card__button--planner.klo-add-to-planner:focus-visible {
    color: #123f60 !important;
    background: #edf3f7 !important;
    border-color: #123f60 !important;
}

.klo-entity-card__button.klo-entity-card__button--planner.klo-add-to-planner.is-saved {
    color: #8f1d2c !important;
    background: #fff5f6 !important;
    border-color: #d62839 !important;
}

.klo-entity-card__button.klo-entity-card__button--planner.klo-add-to-planner.is-saved:hover,
.klo-entity-card__button.klo-entity-card__button--planner.klo-add-to-planner.is-saved:focus-visible {
    color: #8f1d2c !important;
    background: #ffe9ec !important;
    border-color: #b91c2d !important;
}

/* Featured entities are duplicated as standard cards at the end of the
 * unfiltered browser so every initial map marker has a scroll target. */
.klo-entity-browser__featured-tail {
    display: contents;
}
