/**
 * places-v2.css — Places tab v2 conversion (MMB-17413)
 * Extracted from mockup 05-venues.html, adapted to v2 theme tokens.
 * Loaded AFTER v2-theme.css.
 *
 * Key components:
 *   - Combined map+list scroll layout
 *   - Venue cards with v2 styling
 *   - Venue detail modal retheme
 *   - Map pins and floating card
 */

/* =============================================================================
   PLACES SHELL
   ========================================================================== */

.places-shell-v2 {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

/* =============================================================================
   APP BAR (v2)
   ========================================================================== */

.places-appbar-v2 {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px 12px;
}

.places-appbar-v2 .mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  overflow: hidden;
  flex: 0 0 auto;
  box-shadow: 0 0 0 1px var(--line2);
}

.places-appbar-v2 .mark img {
  width: 100%;
  height: 100%;
  display: block;
  transform: scale(1.22);
  filter: brightness(1.1);
}

.places-appbar-v2 h1 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ink-hi);
  text-transform: uppercase;
  line-height: 1;
  padding-top: 2px;
  margin: 0;
}

.places-appbar-v2 .count {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--ink-low);
  padding-top: 5px;
}

.places-appbar-v2 .spacer {
  flex: 1;
}

.places-appbar-v2 .abtn {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--s1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-mid);
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.places-appbar-v2 .abtn:hover {
  background: var(--s2);
  color: var(--ink);
}

.places-appbar-v2 .abtn svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =============================================================================
   SCROLL CONTAINER
   ========================================================================== */

.places-scroll-v2 {
  flex: 1;
  overflow-y: auto;
  padding: 0 20px 120px;
}

.places-scroll-v2::-webkit-scrollbar {
  display: none;
}

/* =============================================================================
   SEARCH BAR (v2)
   ========================================================================== */

.places-search-v2 {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--s1);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 14px;
  margin-bottom: 12px;
  font-size: 13.5px;
  color: var(--ink);
}

.places-search-v2 svg {
  width: 15px;
  height: 15px;
  stroke: var(--ink-low);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
}

.places-search-v2 .ph {
  color: var(--ink-low);
  flex: 1;
}

.places-search-v2 input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--ink-hi);
  font-size: 13.5px;
  outline: none;
  padding: 0;
  margin: 0;
}

.places-search-v2 input::placeholder {
  color: var(--ink-low);
}

.places-search-v2 .loc {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink-mid);
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

/* =============================================================================
   FILTER CHIPS (v2)
   ========================================================================== */

.places-chips-v2 {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}

.places-chip-v2 {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mid);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  background: var(--s1);
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.places-chip-v2:hover {
  background: var(--s2);
  color: var(--ink);
}

.places-chip-v2.on,
.places-chip-v2[aria-selected="true"] {
  background: var(--ink-hi);
  color: var(--bg);
  border-color: var(--ink-hi);
}

.places-chip-v2 .n {
  font-size: 10px;
  opacity: 0.55;
  margin-left: 3px;
  letter-spacing: 0;
}

/* =============================================================================
   MAP SECTION (v2)
   Mockup target: 252px tall split-view map at the top of the scroll, with
   "NEARBY" cards visible below. The map renderer injects its own
   `.places-map > .places-map-canvas (#places-leaflet)` chain inside our
   mount; we constrain the chain to fit the 252px wrapper and suppress the
   inline legend/coverage hints that were sized for the old full-screen pane.
   ========================================================================== */

.places-map-v2 {
  position: relative;
  height: 252px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line2);
  box-shadow: var(--card-shadow);
  margin-bottom: 16px;
  background: #0e1013;
}

.places-map-v2 [data-role="places-map-mount"] {
  position: absolute;
  inset: 0;
}

.places-map-v2 .places-map {
  position: absolute;
  inset: 0;
}

.places-map-v2 .places-map-canvas,
.places-map-v2 #places-leaflet {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 0 !important;
}

