.find-page {
  --map-ink: var(--theme-text);
  --map-ink-soft: var(--theme-text-muted);
  --map-gold: var(--theme-accent);
  --map-gold-glow: var(--theme-glow);
  --map-gold-soft: var(--theme-accent-soft);
  --map-burgundy: #1f1f1f;
  --map-surface: var(--theme-surface);
  --map-surface-strong: var(--theme-surface-strong);
  --map-border: var(--theme-border);
  position: relative;
  isolation: isolate;
  overflow-x: visible;
  max-width: 100%;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.92), rgba(18, 18, 18, 0.82));
}

.find-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.14), transparent 24%),
    radial-gradient(circle at 82% 14%, rgba(255, 255, 255, 0.1), transparent 20%),
    radial-gradient(circle at 68% 84%, rgba(255, 255, 255, 0.08), transparent 26%);
  opacity: 0;
  z-index: 0;
}

/* ── Stacking context for all page content ── */
.find-page .find-controls,
.find-page .container,
.find-page .site-footer {
  position: relative;
  z-index: 1;
  overflow-x: clip;
}

.find-page .find-controls,
.find-page .map-filters,
.find-page .search-bar,
.find-page .suggestions,
.find-page .site-footer {
  box-sizing: border-box;
}

.find-page .find-controls {
  width: min(1200px, calc(100% - 32px));
  margin: 14px auto 0;
  z-index: 3;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32), 0 0 12px rgba(255, 255, 255, 0.08), 0 0 28px rgba(255, 255, 255, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.find-page .flex-search {
  margin-top: 0;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.find-page .search-form {
  width: auto;
  max-width: none;
  flex: 1 1 460px;
}

.find-page .search-bar,
.find-page .search-input,
.find-page .search-btn,
.find-page .suggestions,
.find-page .filter-field select,
.find-page .clear-filter-btn,
.find-page .mobile-filter-toggle {
  border-radius: 20px;
}

.find-page .search-bar {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 10px 24px rgba(0, 0, 0, 0.22), 0 0 16px rgba(255, 255, 255, 0.12);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.find-page .search-input {
  background: transparent;
  border: 0;
  color: var(--theme-text);
  font-size: 1em;
}

.find-page .search-input::placeholder {
  color: var(--theme-text-muted);
}

.find-page .search-btn {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  color: var(--theme-text);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 0 8px rgba(255, 255, 255, 0.06),
    0 0 18px rgba(255, 255, 255, 0.04);
  transition: filter 0.25s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.find-page .search-btn:hover,
.find-page .search-btn:focus-visible {
  filter: brightness(1.08) saturate(1.02);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow:
    0 0 10px rgba(255, 255, 255, 0.18),
    0 0 24px rgba(255, 255, 255, 0.12),
    0 0 48px rgba(255, 255, 255, 0.06);
}

.find-page .suggestions {
  left: 0;
  width: 100%;
  z-index: 80;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28), 0 0 20px rgba(255, 255, 255, 0.1);
}

.find-page .suggestion-item {
  color: var(--theme-text);
}

.find-page .suggestion-item:hover,
.find-page .suggestion-item.active {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
}

.find-page .suggestion-item:hover::before,
.find-page .suggestion-item.active::before {
  background: var(--theme-accent-strong);
}

.find-page .suggestion-main mark {
  background: rgba(255, 255, 255, 0.16);
  color: var(--theme-accent-strong);
}

.find-page .suggestion-hint {
  color: var(--theme-text-muted);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.find-page .suggestions::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(10, 10, 10, 0.92);
}

.find-page .clear-filter-btn {
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  color: var(--theme-text);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 10px 20px rgba(0, 0, 0, 0.16),
    0 0 8px rgba(255, 255, 255, 0.06),
    0 0 18px rgba(255, 255, 255, 0.04);
  transition: filter 0.25s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.find-page .clear-filter-btn:hover,
.find-page .clear-filter-btn:focus-visible {
  filter: brightness(1.08) saturate(1.02);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 10px 20px rgba(0, 0, 0, 0.20),
    0 0 10px rgba(255, 255, 255, 0.16),
    0 0 24px rgba(255, 255, 255, 0.10),
    0 0 48px rgba(255, 255, 255, 0.06);
}

.find-page .mobile-filter-toggle {
  display: none;
  height: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
  color: var(--theme-text);
  font-weight: 700;
  padding: 0 14px;
  gap: 8px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 10px 24px rgba(0, 0, 0, 0.22),
    0 0 8px rgba(255, 255, 255, 0.07),
    0 0 20px rgba(255, 255, 255, 0.04);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background 0.25s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.find-page .mobile-filter-toggle .material-symbols-outlined {
  font-size: 20px;
  line-height: 1;
}

.find-page .mobile-filter-toggle:hover,
.find-page .mobile-filter-toggle:focus-visible {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  border-color: rgba(255, 255, 255, 0.50);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 10px 24px rgba(0, 0, 0, 0.26),
    0 0 12px rgba(255, 255, 255, 0.16),
    0 0 28px rgba(255, 255, 255, 0.10),
    0 0 52px rgba(255, 255, 255, 0.05);
}

/* ── Filters panel ── */
.find-page .map-filters {
  margin-top: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 24px rgba(255, 255, 255, 0.1);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.find-page .filter-field select {
  min-width: 0;
  width: 100%;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--theme-text);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.06),
    0 0 8px rgba(255, 255, 255, 0.06),
    0 0 18px rgba(255, 255, 255, 0.04);
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.find-page .filter-field select option {
  color: black;
}

.find-page .filter-field select:hover,
.find-page .filter-field select:focus {
  border-color: rgba(255, 255, 255, 0.55);
  outline: none;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.10),
    0 0 0 3px rgba(255, 255, 255, 0.07),
    0 0 12px rgba(255, 255, 255, 0.18),
    0 0 28px rgba(255, 255, 255, 0.12),
    0 0 52px rgba(255, 255, 255, 0.06);
}

/* ── Responsive: ≤1024px ── */
@media (max-width: 1024px) {
  .find-page .filters-left {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .find-page .filter-field,
  .find-page .filter-field select {
    width: 100%;
    min-width: 0;
  }

  .find-page .filters-right {
    width: 100%;
    justify-content: flex-end;
  }
}

.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin: 26px 0 20px;
  flex-wrap: wrap;
}

.page-btn {
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  color: var(--theme-text-muted);
  cursor: pointer;
  font-size: 18px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.8px;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 4px 12px rgba(0, 0, 0, 0.22),
    0 0 8px rgba(255, 255, 255, 0.04);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: transform 0.18s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.page-btn:enabled:hover {
  transform: translateY(-1px);
  color: var(--theme-text);
  border-color: rgba(255, 255, 255, 0.40);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 8px 18px rgba(0, 0, 0, 0.28),
    0 0 12px rgba(255, 255, 255, 0.10),
    0 0 26px rgba(255, 255, 255, 0.06);
}

.page-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 3px 8px rgba(0, 0, 0, 0.16);
}

.page-btn.page-nav {
  font-size: 2.5em;
  font-weight: 50;
}

.page-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--theme-text-muted);
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 500;
}

.page-btn.page-current-input {
  min-width: 40px;
  padding: 0 10px;
  border-color: rgba(255, 255, 255, 0.28);
  border-width: 1.5px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  color: var(--theme-text);
  font-size: 19px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: center;
  appearance: textfield;
  -moz-appearance: textfield;
}

.page-btn.page-current-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.07),
    0 0 14px rgba(255, 255, 255, 0.12),
    0 0 28px rgba(255, 255, 255, 0.06);
}

