html, body { height: 100%; margin: 0; }

.rec-marker-wrap { background: transparent; border: 0; }

.rec-marker {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  border: 2px solid #fff;
  transition: transform 120ms ease;
}
.rec-marker:hover { transform: scale(1.12); }
.rec-marker.active { transform: scale(1.2); box-shadow: 0 4px 12px rgba(0,0,0,0.35); }

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
  transition: background 120ms ease, color 120ms ease;
  color: #525252;
}
.filter-chip.active { background: #171717; color: #fff; }
.filter-chip:not(.active):hover { background: #f5f5f5; }

.prose img { border-radius: 12px; }
.prose h1:first-child { margin-top: 0; }