/* The legacy single-pane shell had a corner legend + venue coverage hint
   stacked on the canvas — at 252px there's no room for them, and the
   mockup doesn't show them. Hide here rather than fork the map module so
   non-split callers (if any return) keep getting them. */
.places-map-v2 .places-map-legend,
.places-map-v2 .places-map-info {
  display: none !important;
}

.places-map-v2 svg.base {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Map pins */
.places-map-v2 .pin {
  position: absolute;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.places-map-v2 .pin .dot {
  width: 26px;
  height: 26px;
  border-radius: 50% 50% 50% 4px;
  transform: rotate(-45deg);
  background: var(--s3);
  border: 1.5px solid var(--line2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(0,0,0,0.5);
}

.places-map-v2 .pin .dot svg {
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.places-map-v2 .pin.sel .dot,
.places-map-v2 .pin.selected .dot {
  background: var(--ink-hi);
  border-color: var(--ink-hi);
}

.places-map-v2 .pin.sel .dot svg,
.places-map-v2 .pin.selected .dot svg {
  stroke: var(--bg);
}

/* Map fade overlay */
.places-map-v2 .mapfade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 84px;
  background: linear-gradient(transparent, rgba(10,11,13,0.92));
  pointer-events: none;
}

/* Floating map card — sits above the Leaflet panes (which use z-index 400+
   for tiles); 600 puts us safely above markers/popups without breaking
   the modal stack which lives at 1000+. */
.places-map-v2 .mapcard {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(18,20,23,0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line2);
  border-radius: 14px;
  padding: 10px 12px;
  cursor: pointer;
}

.places-map-v2 .mapcard[hidden] {
  display: none;
}

.places-map-v2 .mapcard .t {
  flex: 1;
  min-width: 0;
}

.places-map-v2 .mapcard h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-hi);
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

.places-map-v2 .mapcard .m {
  font-size: 10.5px;
  color: var(--ink-mid);
  margin-top: 3px;
}

.places-map-v2 .mapcard .m b {
  color: var(--olive);
}

.places-map-v2 .mapcard .go {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--bg);
  background: var(--ink-hi);
  border-radius: 9px;
  padding: 8px 13px;
  flex-shrink: 0;
}

/* Location button — same stacking level as the mapcard, sits above the
   Leaflet panes. */
.places-map-v2 .locbtn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 600;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: rgba(18,20,23,0.9);
  border: 1px solid var(--line2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.15s ease;
  color: var(--ink);
  padding: 0;
}

.places-map-v2 .locbtn:hover {
  background: var(--s2);
}

.places-map-v2 .locbtn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =============================================================================
   SECTION HEADER (v2)
   ========================================================================== */

.places-sect-v2 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 2px 2px 10px;
}

.places-sect-v2 h2 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin: 0;
}

.places-sect-v2 .more {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-low);
  cursor: pointer;
}

.places-sect-v2 .more:hover {
  color: var(--ink);
}

/* =============================================================================
   VENUE CARDS (v2)
   ========================================================================== */

.vcard-v2 {
  display: flex;
  gap: 12px;
  background: var(--s2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  margin-bottom: 10px;
  box-shadow: var(--card-shadow);
  cursor: pointer;
  transition: border-color 0.15s ease;
}

.vcard-v2:hover {
  border-color: var(--line2);
}

.vcard-v2.sel,
.vcard-v2.selected {
  border-color: rgba(164,174,144,0.35);
}

.vcard-v2 .vthumb {
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  border-radius: 12px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #1d2024, #0e1012);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vcard-v2 .vthumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 7px);
}

.vcard-v2 .vthumb svg {
  width: 55%;
  position: relative;
  z-index: 1;
  fill: none;
  stroke: #dadcdd;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.9;
}

.vcard-v2 .vthumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.vcard-v2 .vb {
  flex: 1;
  min-width: 0;
}

.vcard-v2 .vb .row1 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vcard-v2 .vb h4 {
  font-family: var(--font-display);
  font-size: 17.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-hi);
  line-height: 1.05;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  margin: 0;
}