.page-btn.page-current-input::-webkit-outer-spin-button,
.page-btn.page-current-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.page-total {
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  color: var(--theme-text-soft);
  letter-spacing: 1px;
  line-height: 1;
}

@media (max-width: 700px) {
  .pagination-container {
    gap: 5px;
  }

  .page-btn {
    min-width: 28px;
    height: 28px;
    font-size: 15px;
    border-radius: 8px;
  }

  .page-btn.page-nav {
    font-size: 18px;
  }

  .page-status {
    gap: 5px;
    font-size: 16px;
  }

  .page-btn.page-current-input {
    min-width: 32px;
    font-size: 15px;
    border-radius: 8px;
  }

  .page-total {
    font-size: 16px;
  }
}

/* ── Responsive: ≤820px ── */
@media (max-width: 820px) {
  .find-page .mobile-filter-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .find-page .map-filters {
    display: flex;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-color: transparent;
    box-shadow: none;
    transition: max-height 0.3s ease, opacity 0.2s ease, transform 0.24s ease, margin-top 0.24s ease, padding-top 0.24s ease, padding-bottom 0.24s ease, border-color 0.2s ease;
  }

  .find-page .map-filters.is-open {
    max-height: 560px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    margin-top: 12px;
    padding-top: 14px;
    padding-bottom: 14px;
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  }

  .find-page .map-filters .filter-field {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.24s ease;
  }

  .find-page .map-filters.is-open .filter-field {
    opacity: 1;
    transform: translateY(0);
  }

  .find-page .map-filters.is-open .filter-field:nth-child(2) {
    transition-delay: 0.03s;
  }

  .find-page .map-filters.is-open .filter-field:nth-child(3) {
    transition-delay: 0.06s;
  }

  .find-page .map-filters.is-open .filter-field:nth-child(4) {
    transition-delay: 0.09s;
  }

  .find-page .map-filters.is-open .filter-field:nth-child(5) {
    transition-delay: 0.12s;
  }

  .find-page .filters-left {
    grid-template-columns: 1fr;
  }

  .find-page .filters-right {
    justify-content: stretch;
  }

  .find-page .clear-filter-btn {
    width: 100%;
    border-radius: 12px;
  }
}

