:root {
  --il-front-ink: #123238;
  --il-front-muted: #52666a;
  --il-front-paper: #f5f7f4;
  --il-front-surface: #fff;
  --il-front-line: #d8e0dc;
  --il-front-teal: #087f75;
  --il-front-teal-dark: #075c57;
  --il-front-coral: #db684c;
  --il-front-blue: #4c7186;
  --il-front-violet: #6e628c;
  --il-front-focus: #006dff;
  --il-front-shadow: 0 8px 24px rgb(18 50 56 / 8%);
}

body.il-front-body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--il-front-paper);
  color: var(--il-front-ink);
  font-family: 'Noto Sans Hebrew', 'Noto Sans', 'Segoe UI', system-ui, Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

.il-front-shell,
.il-front-shell * {
  box-sizing: border-box;
}

.il-front-shell {
  min-height: 100vh;
  color: var(--il-front-ink);
  line-height: 1.55;
}

.il-front-shell[dir='rtl'] {
  line-height: 1.72;
}

.il-front-shell a {
  color: inherit;
}

.il-front-shell a:focus-visible,
.il-front-shell button:focus-visible,
.il-front-shell input:focus-visible,
.il-front-skip:focus-visible {
  outline: 3px solid var(--il-front-focus);
  outline-offset: 3px;
}

.il-front-skip {
  position: fixed;
  inset-block-start: 10px;
  inset-inline-start: 12px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 9px;
  background: var(--il-front-ink);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-170%);
}

.il-front-skip:focus {
  transform: translateY(0);
}

