﻿/* â”€â”€ Pontos TurÃ­sticos â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.spots-hero {
  position: relative;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(31, 79, 134, 0.40) 0%, transparent 55%),
    linear-gradient(135deg, #07372b 0%, #0f5b45 100%);
  color: #fff;
  padding: clamp(56px, 8vw, 96px) 20px clamp(40px, 6vw, 64px);
  text-align: center;
  overflow: hidden;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
}

.spots-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}

.spots-hero > * { position: relative; }

.spots-hero h1 {
  margin: 14px 0 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.012em;
}
.spots-hero p {
  margin: 0 auto 24px;
  opacity: .82;
  font-size: clamp(.98rem, 1.3vw, 1.1rem);
  line-height: 1.55;
  max-width: 52ch;
}

/* â”€â”€ Filters bar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.spots-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 16px 20px;
  background: var(--sand-100, #f6f1e8);
  border-bottom: 1px solid var(--sand-200, #efe5d6);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.spots-quick-filters {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  padding: 10px 20px 14px;
  background: #fff;
  border-bottom: 1px solid var(--sand-200, #efe5d6);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.spots-quick-filters::-webkit-scrollbar { display: none; }

.filter-pill {
  background: #fff;
  border: 1px solid var(--sand-200, #efe5d6);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-900, #10232f);
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
  appearance: none;
}
.filter-pill:hover {
  border-color: var(--green-700, #0f5b45);
  color: var(--green-700, #0f5b45);
  transform: translateY(-1px);
}
.filter-pill.is-active {
  background: var(--green-700, #0f5b45);
  border-color: var(--green-700, #0f5b45);
  color: #fff;
  box-shadow: 0 4px 12px rgba(15, 91, 69, .25);
}

.quick-pill {
  background: #f9fbfa;
  border: 1px solid #dbe5e0;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: .8rem;
  font-weight: 700;
  color: #2f4552;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
}
.quick-pill:hover,
.quick-pill.is-active {
  background: #10232f;
  border-color: #10232f;
  color: #fff;
}

/* â”€â”€ Layout â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.spots-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 900px) {
  .spots-layout { grid-template-columns: 1fr 380px; }
}

/* â”€â”€ Spot list â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.spots-list {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.spot-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(16, 35, 47, .06);
  border: 1px solid var(--sand-200, #efe5d6);
  overflow: hidden;
  display: grid;
  grid-template-columns: 120px 1fr;
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
  cursor: pointer;
}
.spot-card:hover {
  box-shadow: 0 16px 36px rgba(16, 35, 47, .12);
  transform: translateY(-2px);
  border-color: var(--green-700, #0f5b45);
}

.spot-card-img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  background: linear-gradient(135deg, #0f5b45, #1f4f86);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: #fff;
}
.spot-card-img img { width: 100%; height: 100%; object-fit: cover; }

.spot-card-body {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spot-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-900, #10232f);
  margin: 0;
}

.spot-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: .78rem;
}

.spot-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 600;
  background: var(--sand-100, #f6f1e8);
  color: var(--text-900, #10232f);
}
.spot-badge.open    { background: #d1fae5; color: #065f46; }
.spot-badge.closed  { background: #fee2e2; color: #991b1b; }
.spot-badge.free    { background: #dbeafe; color: #1e40af; }
.spot-badge.paid    { background: #fef9c3; color: #92400e; }
.spot-badge.dist    { background: rgba(15,91,69,.08); color: var(--green-700, #0f5b45); }
.spot-badge.weather { background: transparent; border: 1px solid #d0d7df; }
.spot-badge.featured { background: #fef3c7; color: #92400e; }
.spot-badge.tidal { background: #dff6ff; color: #075985; }
.spot-badge.best { background: #f3e8ff; color: #6b21a8; }

/* â”€â”€ Map panel â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.spots-map-panel { position: sticky; top: 70px; }
#spots-map { width: 100%; height: 420px; }
@media (min-width: 900px) { #spots-map { height: 100vh; position: sticky; top: 0; } }

/* â”€â”€ Detail modal â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.spot-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 500;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media (min-width: 600px) { .spot-modal-overlay { align-items: center; } }

.spot-modal {
  background: #fff;
  border-radius: 24px 24px 0 0;
  width: 100%;
  max-width: 600px;
  max-height: 88vh;
  overflow-y: auto;
  padding: 0 0 40px;
  animation: slideUp .25s ease;
}
@media (min-width: 600px) { .spot-modal { border-radius: 24px; max-height: 80vh; } }

@keyframes slideUp {
  from { transform: translateY(60px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.spot-modal-header {
  position: sticky;
  top: 0;
  background: #fff;
  padding: 16px 20px 12px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.spot-modal-header h2 { margin: 0; font-size: 1.15rem; }
.spot-modal-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; padding: 4px 8px; border-radius: 8px; }
.spot-modal-close:hover { background: #f0f0f0; }

.spot-modal-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: linear-gradient(135deg, #0f5b45, #1f4f86);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,.6);
}
.spot-modal-img img { width: 100%; height: 100%; object-fit: cover; }

.spot-modal-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.spot-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .92rem;
}
.spot-detail-row .icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.spot-detail-row strong { font-weight: 700; color: var(--text-900, #10232f); }

.spot-tips-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.spot-tips-list li::before { content: "ðŸ’¡ "; }

.spot-modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.spot-modal-actions a,
.spot-modal-actions button {
  flex: 1;
  min-width: 140px;
  padding: 12px 16px;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
}
.btn-directions { background: var(--green-700, #0f5b45); color: #fff; }
.btn-details    { background: #10232f; color: #fff; }
.btn-share      { background: var(--sand-100, #f6f1e8);  color: var(--text-900, #10232f); border: 1.5px solid #d0d7df; }

/* â”€â”€ Empty state â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.spots-empty {
  padding: 40px 20px;
  text-align: center;
  color: var(--text-700, #5d6c78);
}

/* â”€â”€ SeÃ§Ã£o "PrÃ³ximos a vocÃª" â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nearby-section {
  padding: 28px 20px 32px;
  background: #fff;
  border-bottom: 1px solid var(--sand-200, #efe5d6);
}

.nearby-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.nearby-refresh-btn {
  background: var(--sand-100, #f6f1e8);
  border: 1.5px solid var(--sand-200, #efe5d6);
  border-radius: 40px;
  padding: 7px 16px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-700, #5d6c78);
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s, border-color .15s;
  font-family: inherit;
  flex-shrink: 0;
}
.nearby-refresh-btn:hover {
  background: var(--sand-200, #efe5d6);
  border-color: var(--green-700, #0f5b45);
  color: var(--green-700, #0f5b45);
}

/* Category filter pills for nearby section */
.nearby-cat-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.nearby-cat-filters::-webkit-scrollbar { display: none; }