/* ── Responsive: ≤650px ── */
@media (max-width: 650px) {

  .find-page .find-controls,
  .find-page .container {
    width: calc(100% - 20px);
  }

  .find-page .search-form {
    flex-basis: 100%;
  }

  .find-page .mobile-filter-toggle {
    width: 100%;
  }
}

@media (max-width: 820px) and (prefers-reduced-motion: reduce) {

  .find-page .map-filters,
  .find-page .map-filters .filter-field {
    transition: none;
    transform: none;
  }
}

/* Prevent card rows from stretching to fill grid height on partial pages */
.find-page #lawyerList {
  align-content: start;
}

.find-page .find-controls,
.find-page .map-filters,
.find-page .site-footer,
.find-page .search-bar,
.find-page .mobile-filter-toggle,
.find-page .suggestions {
  background: linear-gradient(145deg, rgba(30, 30, 30, 0.5), rgba(15, 15, 15, 0.8));
}

/* ─── Light Mode Overrides ─────────────────────────────────────────────── */
[data-theme="light"] .find-page {
  background: linear-gradient(180deg, rgba(244, 240, 234, 0.92), rgba(237, 232, 225, 0.82));
}

[data-theme="light"] .find-page::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 0, 0, 0.05), transparent 24%),
    radial-gradient(circle at 82% 14%, rgba(0, 0, 0, 0.03), transparent 20%),
    radial-gradient(circle at 68% 84%, rgba(0, 0, 0, 0.025), transparent 26%);
  opacity: 1;
}

[data-theme="light"] .find-page .find-controls {
  border-color: rgba(0, 0, 0, 0.10);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.08), 0 0 12px rgba(0, 0, 0, 0.04), 0 0 28px rgba(0, 0, 0, 0.02), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.80), rgba(248, 244, 238, 0.70));
}

[data-theme="light"] .find-page .search-bar {
  border-color: rgba(0, 0, 0, 0.10);
  background: rgba(255, 255, 255, 0.65);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.80), 0 10px 24px rgba(0, 0, 0, 0.08), 0 0 16px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .find-page .search-btn {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.04));
  border-color: rgba(0, 0, 0, 0.14);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.04), 0 0 18px rgba(0, 0, 0, 0.02);
}

[data-theme="light"] .find-page .search-btn:hover,
[data-theme="light"] .find-page .search-btn:focus-visible {
  border-color: rgba(0, 0, 0, 0.28);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08), 0 0 24px rgba(0, 0, 0, 0.06), 0 0 48px rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .find-page .suggestions {
  border-color: rgba(0, 0, 0, 0.10);
  background: rgba(248, 244, 238, 0.96);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.10), 0 0 20px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .find-page .suggestion-item:hover,