.vcard-v2 .vtag {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  border: 1px solid var(--line2);
  border-radius: 5px;
  padding: 2px 6px;
  color: var(--ink-mid);
  flex: 0 0 auto;
  text-transform: uppercase;
}

.vcard-v2 .vmeta {
  display: flex;
  gap: 10px;
  margin-top: 5px;
  font-size: 11px;
  color: var(--ink-mid);
  font-variant-numeric: tabular-nums;
  flex-wrap: wrap;
}

.vcard-v2 .vmeta b {
  color: var(--ink);
  font-weight: 600;
}

.vcard-v2 .star {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.vcard-v2 .star svg {
  width: 10px;
  height: 10px;
  fill: var(--ink);
}

.vcard-v2 .vfoot {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 7px;
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-low);
  flex-wrap: wrap;
}

.vcard-v2 .openpill {
  color: var(--olive);
  background: var(--olive-dim);
  border-radius: 5px;
  padding: 2px 6px;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vcard-v2 .closedpill {
  color: var(--ink-low);
  background: var(--s3);
  border-radius: 5px;
  padding: 2px 6px;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vcard-v2 .vfoot .tipct {
  display: flex;
  align-items: center;
  gap: 4px;
}

.vcard-v2 .vfoot svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Star button on card */
.vcard-v2 .vstar {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: var(--ink-low);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color 0.15s ease, background-color 0.15s ease;
}

.vcard-v2 .vstar:hover {
  background: var(--s3);
}

.vcard-v2 .vstar.on {
  color: var(--warn);
}

.vcard-v2 .vstar svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* =============================================================================
   VENUE MODAL (v2)
   ========================================================================== */

.venue-modal-v2 {
  background: var(--bg);
}

.venue-modal-v2 .vm-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.venue-modal-v2 .vm-thumb {
  width: 64px;
  height: 64px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: linear-gradient(150deg, #1d2024, #0e1012);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.venue-modal-v2 .vm-thumb svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--ink-mid);
  stroke-width: 1.5;
}

.venue-modal-v2 .vm-title-wrap {
  flex: 1;
  min-width: 0;
}

.venue-modal-v2 .vm-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-hi);
  line-height: 1.1;
  margin: 0;
}

.venue-modal-v2 .vm-type {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
  margin-top: 4px;
}

.venue-modal-v2 .vm-actions {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}

.venue-modal-v2 .vm-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: var(--s1);
  color: var(--ink);
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.venue-modal-v2 .vm-btn:hover {
  background: var(--s2);
  border-color: var(--line2);
}

.venue-modal-v2 .vm-btn.primary {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--bg);
}

.venue-modal-v2 .vm-btn.primary:hover {
  background: var(--olive-hi);
  border-color: var(--olive-hi);
}

.venue-modal-v2 .vm-btn svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.venue-modal-v2 .vm-content {
  padding: 16px;
}

.venue-modal-v2 .vm-section {
  margin-bottom: 20px;
}

.venue-modal-v2 .vm-section-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin: 0 0 10px;
}

.venue-modal-v2 .vm-info-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  font-size: 13px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.venue-modal-v2 .vm-info-row:last-child {
  border-bottom: none;
}

.venue-modal-v2 .vm-info-row svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--ink-mid);
  stroke-width: 1.8;
  flex-shrink: 0;
}

/* Status banner */
.venue-modal-v2 .vm-status {
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}

.venue-modal-v2 .vm-status.unclaimed {
  background: var(--s1);
  color: var(--ink-mid);
}

.venue-modal-v2 .vm-status.verified {
  background: var(--olive-dim);
  color: var(--olive);
}

.venue-modal-v2 .vm-status.pending {
  background: rgba(201,164,92,0.13);
  color: var(--warn);
}

