:root {
  --coral: #ff502c;
  --ink: #333;
  --muted: #6b6570;
  --lilac: #faedff;
  --line: #eadff0;
}
* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: Poppins, Montserrat, "Segoe UI", sans-serif;
  background: var(--lilac);
  color: var(--ink);
}
.local-top {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.local-top__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.local-top img { height: 36px; width: auto; display: block; }
.local-top a { color: var(--coral); text-decoration: none; font-weight: 700; }
.local-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 32px 20px 64px;
}
.local-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
}
.local-card h1 { margin: 0 0 8px; font-size: 28px; }
.local-card p { color: var(--muted); }
.local-search {
  display: flex;
  gap: 10px;
  margin: 18px 0 24px;
}
.local-search input {
  flex: 1;
  height: 48px;
  border: 1px solid #e3d6ea;
  border-radius: 12px;
  padding: 0 14px;
  font: 500 15px/1 Poppins, sans-serif;
}
.local-search button,
.local-btn {
  appearance: none;
  border: 0;
  border-radius: 50px;
  height: 48px;
  padding: 0 22px;
  background: var(--coral);
  color: #fff;
  font: 700 14px/1 Poppins, sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.results { display: grid; gap: 12px; }
.hit {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
}
.hit img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
  background: var(--lilac);
}
.hit b { display: block; }
.hit small { color: var(--muted); }
.hit em { font-style: normal; color: var(--coral); font-weight: 700; }
.empty { color: var(--muted); padding: 12px 0; }
@media (max-width: 700px) {
  .hit { grid-template-columns: 64px 1fr; }
  .hit em { grid-column: 2; }
}