[data-theme="light"] .find-page .suggestion-item.active {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.14);
}

[data-theme="light"] .find-page .suggestion-main mark {
  background: rgba(0, 0, 0, 0.08);
  color: var(--theme-accent-strong);
}

[data-theme="light"] .find-page .suggestion-hint {
  color: var(--theme-text-muted);
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.10);
}

[data-theme="light"] .find-page .suggestions::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.14);
  border-color: rgba(248, 244, 238, 0.96);
}

[data-theme="light"] .find-page .clear-filter-btn {
  border-color: rgba(0, 0, 0, 0.14);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.70), 0 10px 20px rgba(0, 0, 0, 0.06), 0 0 8px rgba(0, 0, 0, 0.03), 0 0 18px rgba(0, 0, 0, 0.01);
}

[data-theme="light"] .find-page .clear-filter-btn:hover,
[data-theme="light"] .find-page .clear-filter-btn:focus-visible {
  border-color: rgba(0, 0, 0, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 10px 20px rgba(0, 0, 0, 0.08), 0 0 10px rgba(0, 0, 0, 0.06), 0 0 24px rgba(0, 0, 0, 0.04), 0 0 48px rgba(0, 0, 0, 0.02);
}

[data-theme="light"] .find-page .mobile-filter-toggle {
  border-color: rgba(0, 0, 0, 0.14);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.70), 0 10px 24px rgba(0, 0, 0, 0.08), 0 0 8px rgba(0, 0, 0, 0.03), 0 0 20px rgba(0, 0, 0, 0.01);
}

[data-theme="light"] .find-page .mobile-filter-toggle:hover,
[data-theme="light"] .find-page .mobile-filter-toggle:focus-visible {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.05));
  border-color: rgba(0, 0, 0, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 10px 24px rgba(0, 0, 0, 0.10), 0 0 12px rgba(0, 0, 0, 0.08), 0 0 28px rgba(0, 0, 0, 0.04), 0 0 52px rgba(0, 0, 0, 0.02);
}

[data-theme="light"] .find-page .map-filters {
  border-color: rgba(0, 0, 0, 0.10);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.06), 0 0 24px rgba(0, 0, 0, 0.04);
  background: rgba(255, 255, 255, 0.65);
}

[data-theme="light"] .find-page .filter-field select {
  border-color: rgba(0, 0, 0, 0.13);
  background: rgba(255, 255, 255, 0.72);
  color: var(--theme-text);
}

[data-theme="light"] .find-page .filter-field select:hover,
[data-theme="light"] .find-page .filter-field select:focus {
  border-color: rgba(0, 0, 0, 0.28);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04), 0 0 0 3px rgba(0, 0, 0, 0.03), 0 0 12px rgba(0, 0, 0, 0.08), 0 0 28px rgba(0, 0, 0, 0.04), 0 0 52px rgba(0, 0, 0, 0.02);
}

[data-theme="light"] .page-btn {
  border-color: rgba(0, 0, 0, 0.14);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.02));
  color: var(--theme-text-muted);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.70), 0 4px 12px rgba(0, 0, 0, 0.06), 0 0 8px rgba(0, 0, 0, 0.02);
}

[data-theme="light"] .page-btn:hover {
  color: var(--theme-text);
  border-color: rgba(0, 0, 0, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 8px 18px rgba(0, 0, 0, 0.08), 0 0 12px rgba(0, 0, 0, 0.04), 0 0 26px rgba(0, 0, 0, 0.02);
}

[data-theme="light"] .page-btn.page-current-input {
  border-color: rgba(0, 0, 0, 0.18);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.03));
  color: var(--theme-text);
}

[data-theme="light"] .page-btn.page-current-input:focus {
  border-color: rgba(0, 0, 0, 0.28);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.03), 0 0 14px rgba(0, 0, 0, 0.08), 0 0 28px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .find-page .find-controls,
[data-theme="light"] .find-page .map-filters,
[data-theme="light"] .find-page .site-footer,
[data-theme="light"] .find-page .search-bar,
[data-theme="light"] .find-page .mobile-filter-toggle,
[data-theme="light"] .find-page .suggestions {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.75), rgba(248, 244, 238, 0.65));
}