/* =====================================================================
   INFINITY EXIST — Property Search / Results ("Estate" redesign)
   LIGHT theme — shares the home page palette for a consistent look.
   Map-left + results-right, horizontal result cards, voice search, trust bar.
   Pairs with design-system.css. Loaded ONLY on pages.non-secure.property_search.
   ===================================================================== */

.est-searchpage { background: var(--bg); padding-bottom: 0; }

/* ---------- Hero band (dark banner, same spirit as the home hero) ---------- */
.est-hero-band {
    background:
        linear-gradient(90deg, rgba(13, 30, 44, .92) 0%, rgba(13, 30, 44, .55) 60%, rgba(13, 30, 44, .3) 100%),
        linear-gradient(120deg, #0f2233 0%, #16344a 100%);
    color: #fff;
    padding: 52px 0 96px;
}
.est-hero-band h1 { font-size: 40px; font-weight: 800; letter-spacing: -.02em; }
.est-hero-band h1 span { color: var(--accent); }
.est-hero-band p { margin-top: 8px; color: rgba(255, 255, 255, .8); font-size: 16px; }

.est-searchpage__body { margin-top: -56px; position: relative; z-index: 6; }

/* ---------- Search bar ---------- */
.est-searchbar {
    background: #fff;
    border-radius: var(--r);
    box-shadow: var(--shadow-float);
    display: flex;
    align-items: stretch;
    padding: 8px;
}
.est-sb-field { flex: 1; min-width: 0; padding: 12px 18px; display: flex; flex-direction: column; gap: 5px; position: relative; }
.est-sb-field + .est-sb-field { border-left: 1px solid var(--border); }
.est-sb-field label { font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.est-sb-field select,
.est-sb-field input {
    border: 0;
    border-bottom: 1px solid var(--border);
    background: transparent;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    padding: 4px 0;
    outline: none;
    width: 100%;
}
.est-sb-field input { font-weight: 500; }
.est-sb-field input::placeholder { color: #9aa1ac; font-weight: 500; }
.est-sb-field select:focus,
.est-sb-field input:focus { border-bottom-color: var(--accent); }
.est-sb-field--sel select { -webkit-appearance: none; appearance: none; padding-right: 18px; cursor: pointer; }
.est-sb-field--sel::after {
    content: "";
    position: absolute;
    right: 20px;
    bottom: 16px;
    width: 8px; height: 8px;
    border-right: 2px solid var(--muted);
    border-bottom: 2px solid var(--muted);
    transform: rotate(45deg);
    pointer-events: none;
}
.est-sb-actions { display: flex; align-items: center; gap: 10px; padding: 8px; }
.est-sb-geo {
    width: 54px; height: 54px; flex: none;
    border-radius: 12px; border: 1px solid var(--accent);
    background: #fff; color: var(--accent);
    display: grid; place-items: center;
    transition: background .16s ease, color .16s ease;
}
.est-sb-geo:hover { background: var(--accent-soft); }
.est-sb-geo svg { width: 22px; height: 22px; }
.est-sb-search { height: 54px; padding: 0 30px; border-radius: 12px; }

/* ---------- Advanced filters (collapsed by default) ---------- */
.est-adv-wrap { margin-top: 14px; }
.est-adv-link { background: none; border: 0; color: var(--accent); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; padding: 4px 2px; }
.est-adv-link svg { width: 15px; height: 15px; transition: transform .2s ease; }
.est-adv-link.is-open svg { transform: rotate(180deg); }
.est-filterbar__advanced { display: none; margin-top: 14px; background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 20px; }
.est-filterbar__advanced.is-open { display: block; }
.est-adv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.est-fld { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.est-fld label { font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.est-fld select,
.est-fld input {
    height: 46px; width: 100%;
    border: 1px solid var(--border); border-radius: var(--r-sm);
    padding: 0 13px;
    font-family: inherit; font-size: 14px; font-weight: 500; color: var(--ink);
    background: #fff; outline: none;
    transition: border-color .16s ease, box-shadow .16s ease;
}
.est-fld select:focus,
.est-fld input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-ring); }
.est-adv-features { margin-top: 18px; }
.est-adv-features > span { display: block; font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 10px; }
.est-features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 8px 18px; }
.est-check { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--body); cursor: pointer; }
.est-check input { width: 17px; height: 17px; accent-color: var(--accent); }

/* ---------- Two-column layout: map left, results right ---------- */
.est-results-layout { display: grid; grid-template-columns: minmax(340px, 46%) 1fr; gap: 26px; align-items: start; margin-top: 30px; }
.est-map-col { position: sticky; top: 92px; height: calc(100vh - 120px); min-height: 520px; display: flex; flex-direction: column; }
.est-map-frame { position: relative; flex: 1 1 auto; min-height: 0; }
#map { width: 100%; height: 100%; border-radius: var(--r); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-card); background: #e9edf3; }
.est-map-fallback { width: 100%; height: 100%; display: grid; place-items: center; text-align: center; color: var(--muted); font-size: 14px; padding: 24px; }
.est-results-col { min-width: 0; }

/* Map overlays */
.est-map-count {
    align-self: flex-start; margin: 0 0 12px; flex: 0 0 auto;
    display: inline-flex; align-items: center; gap: 11px;
    background: #fff; color: var(--ink); border: 1px solid var(--border);
    padding: 10px 18px 10px 11px; border-radius: 16px; box-shadow: var(--shadow-sm);
}
.est-map-count__ico { width: 34px; height: 34px; border-radius: 50%; background: #e6f5f3; display: grid; place-items: center; flex: 0 0 auto; }
.est-map-count__ico svg { width: 17px; height: 17px; color: var(--accent); }
.est-map-count__txt { display: flex; flex-direction: column; line-height: 1.25; }
.est-map-count__txt strong { font-size: 15px; font-weight: 700; }
.est-map-count__txt span { font-size: 12px; color: var(--muted); }
.est-map-search-area {
    position: absolute; top: 94px; left: 50%; transform: translateX(-50%); z-index: 4;
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255, 255, 255, .97); color: var(--ink); border: 1px solid rgba(16, 42, 67, .09);
    padding: 9px 17px; border-radius: var(--r-pill); font-size: 13px; font-weight: 700;
    box-shadow: 0 8px 26px rgba(16, 42, 67, .16); backdrop-filter: blur(6px);
    transition: background .16s ease, color .16s ease, border-color .16s ease;
}
.est-map-search-area:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.est-map-search-area svg { width: 15px; height: 15px; }

/* ---------- Zillow-style horizontal layers toolbar ---------- */
.est-toolbar {
    position: absolute; top: 12px; left: 12px; right: 12px; z-index: 6;
    display: flex; align-items: stretch; gap: 6px;
    background: rgba(255, 255, 255, .97); border: 1px solid rgba(16, 42, 67, .09); border-radius: 18px;
    box-shadow: 0 10px 34px rgba(16, 42, 67, .18), 0 2px 6px rgba(16, 42, 67, .08);
    padding: 6px; overflow: hidden; backdrop-filter: saturate(1.1) blur(6px);
}
.est-tb__layers {
    flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
    min-width: 64px; padding: 7px 12px; border: 1.5px solid var(--accent); border-radius: 13px;
    background: #fff; color: var(--ink); cursor: pointer; font-size: 11px; font-weight: 800;
    box-shadow: 0 1px 3px rgba(16, 42, 67, .08); transition: background .15s ease, box-shadow .15s ease, color .15s ease;
}
.est-tb__layers svg { width: 21px; height: 21px; color: var(--accent); }
.est-tb__layers.is-on { background: var(--accent); color: #fff; box-shadow: 0 4px 12px rgba(30, 166, 154, .4); }
.est-tb__layers.is-on svg { color: #fff; }

/* Scroll chevrons (back + forward) */
.est-tb__nav {
    flex: 0 0 auto; width: 34px; align-self: stretch; border: none; cursor: pointer;
    background: #fff; color: #64748b; font-size: 26px; line-height: 1; font-weight: 300;
    display: grid; place-items: center; border-radius: 11px; transition: background .15s ease, color .15s ease;
}
.est-tb__nav:hover { background: #eef1f5; color: var(--accent); }
.est-toolbar.is-scroll-start .est-tb__nav--prev,
.est-toolbar.is-scroll-end .est-tb__nav--next,
.est-toolbar.is-collapsed .est-tb__nav,
.est-toolbar.is-collapsed .est-tb__scroll { display: none; }
.est-toolbar.is-collapsed { right: auto; }

.est-tb__scroll {
    flex: 1 1 auto; display: flex; align-items: stretch; gap: 2px;
    overflow-x: auto; scroll-behavior: smooth; -ms-overflow-style: none; scrollbar-width: none;
}
.est-tb__scroll::-webkit-scrollbar { display: none; }

.est-tb__item {
    position: relative; flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
    min-width: 66px; padding: 7px 9px 6px; border: 1.5px solid transparent; border-radius: 13px;
    background: none; cursor: pointer; color: #475569; font-weight: 600; line-height: 1.1;
    white-space: nowrap; transition: background .14s ease, color .14s ease, transform .12s ease, box-shadow .14s ease;
}
.est-tb__item:hover { background: #f1f5f8; color: var(--ink); transform: translateY(-1px); }
.est-tb__ico { font-size: 20px; line-height: 1; }
.est-tb__lbl { font-size: 10.5px; letter-spacing: .01em; }
.est-tb__item.is-on {
    background: rgba(30, 166, 154, .14); color: #0b5e56; border-color: var(--accent);
    box-shadow: 0 3px 10px rgba(30, 166, 154, .22);
}
.est-tb__item.is-on .est-tb__lbl { font-weight: 800; }
.est-tb__item.is-loading { opacity: .55; }
.est-tb__item--ai.is-on { background: rgba(124, 58, 237, .15); color: #6d28d9; border-color: #7c3aed; box-shadow: 0 3px 10px rgba(124, 58, 237, .24); }
.est-tb__item.is-soon { color: #aeb6c2; cursor: not-allowed; }
.est-tb__item.is-soon .est-tb__ico { filter: grayscale(1); opacity: .55; }
.est-tb__item.is-soon:hover { background: none; transform: none; color: #aeb6c2; }
.est-tb__item.is-soon::after {
    content: 'SOON'; position: absolute; top: 3px; right: 6px;
    font-size: 7px; font-weight: 800; letter-spacing: .04em; color: #fff;
    background: #b6bdc8; padding: 1px 4px; border-radius: 5px;
}
.est-tb__sep { flex: 0 0 auto; width: 1px; align-self: center; height: 32px; background: var(--border); margin: 0 5px; }

/* Legend for data layers */
.est-legend {
    position: absolute; left: 16px; bottom: 64px; z-index: 5; min-width: 150px;
    background: #fff; border: 1px solid var(--border); border-radius: 12px;
    box-shadow: var(--shadow-sm); padding: 10px 12px;
}
.est-legend__title { font-size: 12px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.est-legend__bar { height: 8px; border-radius: 4px; background: linear-gradient(90deg, #c7f0ea, #7fd8cc, #38b2a3, #1e857a, #0d5e56); }
.est-legend__ticks { display: flex; justify-content: space-between; font-size: 10.5px; color: var(--muted); margin-top: 4px; gap: 12px; }

/* Bottom map action controls — centered, above the Google attribution */
.est-mapctl {
    position: absolute; left: 50%; transform: translateX(-50%); bottom: 26px; z-index: 5;
    display: flex; gap: 8px; max-width: calc(100% - 32px);
    padding: 2px; overflow-x: auto; -ms-overflow-style: none; scrollbar-width: none;
}
.est-mapctl::-webkit-scrollbar { display: none; }
.est-mapctl__btn {
    flex: 0 0 auto; display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
    background: rgba(255, 255, 255, .97); border: 1px solid rgba(16, 42, 67, .09); border-radius: 12px;
    padding: 9px 13px; font-size: 12.5px; font-weight: 700; color: var(--ink); cursor: pointer;
    box-shadow: 0 6px 18px rgba(16, 42, 67, .15); backdrop-filter: blur(6px);
    transition: background .15s ease, color .15s ease, border-color .15s ease, transform .12s ease;
}
.est-mapctl__btn:hover { transform: translateY(-1px); border-color: var(--accent); color: var(--accent); }
.est-mapctl__btn:hover { border-color: var(--accent); color: var(--accent); }
.est-mapctl__btn.is-on { background: var(--accent); color: #fff; border-color: var(--accent); }
.est-mapctl__ico { font-size: 15px; }

/* AI area summary card */
.est-area-card {
    position: absolute; top: 146px; left: 16px; width: 260px; max-width: calc(100% - 32px); z-index: 6;
    background: #fff; border: 1px solid var(--border); border-radius: var(--r);
    box-shadow: var(--shadow-card); padding: 16px 16px 12px;
}
.est-area-card__x {
    position: absolute; top: 8px; right: 10px; border: none; background: none; cursor: pointer;
    font-size: 20px; line-height: 1; color: var(--muted);
}
.est-area-card__x:hover { color: var(--ink); }
.est-area-card__tag {
    display: inline-block; font-size: 11px; font-weight: 700; text-transform: capitalize;
    color: #6d28d9; background: #f3e8ff; padding: 4px 10px; border-radius: var(--r-pill); margin-bottom: 10px;
}
.est-area-card__lead { font-size: 12px; color: var(--muted); margin: 0 0 8px; }
.est-area-card__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.est-area-card__list li { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--ink); }
.est-area-card__list b { font-weight: 800; min-width: 20px; }
.est-area-card__ico { font-size: 14px; }
.est-area-card__foot { margin-top: 11px; font-size: 10.5px; color: var(--muted); letter-spacing: .02em; }
.est-area-loading, .est-area-card__err { font-size: 13px; color: var(--muted); padding: 8px 0; }
.est-area-card__err { color: #b91c1c; }

/* 3D + zoom controls */
.est-map-3d {
    position: absolute; top: 90px; right: 16px; z-index: 5;
    display: flex; flex-direction: column; gap: 8px; align-items: flex-end;
}
.est-3d-btn {
    width: 44px; height: 44px; cursor: pointer;
    display: grid; place-items: center;
    background: #fff; color: var(--ink); border: 1px solid rgba(16, 42, 67, .09);
    border-radius: 12px; font-size: 16px; font-weight: 700; box-shadow: 0 6px 18px rgba(16, 42, 67, .15);
    transition: background .16s ease, color .16s ease, border-color .16s ease;
}
.est-3d-btn:hover { border-color: var(--accent); color: var(--accent); }
.est-3d-btn.is-on { background: var(--accent); color: #fff; border-color: var(--accent); }
.est-zoom {
    display: flex; flex-direction: column; background: #fff;
    border: 1px solid rgba(16, 42, 67, .09); border-radius: 12px; box-shadow: 0 6px 18px rgba(16, 42, 67, .15); overflow: hidden;
}
.est-zoom__btn {
    width: 44px; height: 42px; border: none; border-radius: 0; box-shadow: none; font-size: 22px; font-weight: 400;
}
.est-zoom__btn + .est-zoom__btn { border-top: 1px solid var(--border); }
.est-zoom__btn:hover { background: #f4f6f9; color: var(--accent); }

/* ---------- Results toolbar ---------- */
.est-results__bar { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; margin-bottom: 18px; flex-wrap: wrap; }
.est-results__bar h2 { font-size: 26px; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.est-results__sub { margin-top: 3px; font-size: 14px; color: var(--muted); }
.est-results__tools { display: flex; align-items: center; gap: 10px; }
.est-voice { display: inline-flex; align-items: center; gap: 8px; height: 42px; padding: 0 16px; border: 0; border-radius: var(--r-sm); background: var(--accent); color: #fff; font-weight: 600; font-size: 14px; transition: background .16s ease; }
.est-voice:hover { background: var(--accent-dark); }
.est-voice.is-recording { background: var(--danger); }
.est-voice svg { width: 16px; height: 16px; }
.est-sort2 { height: 42px; border: 1px solid var(--border); border-radius: var(--r-sm); padding: 0 14px; font-family: inherit; font-size: 14px; font-weight: 600; color: var(--ink); background: #fff; outline: none; cursor: pointer; }
#searchResults:not(:empty) { margin-bottom: 14px; font-size: 14px; color: var(--muted); }

/* ---------- Horizontal result card ---------- */
.est-results-list { display: flex; flex-direction: column; gap: 16px; }
.est-rcard { display: grid; grid-template-columns: 210px 1fr; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); overflow: visible; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.est-rcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: transparent; }
.est-rcard__media { position: relative; min-height: 190px; background: var(--surface-alt); border-radius: var(--r) 0 0 var(--r); overflow: hidden; }
.est-rcard__media img { width: 100%; height: 100%; object-fit: cover; }
.est-rcard__badge { position: absolute; top: 12px; left: 12px; }
.est-rcard__fav { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, .92); color: var(--muted); display: grid; place-items: center; box-shadow: var(--shadow-sm); transition: color .16s ease, transform .16s ease; }
.est-rcard__fav:hover, .est-rcard__fav.is-active { color: var(--danger); transform: scale(1.08); }
.est-rcard__fav svg { width: 17px; height: 17px; }
.est-rcard__body { padding: 16px 18px; display: flex; flex-direction: column; gap: 9px; }
.est-rcard__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.est-rcard__title { font-size: 18px; font-weight: 700; color: var(--ink); letter-spacing: -.01em; line-height: 1.3; }
.est-rcard__title a:hover { color: var(--accent); }
.est-rcard__verified { color: var(--accent); display: inline-flex; vertical-align: middle; margin-left: 6px; }
.est-rcard__verified svg { width: 16px; height: 16px; }
.est-rcard__menu { position: relative; flex: none; }
.est-rcard__kebab { background: none; border: 0; color: var(--muted); padding: 2px; }
.est-rcard__kebab:hover { color: var(--ink); }
.est-rcard__kebab svg { width: 18px; height: 18px; }
.est-rcard__dropdown {
    position: absolute; right: 0; top: calc(100% + 6px); z-index: 30;
    min-width: 184px; padding: 6px;
    background: #fff; border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow-card);
    display: none;
}
.est-rcard__dropdown.is-open { display: block; }
.est-rcard__dropdown a,
.est-rcard__dropdown button {
    display: flex; align-items: center; gap: 10px; width: 100%;
    padding: 9px 12px; border: 0; border-radius: 8px; background: none;
    font-family: inherit; font-size: 14px; font-weight: 500; color: var(--body);
    text-align: left; cursor: pointer;
}
.est-rcard__dropdown a:hover,
.est-rcard__dropdown button:hover { background: var(--surface-alt); color: var(--ink); }
.est-rcard__dropdown svg { width: 16px; height: 16px; flex: none; color: var(--muted); }
.est-rcard__loc { display: flex; align-items: center; gap: 6px; font-size: 14px; color: var(--body); }
.est-rcard__loc svg { width: 15px; height: 15px; color: var(--accent); flex: none; }
.est-rcard__meta { display: flex; gap: 20px; }
.est-rcard__meta span { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); font-weight: 500; }
.est-rcard__meta svg { width: 16px; height: 16px; }
.est-rcard__rent { align-self: flex-start; display: inline-block; background: var(--accent-soft); color: var(--accent); font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: var(--r-pill); }
.est-rcard__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 8px; border-top: 1px solid var(--border); }
.est-rcard__price { color: var(--accent); font-size: 20px; font-weight: 800; letter-spacing: -.01em; }
.est-rcard__date { font-size: 12px; color: var(--muted); }

/* ---------- Pagination (pills + per-page) ---------- */
.est-pagination2 { position: relative; display: flex; align-items: center; justify-content: center; margin-top: 30px; }
.est-pagination2__pills { display: flex; justify-content: center; }
.est-pagination2 .pagination { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.est-pagination2 .page-item .page-link { display: grid; place-items: center; min-width: 42px; height: 42px; padding: 0 12px; border: 1px solid var(--border); border-radius: 11px; background: #fff; color: var(--body); font-weight: 600; font-size: 14px; text-decoration: none; transition: .16s; }
.est-pagination2 .page-item .page-link:hover { border-color: var(--accent); color: var(--accent); }
.est-pagination2 .page-item.active .page-link { background: var(--accent); border-color: var(--accent); color: #fff; }
.est-pagination2 .page-item.disabled .page-link { opacity: .45; pointer-events: none; }
.est-perpage { position: absolute; right: 0; top: 0; height: 42px; border: 1px solid var(--border); border-radius: var(--r-sm); padding: 0 14px; font-family: inherit; font-size: 14px; font-weight: 600; color: var(--ink); background: #fff; outline: none; cursor: pointer; }

/* ---------- Empty state ---------- */
.est-empty { text-align: center; padding: 70px 20px; }
.est-empty img { width: 170px; margin: 0 auto 22px; opacity: .9; }
.est-empty h3 { font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.est-empty p { color: var(--muted); font-size: 15px; }
.est-empty a { color: var(--accent); font-weight: 600; }

/* ---------- Trust bar ---------- */
.est-trust { background: var(--accent-soft); margin-top: 64px; }
.est-trust__grid { max-width: var(--container); margin-inline: auto; padding: 26px 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.est-trust__item { display: flex; align-items: center; gap: 14px; }
.est-trust__icon { width: 46px; height: 46px; flex: none; border-radius: 12px; background: #fff; color: var(--accent); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.est-trust__icon svg { width: 22px; height: 22px; }
.est-trust__item h4 { font-size: 15px; font-weight: 700; color: var(--ink); }
.est-trust__item p { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
    .est-searchbar { flex-wrap: wrap; }
    .est-sb-field { flex: 1 1 30%; }
    .est-sb-field + .est-sb-field { border-left: 0; }
    .est-sb-actions { flex: 1 1 100%; justify-content: flex-end; }
    .est-adv-grid { grid-template-columns: repeat(2, 1fr); }
    .est-trust__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 992px) {
    .est-results-layout { grid-template-columns: 1fr; }
    .est-map-col { position: static; height: 440px; min-height: 0; margin-bottom: 6px; }
    .est-map-3d { top: 86px; }
    .est-legend { bottom: 62px; }
    .est-mapctl__btn { padding: 8px 11px; font-size: 12px; }
}
@media (max-width: 640px) {
    .est-hero-band h1 { font-size: 28px; }
    .est-sb-field { flex: 1 1 100%; }
    .est-adv-grid { grid-template-columns: 1fr; }
    .est-rcard { grid-template-columns: 1fr; }
    .est-rcard__media { min-height: 200px; border-radius: var(--r) var(--r) 0 0; }
    .est-results__bar { flex-direction: column; align-items: flex-start; }
    .est-trust__grid { grid-template-columns: 1fr; }
    .est-pagination2 { flex-direction: column; gap: 14px; }
    .est-perpage { position: static; }
}