/* =============================================================================
   EMPTY STATE
   ========================================================================== */

.places-empty-v2 {
  text-align: center;
  padding: 40px 20px;
  color: var(--ink-mid);
}

.places-empty-v2 h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-hi);
  margin: 0 0 8px;
}

.places-empty-v2 p {
  font-size: 13px;
  color: var(--ink-mid);
  margin: 0;
}

/* =============================================================================
   LOADING STATE
   ========================================================================== */

.places-loading-v2 {
  text-align: center;
  padding: 40px 20px;
  color: var(--ink-mid);
  font-size: 13px;
}

/* =============================================================================
   LEGACY COMPATIBILITY BRIDGE
   Map existing class names to v2 equivalents during transition
   ========================================================================== */

/* Shell bridge */
.places-shell { }

/* Topbar bridge - map to appbar */
.places-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px 12px;
}

.places-topbar h1 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ink-hi);
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}

/* View pills bridge - map to chips */
.places-view-pills {
  display: flex;
  gap: 6px;
  margin-left: auto;
}

.places-view-pills .places-view-btn {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mid);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  background: var(--s1);
  cursor: pointer;
  transition: all 0.15s ease;
}

.places-view-pills .places-view-btn.active,
.places-view-pills .places-view-btn[aria-selected="true"] {
  background: var(--ink-hi);
  color: var(--bg);
  border-color: var(--ink-hi);
}

/* Filter row bridge */
.places-filter-row {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  overflow-x: auto;
  scrollbar-width: none;
}

.places-filter-row::-webkit-scrollbar {
  display: none;
}

.places-filter-chip {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mid);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  background: var(--s1);
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.places-filter-chip.active,
.places-filter-chip[aria-selected="true"] {
  background: var(--ink-hi);
  color: var(--bg);
  border-color: var(--ink-hi);
}

/* Search row bridge */
.places-search-row {
  margin-bottom: 12px;
}

.places-search-input {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--s1);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 14px;
  font-size: 13.5px;
  color: var(--ink-hi);
  outline: none;
}

.places-search-input::placeholder {
  color: var(--ink-low);
}

/* Content area bridge */
.places-view[data-role="places-content"] {
  flex: 1;
}

/* List cards bridge */
.places-list-cards {
  padding: 0;
}

/* Place card bridge - map to vcard-v2 */
.place-card {
  display: flex;
  gap: 12px;
  background: var(--s2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  margin-bottom: 10px;
  box-shadow: var(--card-shadow);
  cursor: pointer;
  position: relative;
  transition: border-color 0.15s ease;
}

.place-card:hover {
  border-color: var(--line2);
}

.place-card .place-fav {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: var(--ink-low);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: color 0.15s ease, background-color 0.15s ease;
}

.place-card .place-fav:hover {
  background: var(--s3);
}

.place-card .place-fav.on {
  color: var(--warn);
}

.place-card .place-name {
  font-family: var(--font-display);
  font-size: 17.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-hi);
  line-height: 1.05;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 36px;
}

.place-card .place-loc {
  font-size: 11px;
  color: var(--ink-mid);
  margin-top: 4px;
}

.place-card .place-row {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  align-items: center;
  flex-wrap: wrap;
}

/* Map bridge */
.places-map-wrap {
  position: relative;
  height: 252px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line2);
  box-shadow: var(--card-shadow);
  margin-bottom: 16px;
  background: #0e1013;
}

/* Venue type badge bridge */
.venue-type-badge {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  border: 1px solid var(--line2);
  border-radius: 5px;
  padding: 2px 6px;
  color: var(--ink-mid);
  text-transform: uppercase;
}

.venue-type-badge.field {
  background: rgba(255,255,255,0.05);
  color: var(--ink-mid);
}

.venue-type-badge.store {
  background: rgba(111,174,124,0.13);
  color: var(--ok);
}

.venue-type-badge.tech {
  background: rgba(196,106,196,0.13);
  color: #c49ec4;
}