.nearby-pill {
  background: #fff;
  border: 1.5px solid #d0d7df;
  border-radius: 40px;
  padding: 7px 16px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-900, #10232f);
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s, border-color .15s, color .15s;
  font-family: inherit;
  appearance: none;
}
.nearby-pill:hover,
.nearby-pill.is-active {
  background: var(--green-700, #0f5b45);
  border-color: var(--green-700, #0f5b45);
  color: #fff;
}

/* Divisor entre as duas seÃ§Ãµes */
.spots-section-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  margin: 0;
  background: var(--sand-100, #f6f1e8);
  border-top: 1px solid var(--sand-200, #efe5d6);
  border-bottom: 1px solid var(--sand-200, #efe5d6);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-700, #5d6c78);
  height: 40px;
}
.spots-section-divider::before,
.spots-section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--sand-200, #efe5d6);
}

/* â”€â”€ Notification permission bar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.notif-bar {
  background: var(--green-700, #0f5b45);
  color: #fff;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: .88rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.notif-bar > span {
  flex: 0 1 auto;
  text-align: center;
  max-width: 560px;
}
.notif-bar .allow-notif {
  background: #fff;
  color: var(--green-700, #0f5b45);
  border: none;
  border-radius: 999px;
  padding: 7px 18px;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .02em;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 1px 4px rgba(0,0,0,.12);
  transition: transform .15s ease, box-shadow .15s ease;
}
.notif-bar .allow-notif:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.notif-bar .close-notif {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  background: transparent;
  color: rgba(255,255,255,.7);
  border: none;
  padding: 4px 8px;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  border-radius: 6px;
  transition: background .15s ease, color .15s ease;
}
.notif-bar .close-notif:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
}
@media (max-width: 560px) {
  .notif-bar { padding: 10px 44px 10px 16px; font-size: .82rem; gap: 10px; }
  .notif-bar > span { max-width: 100%; text-align: left; }
}

/* Profile / mood filters */
.mood-filters-section {
  margin: 18px auto 10px;
  padding: 0 22px;
  max-width: 1100px;
}
.mood-filters-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.mood-filters-eyebrow {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-700, #0f5b45);
}
.mood-filters-clear {
  background: transparent;
  border: none;
  color: #6b7280;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: underline;
  font-family: inherit;
}
.mood-filters-clear:hover { color: #10232f; }
.mood-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mood-pill {
  background: #fff;
  border: 1.5px solid #eef2f0;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.86rem;
  font-weight: 600;
  font-family: inherit;
  color: #10232f;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
}
.mood-pill:hover {
  border-color: var(--green-700, #0f5b45);
  background: #f7fbf9;
  transform: translateY(-1px);
}
.mood-pill.is-active {
  background: var(--green-700, #0f5b45);
  color: #fff;
  border-color: var(--green-700, #0f5b45);
  box-shadow: 0 3px 10px rgba(15, 91, 69, 0.25);
}
.mood-pill.is-active:hover {
  background: #0d4a39;
  border-color: #0d4a39;
}
@media (max-width: 600px) {
  .mood-filters-section { padding: 0 16px; }
  .mood-filters { gap: 6px; }
  .mood-pill { padding: 7px 12px; font-size: 0.78rem; }
}

/* ═════ Refinamento moderno ═════ */
.spots-hero {
  text-align: center;
  padding: 36px 22px 28px;
  background: linear-gradient(135deg, #f6f1e8 0%, #fff 100%);
  border-bottom: 1px solid #eef2f0;
  margin-bottom: 20px;
}
.spots-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: #10232f;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.spots-hero p {
  color: #5d6c78;
  max-width: 620px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.5;
}

.mood-filters-section {
  max-width: 1280px;
  margin: 0 auto 20px;
  padding: 0 22px;
}
.mood-filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.mood-filters-eyebrow {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0f5b45;
}
.mood-filters-clear {
  background: transparent;
  border: 0;
  color: #6b7280;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: underline;
  font-family: inherit;
}
.mood-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mood-pill {
  background: #fff;
  border: 1.5px solid #eef2f0;
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: inherit;
  color: #10232f;
  cursor: pointer;
  transition: all .15s ease;
  white-space: nowrap;
}
.mood-pill:hover {
  border-color: #0f5b45;
  background: #f7fbf9;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(15,91,69,0.10);
}
.mood-pill.is-active {
  background: linear-gradient(135deg, #0f5b45, #0d4a39);
  color: #fff;
  border-color: #0f5b45;
  box-shadow: 0 4px 12px rgba(15,91,69,0.30);
}

.nearby-section {
  max-width: 1280px;
  margin: 0 auto 30px;
  padding: 0 22px;
}
.nearby-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 14px;
}
.nearby-refresh-btn {
  background: #fff;
  border: 1px solid #e5ded2;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  font-size: 0.85rem;
  color: #0f5b45;
  cursor: pointer;
  font-family: inherit;
  transition: background .15s, transform .1s;
}
.nearby-refresh-btn:hover {
  background: #eef9f4;
  transform: translateY(-1px);
}

.nearby-cat-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.nearby-pill {
  background: #f6f1e8;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #2a3947;
  cursor: pointer;
  font-family: inherit;
  transition: all .15s;
}
.nearby-pill:hover { background: #fff; border-color: #0f5b45; }
.nearby-pill.is-active {
  background: #0f5b45;
  color: #fff;
  border-color: #0f5b45;
}

.spots-section-divider {
  max-width: 1280px;
  margin: 0 auto 20px;
  padding: 24px 22px 12px;
  text-align: center;
  position: relative;
}
.spots-section-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 22px;
  right: 22px;
  height: 1px;
  background: #eef2f0;
  z-index: 1;
}
.spots-section-divider span {
  position: relative;
  z-index: 2;
  background: #fff;
  padding: 0 18px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7280;
}

.spots-filters {
  max-width: 1280px;
  margin: 0 auto 20px;
  padding: 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.filter-pill {
  background: #fff;
  border: 1.5px solid #eef2f0;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: inherit;
  color: #10232f;
  cursor: pointer;
  transition: all .15s;
}
.filter-pill:hover { border-color: #0f5b45; background: #f7fbf9; }
.filter-pill.is-active {
  background: #0f5b45;
  color: #fff;
  border-color: #0f5b45;
}

.spots-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 22px 30px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 22px;
}
.spots-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  align-content: start;
}
.spots-map-panel {
  position: sticky;
  top: 92px;
  height: calc(100vh - 110px);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eef2f0;
}
#spots-map { width: 100%; height: 100%; }

@media (max-width: 920px) {
  .spots-layout { grid-template-columns: 1fr; }
  .spots-map-panel { height: 320px; position: static; }
}
@media (max-width: 600px) {
  .spots-hero h1 { font-size: 1.7rem; }
  .nearby-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .nearby-header > div { width: 100%; }
}