.il-front-intro,
.il-front-discovery,
.il-front-map-section,
.il-front-results {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.il-front-types a {
  min-height: 44px;
  padding: 9px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--il-front-muted);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

.il-front-types a:hover {
  border-color: var(--il-front-line);
  background: #fff;
  color: var(--il-front-ink);
}

.il-front-types a[aria-current='page'] {
  background: var(--il-front-ink);
  color: #fff;
}

.il-front-intro {
  padding-block: 56px 32px;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(340px, 5fr);
  align-items: stretch;
  gap: 26px;
}

.il-front-intro-copy,
.il-front-featured {
  min-width: 0;
}

.il-front-featured {
  border: 1px solid rgb(16 47 53 / 14%);
  border-radius: 18px;
  background: var(--il-front-surface);
  box-shadow: var(--il-front-shadow);
}

.il-front-intro-copy {
  min-height: 320px;
  padding-block: clamp(34px, 5vw, 64px);
  padding-inline: 0 clamp(24px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.il-front-eyebrow {
  margin: 0 0 20px;
  color: var(--il-front-teal-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

[dir='rtl'] .il-front-eyebrow,
[dir='rtl'] .il-front-featured-copy small,
[dir='rtl'] .il-front-status,
[dir='rtl'] .il-front-map-result > span {
  letter-spacing: 0;
  text-transform: none;
}

.il-front-intro h1 {
  max-width: 800px;
  margin: 0;
  color: var(--il-front-ink);
  font-size: clamp(42px, 5.2vw, 66px);
  font-weight: 820;
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.il-front-intro-copy > p:last-child {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--il-front-muted);
  font-size: clamp(17px, 1.75vw, 21px);
  line-height: 1.75;
  text-wrap: pretty;
}

.il-front-featured {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--il-front-surface);
  text-decoration: none;
}

.il-front-intro--no-image {
  grid-template-columns: minmax(0, 7fr) minmax(310px, 5fr);
}

.il-front-featured--no-image {
  min-height: 220px;
}

.il-front-featured--no-image .il-front-featured-copy {
  padding: clamp(28px, 4vw, 46px);
}

.il-front-featured > img {
  width: 100%;
  aspect-ratio: 5 / 4;
  height: auto;
  display: block;
  object-fit: cover;
}

.il-front-featured-copy {
  padding: 30px;
  display: grid;
  gap: 12px;
}

.il-front-featured-copy small,
.il-front-status {
  width: fit-content;
  color: var(--il-front-teal-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.il-front-featured-copy strong {
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.il-front-featured-copy > span:last-child {
  color: var(--il-front-muted);
  font-size: 15px;
  line-height: 1.65;
}

.il-front-featured:hover {
  border-color: rgb(8 127 117 / 48%);
  transform: translateY(-1px);
}

.il-front-discovery {
  padding-block: 24px;
  display: grid;
  gap: 16px;
  border-block: 1px solid var(--il-front-line);
}

.il-front-search > label {
  display: block;
  margin: 0 0 8px;
  color: var(--il-front-muted);
  font-size: 12px;
  font-weight: 750;
}

.il-front-search > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.il-front-search input,
.il-front-search button {
  min-height: 50px;
  border-radius: 13px;
  font: inherit;
}

.il-front-search input {
  width: 100%;
  min-width: 0;
  padding: 12px 16px;
  border: 1px solid #cbd3cd;
  background: #fff;
  color: var(--il-front-ink);
}

.il-front-search button {
  padding: 12px 22px;
  border: 1px solid var(--il-front-ink);
  background: var(--il-front-ink);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.il-front-search button:hover {
  background: var(--il-front-teal-dark);
  border-color: var(--il-front-teal-dark);
}

.il-front-types {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
}

.il-front-map-section,
.il-front-results {
  padding-block-start: 52px;
}

.il-front-section-heading {
  margin-block-end: 18px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.il-front-section-heading h2 {
  margin: 0;
  color: var(--il-front-ink);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.il-front-section-heading p {
  max-width: 560px;
  margin: 0;
  color: var(--il-front-muted);
  font-size: 14px;
}

.il-front-map {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(14px, 2.5vw, 28px);
  border: 1px solid var(--il-front-line);
  border-radius: 16px;
  background: var(--il-front-surface);
}

.il-front-map-experience {
  overflow: clip;
  border: 1px solid rgb(16 47 53 / 15%);
  border-radius: 18px;
  background: var(--il-front-surface);
  box-shadow: var(--il-front-shadow);
}

.il-front-map-controls {
  padding: 16px;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(0, 1.6fr) auto;
  align-items: end;
  gap: 14px;
  border-bottom: 1px solid var(--il-front-line);
  background: rgb(255 253 248 / 96%);
}

.il-front-map-controls[hidden],
.il-front-map-canvas[hidden],
.il-front-map-panel[hidden],
.il-front-map-search-area[hidden],
.il-front-map-interaction-toggle[hidden],
.il-front-map-query button[hidden] {
  display: none !important;
}

.il-front-map-query {
  min-width: 0;
}

.il-front-map-query > label {
  display: block;
  margin-block-end: 7px;
  color: var(--il-front-muted);
  font-size: 12px;
  font-weight: 800;
}

.il-front-map-query > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  border: 1px solid rgb(16 47 53 / 22%);
  border-radius: 14px;
  background: #fff;
}

.il-front-map-query input {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 11px 14px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--il-front-ink);
  font: inherit;
}

.il-front-map-query button {
  min-width: 64px;
  min-height: 44px;
  margin: 2px;
  padding: 8px 12px;
  border: 0;
  border-radius: 11px;
  background: #e7efec;
  color: var(--il-front-teal-dark);
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}

.il-front-map-filter-row {
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.il-front-map-filter-row button,
.il-front-map-view-switch button {
  min-height: 44px;
  padding: 8px 13px;
  border: 1px solid var(--il-front-line);
  border-radius: 999px;
  background: #fff;
  color: var(--il-front-muted);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.il-front-map-filter-row button:hover,
.il-front-map-view-switch button:hover {
  border-color: rgb(8 127 117 / 42%);
  color: var(--il-front-ink);
}

.il-front-map-filter-row button[aria-pressed='true'],
.il-front-map-view-switch button[aria-pressed='true'] {
  border-color: var(--il-front-ink);
  background: var(--il-front-ink);
  color: #fff;
}

.il-front-map-view-switch {
  display: none;
  gap: 5px;
}

.il-front-map-layer-row {
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  padding-top: 4px;
  border-top: 1px solid var(--il-front-line);
}

.il-front-map-layer-row[hidden] {
  display: none;
}

.il-front-map-layer-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--il-front-muted);
  letter-spacing: 0.02em;
}

.il-front-map-layer-row button {
  min-height: 36px;
  padding: 6px 11px;
  border: 1px solid var(--il-front-line);
  border-radius: 999px;
  background: #fff;
  color: var(--il-front-muted);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.il-front-map-layer-row button:hover {
  border-color: rgb(8 127 117 / 42%);
  color: var(--il-front-ink);
}

.il-front-map-layer-row button[aria-pressed='true'] {
  border-color: var(--il-front-ink);
  background: var(--il-front-ink);
  color: #fff;
}

.il-front-map-parcel {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 6px;
  margin-inline-start: auto;
}

.il-front-map-parcel label {
  display: grid;
  gap: 2px;
  font-size: 11px;
  font-weight: 800;
  color: var(--il-front-muted);
}

.il-front-map-parcel input {
  width: 84px;
  min-height: 36px;
  padding: 6px 9px;
  border: 1px solid var(--il-front-line);
  border-radius: 8px;
  font: inherit;
  font-size: 13px;
}

.il-front-map-parcel button[type='submit'] {
  border-color: var(--il-front-ink);
  color: var(--il-front-ink);
}

.il-front-map-parcel[aria-busy='true'] button[type='submit'] {
  opacity: 0.6;
}

.il-front-map-layout {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(310px, 0.68fr);
  background: #eef1ec;
}

.il-front-map-stage {
  position: relative;
  min-width: 0;
  min-height: 620px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 14%, rgb(8 127 117 / 10%), transparent 21rem),
    #e9eee8;
}

.il-front-map-canvas,
.il-front-map-stage > [data-il-map-fallback] {
  position: absolute;
  inset: 0;
}

.il-front-map-canvas {
  z-index: 1;
}

.il-front-map-stage > [data-il-map-fallback] {
  z-index: 0;
  padding: 24px;
  display: grid;
  place-items: center;
}

.il-front-map-stage > [data-il-map-fallback] .il-front-map {
  width: min(100%, 760px);
}

.il-front-map-skip {
  position: absolute;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 5;
  min-height: 44px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 12px;
  background: var(--il-front-ink);
  color: #fff !important;
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
  transform: translateY(-180%);
}

.il-front-map-skip:focus {
  transform: translateY(0);
}

.il-front-map-search-area {
  position: absolute;
  inset-block-start: 16px;
  inset-inline-start: 50%;
  z-index: 4;
  min-height: 44px;
  padding: 9px 16px;
  border: 1px solid rgb(16 47 53 / 24%);
  border-radius: 999px;
  background: rgb(255 253 248 / 96%);
  box-shadow: 0 8px 26px rgb(16 47 53 / 16%);
  color: var(--il-front-ink);
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
  transform: translateX(-50%);
}

.il-front-map-interaction-toggle {
  display: none;
}

[dir='rtl'] .il-front-map-search-area {
  transform: translateX(50%);
}

.il-front-map-status {
  position: absolute;
  inset-block-end: 9px;
  inset-inline-start: 10px;
  z-index: 4;
  max-width: min(72%, 520px);
  margin: 0;
  padding: 7px 10px;
  border-radius: 9px;
  background: rgb(255 253 248 / 91%);
  color: var(--il-front-muted);
  font-size: 11px;
  line-height: 1.35;
}

.il-front-map-panel {
  min-width: 0;
  max-height: 620px;
  display: flex;
  flex-direction: column;
  border-inline-start: 1px solid var(--il-front-line);
  background: rgb(255 253 248 / 98%);
}

.il-front-map-panel-heading {
  padding: 22px 20px 15px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--il-front-line);
}

.il-front-map-panel-heading h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.il-front-map-panel-heading output {
  color: var(--il-front-muted);
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
}

.il-front-map-result-list {
  min-height: 0;
  margin: 0;
  padding: 10px;
  overflow-y: auto;
  overscroll-behavior: contain;
  list-style: none;
  scrollbar-width: thin;
}

.il-front-map-result-list > li {
  position: relative;
  margin: 0 0 8px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: #fff;
}

.il-front-map-result-list > li[hidden] {
  display: none;
}

.il-front-map-result-list > li.is-selected {
  border-color: rgb(8 127 117 / 48%);
  box-shadow: 0 9px 26px rgb(16 47 53 / 10%);
}

.il-front-map-result {
  width: 100%;
  min-height: 44px;
  padding: 15px 15px 48px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  border: 0;
  border-radius: 15px;
  background: transparent;
  color: var(--il-front-ink);
  font: inherit;
  text-align: start;
  cursor: pointer;
}

.il-front-map-result > span {
  margin-block-end: 5px;
  color: var(--il-front-teal-dark);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.il-front-map-result > img {
  width: calc(100% + 30px);
  height: 118px;
  margin: -15px -15px 13px;
  display: block;
  border-radius: 15px 15px 9px 9px;
  object-fit: cover;
}

[dir='rtl'] .il-front-map-result > img {
  margin-inline: -15px;
}

.il-front-map-result > strong {
  font-size: 16px;
  line-height: 1.25;
}

.il-front-map-result > small {
  margin-block-start: 7px;
  display: -webkit-box;
  overflow: hidden;
  color: var(--il-front-muted);
  font-size: 12px;
  line-height: 1.48;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.il-front-map-result > small.il-front-map-result-source {
  margin-block-start: 5px;
  color: rgb(47 68 73 / 76%);
  font-size: 10px;
  -webkit-line-clamp: 1;
}

.il-front-map-result-list > li[data-il-discovery-result] .il-front-map-result {
  padding-block-end: 15px;
}

.il-front-map-result-list > li > a {
  position: absolute;
  inset-block-end: 10px;
  inset-inline-start: 15px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--il-front-teal-dark);
  font-size: 11px;
  font-weight: 850;
  text-underline-offset: 3px;
}

.il-front-map-sheet-toggle {
  display: none;
}

.il-front-map-canvas .maplibregl-canvas {
  outline: 0;
}

.il-front-map-canvas .maplibregl-canvas:focus-visible {
  outline: 3px solid var(--il-front-teal);
  outline-offset: -5px;
}

.il-front-map-canvas .maplibregl-ctrl-group {
  overflow: hidden;
  border: 1px solid rgb(16 47 53 / 18%);
  border-radius: 13px;
  box-shadow: 0 8px 24px rgb(16 47 53 / 12%);
}

.il-front-map-canvas .maplibregl-ctrl-group button {
  width: 44px;
  height: 44px;
}

.il-front-map-canvas .maplibregl-ctrl-attrib {
  color: #29454a;
  font-size: 10px;
}

.il-front-map-canvas .maplibregl-ctrl-attrib a {
  color: inherit;
}

.il-front-map-data-attribution {
  margin: 0;
  padding: 9px 16px;
  border-top: 1px solid var(--il-front-line);
  background: rgb(255 253 248 / 96%);
  color: var(--il-front-muted);
  font-size: 10px;
  line-height: 1.5;
}

.il-front-map-data-attribution a {
  color: var(--il-front-teal-dark);
  text-underline-offset: 2px;
}

.il-front-map svg {
  width: 100%;
  height: auto;
  display: block;
}

.il-front-map-surface {
  fill: #e9eee8;
  stroke: #c6d2cc;
  stroke-width: 0.4;
}

.il-front-map-link circle,
.il-front-map-link polygon,
.il-front-map-link polyline {
  fill: rgb(8 127 117 / 42%);
  stroke: var(--il-front-teal-dark);
  stroke-width: 0.8;
  vector-effect: non-scaling-stroke;
}

.il-front-map-link polyline {
  fill: none;
}

.il-front-map-link--construction circle,
.il-front-map-link--construction polygon,
.il-front-map-link--construction polyline {
  fill: rgb(219 104 76 / 46%);
  stroke: var(--il-front-coral);
}

.il-front-map-link--planning circle,
.il-front-map-link--planning polygon,
.il-front-map-link--planning polyline {
  fill: rgb(76 113 134 / 18%);
  stroke: var(--il-front-blue);
}

.il-front-map-link--mobility circle,
.il-front-map-link--mobility polygon,
.il-front-map-link--mobility polyline {
  fill: rgb(110 98 140 / 38%);
  stroke: var(--il-front-violet);
}

.il-front-map-link polyline {
  fill: none;
}

.il-front-map-link .il-front-map-hit {
  fill: transparent;
  stroke: none;
  pointer-events: all;
}

.il-front-map-link .il-front-map-halo {
  fill: rgb(255 253 248 / 94%);
  stroke: rgb(16 47 53 / 30%);
  stroke-width: 1.2;
}

.il-front-map-link .il-front-map-point {
  stroke-width: 1;
}

.il-front-map-link:hover polygon,
.il-front-map-link:hover polyline,
.il-front-map-link:hover .il-front-map-point,
.il-front-map-link:focus polygon,
.il-front-map-link:focus polyline,
.il-front-map-link:focus .il-front-map-point {
  stroke: var(--il-front-ink);
  stroke-width: 1.6;
}

.il-front-map-link:hover .il-front-map-halo,
.il-front-map-link:focus .il-front-map-halo {
  stroke: var(--il-front-ink);
}

.il-front-results {
  padding-block-end: 72px;
}

.il-front-results-heading {
  padding-block-end: 18px;
  border-bottom: 1px solid var(--il-front-line);
}

.il-front-results-heading > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}

.il-front-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.il-front-card {
  min-width: 0;
  min-height: 250px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--il-front-line);
  border-radius: 14px;
  background: var(--il-front-surface);
}

.il-front-card-media {
  display: block;
  background: #e7ece6;
}

.il-front-card-media img {
  width: 100%;
  height: 160px;
  display: block;
  object-fit: cover;
}

.il-front-card-copy {
  min-width: 0;
  padding: 20px;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}

.il-front-status {
  margin-block-end: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #e3eeeb;
}

.il-front-card--construction .il-front-status {
  background: #f8e5de;
  color: #913e2c;
}

.il-front-card--planning .il-front-status {
  background: #e3ebf0;
  color: #315d76;
}

.il-front-card--mobility .il-front-status {
  background: #ebe7f3;
  color: #55477d;
}

.il-front-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.il-front-card h3 a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.il-front-card h3 a:hover {
  color: var(--il-front-teal-dark);
}

.il-front-card p {
  margin: 10px 0 12px;
  color: var(--il-front-muted);
  font-size: 14px;
  line-height: 1.65;
}

.il-front-card-action {
  min-height: 44px;
  margin-block-start: auto;
  display: inline-flex;
  align-items: center;
  color: var(--il-front-teal-dark);
  font-size: 13px;
  font-weight: 850;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.il-front-card:hover {
  border-color: rgb(8 127 117 / 38%);
  background: #f8faf8;
  transform: translateY(-1px);
}

.il-front-empty {
  margin: 0;
  padding: 44px 28px;
  border: 1px solid var(--il-front-line);
  border-radius: 18px;
  background: rgb(255 253 248 / 72%);
  color: var(--il-front-muted);
}

.il-front-pagination {
  margin-block-start: 28px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.il-front-pagination a {
  min-height: 44px;
  padding: 10px 17px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--il-front-line);
  border-radius: 12px;
  background: var(--il-front-surface);
  color: var(--il-front-teal-dark);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 980px) {
  .il-front-intro {
    grid-template-columns: 1fr;
  }

  .il-front-intro-copy {
    min-height: 0;
    padding-inline: 0;
  }

  .il-front-featured {
    min-height: 220px;
  }

  .il-front-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .il-front-map-controls {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .il-front-map-layout {
    grid-template-columns: minmax(0, 1.25fr) minmax(285px, 0.75fr);
  }
}

@media (max-width: 760px) {
  .il-front-intro,
  .il-front-discovery,
  .il-front-map-section,
  .il-front-results {
    width: min(100% - 32px, 1240px);
  }

  .il-front-types a {
    min-height: 44px;
    padding: 9px;
    font-size: 11px;
  }

  .il-front-intro {
    padding-block: 34px 20px;
    gap: 15px;
  }

  .il-front-intro-copy,
  .il-front-featured {
    min-height: 0;
  }

  .il-front-featured {
    border-radius: 16px;
  }

  .il-front-intro-copy {
    padding: 28px 0 32px;
  }

  .il-front-intro h1 {
    font-size: clamp(34px, 10.8vw, 48px);
  }

  .il-front-intro-copy > p:last-child {
    margin-block-start: 20px;
    font-size: 16px;
    line-height: 1.68;
  }

  .il-front-featured > img {
    height: 220px;
  }

  .il-front-featured-copy {
    padding: 25px;
  }

  .il-front-discovery {
    padding-block: 18px;
  }

  .il-front-search > div {
    grid-template-columns: 1fr;
  }

  .il-front-search button {
    width: 100%;
  }

  .il-front-types {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-block-end: 2px;
    scrollbar-width: thin;
  }

  .il-front-types a {
    flex: 0 0 auto;
  }

  .il-front-map-section,
  .il-front-results {
    padding-block-start: 48px;
  }

  .il-front-section-heading,
  .il-front-results-heading > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .il-front-map {
    padding: 10px;
    border-radius: 18px;
  }

  .il-front-map svg {
    min-height: 0;
  }

  .il-front-map-experience {
    border-radius: 20px;
  }

  .il-front-map-controls {
    padding: 12px;
    gap: 10px;
  }

  .il-front-map-query > label {
    margin-block-end: 5px;
  }

  .il-front-map-filter-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-block-end: 2px;
    scrollbar-width: none;
  }

  .il-front-map-filter-row::-webkit-scrollbar {
    display: none;
  }

  .il-front-map-filter-row button {
    flex: 0 0 auto;
  }

  .il-front-map-view-switch {
    display: flex;
  }

  .il-front-map-layout {
    position: relative;
    min-height: clamp(540px, 72svh, 700px);
    display: block;
  }

  .il-front-map-stage {
    position: absolute;
    inset: 0;
    min-height: 0;
  }

  .il-front-map-stage > [data-il-map-fallback] {
    padding: 12px;
  }

  .il-front-map-panel {
    position: absolute;
    inset-inline: 10px;
    inset-block-end: max(10px, env(safe-area-inset-bottom));
    z-index: 6;
    max-height: 48%;
    overflow: hidden;
    border: 1px solid rgb(16 47 53 / 16%);
    border-radius: 19px;
    box-shadow: 0 18px 52px rgb(16 47 53 / 20%);
    transition: max-height 220ms ease, transform 220ms ease;
  }

  .il-front-map-panel[data-sheet-state='collapsed'] {
    max-height: 94px;
  }

  .il-front-map-panel[data-sheet-state='half'] {
    max-height: 48%;
  }

  .il-front-map-panel[data-sheet-state='expanded'] {
    height: calc(100% - 20px - env(safe-area-inset-top));
    max-height: none;
  }

  .il-front-map-panel[data-sheet-state='collapsed'] .il-front-map-result-list {
    display: none;
  }

  .il-front-map-sheet-toggle {
    width: 100%;
    min-height: 44px;
    padding: 7px 0 5px;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .il-front-map-sheet-toggle > span {
    width: 46px;
    height: 4px;
    border-radius: 999px;
    background: rgb(16 47 53 / 28%);
  }

  .il-front-map-panel-heading {
    padding: 8px 16px 12px;
  }

  .il-front-map-result-list {
    padding: 8px;
    overflow-y: visible;
  }

  .il-front-map-panel[data-sheet-state='expanded'] .il-front-map-result-list {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
  }

  .il-front-map-experience:not(.is-list-view) .il-front-map-result-list > li {
    display: none;
  }

  .il-front-map-experience:not(.is-list-view) .il-front-map-result-list > li.is-selected,
  .il-front-map-experience:not(.is-list-view) .il-front-map-result-list > li.is-primary-result {
    display: block;
  }

  .il-front-map-experience:not(.is-list-view)[data-map-sheet='expanded'] .il-front-map-result-list > li {
    display: block;
  }

  .il-front-map-experience.is-list-view .il-front-map-layout {
    min-height: 0;
  }

  .il-front-map-experience.is-list-view .il-front-map-stage {
    display: none;
  }

  .il-front-map-experience.is-list-view .il-front-map-panel {
    position: relative;
    inset: auto;
    max-height: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .il-front-map-experience.is-list-view .il-front-map-sheet-toggle {
    display: none;
  }

  .il-front-map-experience.is-list-view .il-front-map-result-list {
    flex: none;
    overflow: visible;
    touch-action: auto;
  }

  .il-front-map-search-area {
    inset-block-start: 62px;
  }

  .il-front-map-interaction-toggle {
    position: absolute;
    inset-block-start: 10px;
    inset-inline-start: 10px;
    z-index: 7;
    min-height: 44px;
    max-width: calc(100% - 82px);
    padding: 9px 14px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgb(16 47 53 / 24%);
    border-radius: 13px;
    background: rgb(255 253 248 / 97%);
    box-shadow: 0 8px 26px rgb(16 47 53 / 16%);
    color: var(--il-front-ink);
    font: inherit;
    font-size: 12px;
    font-weight: 850;
    line-height: 1.25;
    text-align: start;
    cursor: pointer;
  }

  .il-front-map-interaction-toggle:focus-visible {
    outline: 3px solid var(--il-front-teal);
    outline-offset: 3px;
  }

  .il-front-map-experience[data-map-interaction='active'] .il-front-map-interaction-toggle {
    border-color: var(--il-front-ink);
    background: var(--il-front-ink);
    color: #fff;
  }

  .il-front-map-status {
    inset-block-end: auto;
    inset-block-start: 114px;
    max-width: calc(100% - 20px);
  }

  .il-front-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .il-front-card {
    min-height: 0;
    border-radius: 14px;
  }

  .il-front-results {
    padding-block-end: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .il-front-shell *,
  .il-front-shell *::before,
  .il-front-shell *::after {
    transition: none !important;
    animation: none !important;
  }
}

@media (prefers-contrast: more) {
  :root {
    --il-front-line: #74827e;
    --il-front-muted: #33484c;
  }
}
