/* =========================================================
   All Here — World CMI Leaderboard
   Self-contained section. All styles scoped under .ahl so it
   can be dropped into a WordPress page without clashing.
   Tokens mirror the All Here Lounge charter (May 2026).
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Archivo:wdth,wght@100..125,400..900&family=Barlow+Condensed:wght@400;500;600;700&display=swap');

/* CY Grotesk Wide (demi) — the display face used for headings on wml.org, licensed
   by WML. Self-hosted so the page never depends on Wix's opaque CDN hashes, which can
   rotate without notice and would fail silently back to Archivo.
   Only this weight ships: the page asks for 600 and 700 and nothing else. */
@font-face {
  font-family: 'CY Grotesk Wide';
  src: url('fonts/cy-grotesk-wide-demi.woff2') format('woff2');
  font-weight: 600 700; font-style: normal; font-stretch: normal; font-display: swap;
}

.ahl {
  /* ---- Brand tokens (World Meditation League — wml.org) ---- */
  --ahl-bg: #050f23;                 /* near-black cinematic navy */
  --ahl-bg-card: rgba(255, 255, 255, 0.05);
  --ahl-bg-input: #12203b;
  --ahl-border: rgba(255, 255, 255, 0.14);
  --ahl-border-strong: rgba(255, 255, 255, 0.28);
  --ahl-text: #ffffff;
  --ahl-text-muted: rgba(255, 255, 255, 0.80);
  --ahl-text-dim: #b4b4b4;           /* WML muted grey */
  --ahl-accent: #F4B400;             /* WML championship gold */
  --ahl-accent-soft: rgba(244, 180, 0, 0.27);
  --ahl-logo-blue: #4075d6;
  --ahl-logo-blue-deep: #1b498c;
  /* podium palette */
  --ahl-gold: #F4B400;
  --ahl-silver: #cfd8e6;
  --ahl-bronze: #f58f0a;
  /* legacy accent swatches (legend / misc) */
  --ahl-c-red: #f70000;
  --ahl-c-orange: #f58f0a;
  --ahl-c-yellow: #F4B400;
  --ahl-c-green: #398200;
  --ahl-c-lblue: #4075d6;
  --ahl-c-dblue: #1b498c;
  --ahl-c-magenta: #9e3694;

  --ahl-font-body: 'Montserrat', system-ui, -apple-system, sans-serif;
  --ahl-font-display: 'CY Grotesk Wide', 'Archivo', 'Montserrat', sans-serif;

  --ahl-radius-card: 20px;
  --ahl-radius-pill: 50px;

  color: var(--ahl-text);
  background: var(--ahl-bg);
  font-family: var(--ahl-font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ahl *, .ahl *::before, .ahl *::after { box-sizing: border-box; }

.ahl__wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background:
    radial-gradient(130% 90% at 50% -12%, #0c1c3d 0%, rgba(12,28,61,0) 58%),
    linear-gradient(180deg, #081431 0%, var(--ahl-bg) 100%);
}

/* ---------- Header band (top; never overlaps the map) ---------- */
.ahl__head {
  flex: 0 0 auto;
  /* soft fade into the map band below (decorative only, no overlay) */
  background: linear-gradient(180deg, rgba(5,15,35,0.7) 0%, rgba(5,15,35,0) 100%);
}

/* wml.org-style top nav bar */
.ahl__nav {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 24px;
  border-bottom: 1px solid var(--ahl-border);
}
.ahl__nav-logo { flex: 0 0 auto; display: inline-flex; align-items: center; }
.ahl__nav-logo img { height: 34px; width: auto; display: block; }
.ahl__nav-links {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
}
.ahl__nav-links a {
  font-family: var(--ahl-font-display);
  font-weight: 600;
  font-stretch: expanded;
  font-variation-settings: 'wdth' 108;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: var(--ahl-text-muted);
  text-decoration: none;
  transition: color .2s ease;
}
.ahl__nav-links a:hover { color: var(--ahl-accent); }
.ahl__nav-cta {
  flex: 0 0 auto;
  font-family: var(--ahl-font-display);
  font-weight: 600;
  font-stretch: expanded;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10.5px;
  color: var(--ahl-bg);
  background: var(--ahl-accent);
  border: 2px solid var(--ahl-accent);
  border-radius: 22px;
  padding: 8px 16px;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.ahl__nav-cta:hover { background: transparent; color: var(--ahl-accent); }

/* hero block (centered brand copy under the nav) */
.ahl__head { position: relative; overflow: hidden; }

/* B. A slow, diffuse gold breath behind the title — depth without a second object. */
.ahl__hero {
  text-align: center;
  padding: 26px 24px 30px;
  position: relative;
  z-index: 1;                /* stacking context: keeps the ::before glow inside the hero */
}
.ahl__hero::before {
  content: "";
  position: absolute;
  left: 50%; top: 46%;
  width: min(760px, 88%); height: 300px;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(244, 180, 0, 0.12), rgba(244, 180, 0, 0.035) 55%, transparent 78%);
  filter: blur(30px);
  animation: ahl-glow 9s ease-in-out infinite;
}
@keyframes ahl-glow {
  0%, 100% { opacity: .62; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.09); }
}
/* C. a hairline above the eyebrow, and stats with room to breathe */
.ahl__eyebrow::before {
  content: "";
  display: block;
  width: 46px; height: 1px;
  margin: 0 auto 16px;
  background: linear-gradient(90deg, transparent, var(--ahl-accent), transparent);
}
.ahl__eyebrow {
  display: inline-block;
  font-family: var(--ahl-font-display);
  font-weight: 600;
  font-stretch: expanded;
  font-variation-settings: 'wdth' 120;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--ahl-accent);
  margin: 0 0 7px;
}
.ahl__title {
  font-family: var(--ahl-font-display);
  font-weight: 700;
  font-stretch: expanded;
  font-variation-settings: 'wdth' 125;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.08;
  margin: 0 0 8px;
}
.ahl__subtitle {
  color: var(--ahl-text-muted);
  max-width: 680px;
  margin: 0 auto 12px;
  font-size: clamp(0.92rem, 1.3vw, 1rem);
}

/* ---------- CTA row (pill outline buttons, WML style) ---------- */
.ahl__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 14px;
  pointer-events: auto;
}
.ahl__btn {
  display: inline-block;
  font-family: var(--ahl-font-display);
  font-weight: 600;
  font-stretch: expanded;
  font-variation-settings: 'wdth' 112;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11.5px;
  padding: 9px 18px;
  border-radius: 22px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.ahl__btn:hover { background: #fff; color: var(--ahl-bg); }
.ahl__btn--primary {
  border-color: var(--ahl-accent);
  background: var(--ahl-accent);
  color: var(--ahl-bg);
}
.ahl__btn--primary:hover {
  background: transparent;
  color: var(--ahl-accent);
  box-shadow: 0 0 0 1px var(--ahl-accent) inset;
}

/* ---------- Stat chips ---------- */
.ahl__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 44px;                 /* room for the dot separators */
  margin-top: 20px;
}
/* no boxes — just the numbers, with a small white dot between sections */
.ahl__stat {
  position: relative;
  text-align: center;
  padding: 0;
}
.ahl__stat + .ahl__stat::before {
  content: "";
  position: absolute;
  left: -24px; top: 50%;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  transform: translateY(-50%);
}
.ahl__stat-num {
  font-family: var(--ahl-font-display);
  font-size: 2.05rem;
  font-weight: 700;
  font-stretch: expanded;
  font-variation-settings: 'wdth' 118;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--ahl-accent);
}
.ahl__stat-label {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ahl-text-dim);
  margin-top: 7px;
}

/* "from Switzerland to the World" microline */
.ahl__microline {
  display: block;
  margin: 16px auto 0;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ahl-text-dim);
  pointer-events: none;
}


/* ---------- Map band (middle; fills space between header and footer) ---------- */
/* stage = the middle band; positioning context for the map + floating panel */
.ahl__stage {
  flex: 1 1 auto;
  min-height: 0;
  position: relative;
}
.ahl__map {
  position: absolute;
  inset: 0;
  overflow: hidden;                 /* clip floating overlays to the band */
  touch-action: none;               /* map owns touch: 1 finger pans, 2 fingers zoom (no page scroll / pull-to-refresh here) */
  overscroll-behavior: contain;     /* belt-and-braces: never chain to the page's pull-to-refresh */
  cursor: grab;
  user-select: none;                /* no text/image selection while dragging */
  -webkit-user-select: none;
}
.ahl__map.is-panning { cursor: grabbing; }
.ahl__map canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.ahl__map canvas, .ahl__map img { -webkit-user-drag: none; user-drag: none; }  /* no native ghost-drag on pan */

/* pins overlay */
/* Vignette: sits above the canvas, below the pins, so it deepens the map without
   ever dimming a marker. Purely decorative — never intercepts a pointer. */
.ahl__map::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(125% 95% at 50% 45%, transparent 42%, rgba(5, 15, 35, 0.30) 74%, rgba(5, 15, 35, 0.62) 100%),
    linear-gradient(to bottom, rgba(5, 15, 35, 0.38) 0%, transparent 16%, transparent 84%, rgba(5, 15, 35, 0.45) 100%);
}
.ahl__pins { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 2; }

/* One-shot entrance: pins arrive in a short cascade on the first paint. */
.ahl__pins.is-entering .ahl__pin { animation: ahl-pin-in .5s ease-out backwards; }
.ahl__pins.is-entering .ahl__pin:nth-child(4n+1) { animation-delay: .05s; }
.ahl__pins.is-entering .ahl__pin:nth-child(4n+2) { animation-delay: .17s; }
.ahl__pins.is-entering .ahl__pin:nth-child(4n+3) { animation-delay: .29s; }
.ahl__pins.is-entering .ahl__pin:nth-child(4n+4) { animation-delay: .41s; }
@keyframes ahl-pin-in { from { opacity: 0; } to { opacity: 1; } }
.ahl__pin {
  position: absolute;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  cursor: pointer;
  will-change: transform;
}
.ahl__pin-dot {
  display: block;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--ahl-accent);
  border: 2px solid #fff;
  box-shadow: 0 0 0 4px var(--ahl-accent-soft), 0 2px 6px rgba(0,0,0,.4);
  transition: transform .15s ease, box-shadow .15s ease;
}
.ahl__pin.is-top .ahl__pin-dot { width: 16px; height: 16px; box-shadow: 0 0 0 5px var(--ahl-accent-soft), 0 2px 8px rgba(0,0,0,.5); }
.ahl__pin.is-rank-1 .ahl__pin-dot { background: var(--ahl-gold);   box-shadow: 0 0 0 6px rgba(244,180,0,.30), 0 2px 8px rgba(0,0,0,.5); }
.ahl__pin.is-rank-2 .ahl__pin-dot { background: var(--ahl-silver); box-shadow: 0 0 0 5px rgba(207,216,230,.28), 0 2px 8px rgba(0,0,0,.5); }
.ahl__pin.is-rank-3 .ahl__pin-dot { background: var(--ahl-bronze); box-shadow: 0 0 0 5px rgba(245,143,10,.28), 0 2px 8px rgba(0,0,0,.5); }
.ahl__pin.is-cluster .ahl__pin-dot {
  width: auto; height: auto; min-width: 26px;
  border-radius: 20px;
  padding: 4px 7px;
  font-family: var(--ahl-font-display);
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  background: var(--ahl-accent);
}
.ahl__pin:hover .ahl__pin-dot,
.ahl__pin.is-active .ahl__pin-dot { transform: scale(1.28); box-shadow: 0 0 0 6px var(--ahl-accent-soft), 0 3px 10px rgba(0,0,0,.55); }
.ahl__pin.is-active.is-top .ahl__pin-dot { box-shadow: 0 0 0 7px var(--ahl-accent-soft), 0 3px 10px rgba(0,0,0,.55); }

/* below top 20: recede into a greyed background crowd (still hoverable) */
.ahl__pin.is-sub { z-index: 1; }
.ahl__pin.is-sub .ahl__pin-dot {
  width: 9px; height: 9px;
  background: rgba(150,168,200,.5);
  border-color: rgba(255,255,255,.5);
  box-shadow: 0 0 0 2px rgba(120,152,224,.12), 0 1px 3px rgba(0,0,0,.35);
}
.ahl__pin.is-sub.is-cluster .ahl__pin-dot {
  width: auto; height: auto;
  background: rgba(120,140,178,.6);
  color: rgba(255,255,255,.82);
}
.ahl__pin.is-sub:hover .ahl__pin-dot,
.ahl__pin.is-sub.is-active .ahl__pin-dot { background: var(--ahl-accent); transform: scale(1.28); }

/* score-less location marker: a plain YELLOW dot — hoverable (city name only), no click-filter */
.ahl__pin.is-dot { z-index: 1; }
.ahl__pin.is-dot .ahl__pin-dot {
  width: 9px; height: 9px;
  background: var(--ahl-accent);
  border-color: rgba(255,255,255,.5);
  box-shadow: 0 0 0 2px var(--ahl-accent-soft), 0 1px 3px rgba(0,0,0,.35);
}

/* Two tiers of motion, both quiet.
   Ranked participants: a single hairline ring travelling outwards.
   Only `transform` and `opacity` animate, so the whole thing composites on the GPU —
   widening the box instead would relayout every frame. The stroke still reads as a
   thread because the ring is authored large (24px) and scaled UP FROM 0.5: the border
   is sub-pixel early on and only reaches ~2px at the end, where it has faded out.
   Timing is linear, not ease-out: eased, the ring shot outwards then crawled almost
   invisibly for two thirds of the cycle, which read as stutter rather than motion. */
.ahl__pin:not(.is-dot):not(.is-cluster)::after {
  content: "";
  position: absolute; left: 50%; top: 50%;
  width: 24px; height: 24px;
  margin: -12px 0 0 -12px;
  border-radius: 50%;
  border: 1px solid var(--ahl-accent);
  pointer-events: none;
  animation: ahl-ripple 5.6s linear infinite;
}
@keyframes ahl-ripple {
  0%   { transform: scale(.5);  opacity: 0; }
  18%  { opacity: .5; }
  100% { transform: scale(1.9); opacity: 0; }
}
.ahl__pin:not(.is-dot):not(.is-cluster):nth-child(4n+2)::after { animation-delay: 1.4s; }
.ahl__pin:not(.is-dot):not(.is-cluster):nth-child(4n+3)::after { animation-delay: 2.8s; }
.ahl__pin:not(.is-dot):not(.is-cluster):nth-child(4n+4)::after { animation-delay: 4.2s; }

/* score-less markers: a slow, slight breath, so the place feels alive without asking
   for attention. Nothing but the dot's own scale — no ring, no halo. Applies to every
   marker, interactive or not: being silent is about hover, not about being frozen. */
.ahl__pin.is-dot .ahl__pin-dot {
  animation: ahl-dot-breathe 4.5s ease-in-out infinite;
}
@keyframes ahl-dot-breathe {
  0%, 100% { opacity: 1; }
  50%      { opacity: .55; }
}
.ahl__pin.is-dot:nth-child(3n+2) .ahl__pin-dot { animation-delay: 1.5s; }
.ahl__pin.is-dot:nth-child(3n+3) .ahl__pin-dot { animation-delay: 3s; }
/* any state that sets its own transform wins: stop the loop so it isn't overridden */
/* a marker singled out by hover or a filter holds steady instead of breathing */
.ahl__pin.is-dot:hover .ahl__pin-dot,
.ahl__pin.is-dot.is-active .ahl__pin-dot,
.ahl__pin.is-dot.is-match .ahl__pin-dot,
.ahl__pin.is-dot.is-dim .ahl__pin-dot { animation: none; }

/* A marker we simply want seen — bigger, with a wider soft ring. Size only: it says
   nothing about a score, and it stays as inert as any other silent marker. */
.ahl__pin.is-big .ahl__pin-dot {
  width: 18px; height: 18px;
  border-color: rgba(255, 255, 255, .7);
  box-shadow: 0 0 0 5px var(--ahl-accent-soft), 0 2px 7px rgba(0, 0, 0, .45);
}
.ahl__pin.is-big { z-index: 2; }

/* silent marker: on the map, but never reacts and never names itself */
.ahl__pin.is-nohover { pointer-events: none; }

/* city name, revealed only once zoomed in (empty for clusters and silent markers) */
.ahl__pin-label {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, 11px);
  font-family: var(--ahl-font-display);
  font-size: 10.5px; font-weight: 600; letter-spacing: .05em;
  white-space: nowrap;
  color: rgba(255, 255, 255, .92);
  text-shadow: 0 1px 3px rgba(5, 15, 35, .95), 0 0 8px rgba(5, 15, 35, .8);
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}
.ahl__pins.is-labelled .ahl__pin-label { opacity: 1; }
/* silent markers carry an empty label — render nothing at all, not an empty chip */
.ahl__pin-label:empty { display: none; }
/* crowded area: hide the label that would overlap a better-ranked one */
.ahl__pins.is-labelled .ahl__pin.is-label-off .ahl__pin-label { opacity: 0; }
/* the top-3 star sits above the dot, so their label drops a little lower */
.ahl__pin.is-top .ahl__pin-label { transform: translate(-50%, 15px); }

/* bio-performer marker: a gold ring (distinct design; clusters like any pin) */
.ahl__pin.is-vip .ahl__pin-dot {
  box-shadow: 0 0 0 2px var(--ahl-bg), 0 0 0 4px var(--ahl-accent), 0 2px 8px rgba(0,0,0,.55);
}

/* dataset toggle (segmented pill, top-left of the map) */
.ahl__dataset {
  position: absolute; z-index: 6; top: 14px; left: 14px;
  display: inline-flex; padding: 3px;
  background: rgba(9, 17, 40, 0.64);
  border: 1px solid var(--ahl-border-strong);
  border-radius: 999px;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.ahl__ds-btn {
  font-family: var(--ahl-font-display);
  font-size: 11px; font-weight: 600; letter-spacing: .06em;
  color: var(--ahl-text-dim);
  background: transparent; border: none; cursor: pointer;
  padding: 6px 13px; border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.ahl__ds-btn.is-on { background: var(--ahl-accent); color: #08122b; }
.ahl__ds-btn:not(.is-on):hover { color: var(--ahl-accent); }

/* label filter: matches pop with a gold glow, non-matches dim */
.ahl__pin.is-match { z-index: 3; }
.ahl__pin.is-match .ahl__pin-dot {
  transform: scale(1.4);
  box-shadow: 0 0 0 6px var(--ahl-accent-soft), 0 0 16px 2px rgba(244,180,0,.65), 0 2px 8px rgba(0,0,0,.5);
}
.ahl__pin.is-dim { opacity: 0.26; }
.ahl__pin.is-dim .ahl__pin-dot { transform: scale(0.85); }

/* Pulse ring for the highlighted pin. The second selector only exists to outrank
   the ripple rule (3 classes) — without it the highlight inherited ahl-ripple and
   stacked its own translate on the ripple's margin, throwing the ring ~27px off
   its pin. Same margin-based centering as the ripple, so nothing can drift again. */
.ahl__pin.is-active::after,
.ahl__pin.is-active:not(.is-dot):not(.is-cluster)::after {
  content: "";
  position: absolute; left: 50%; top: 50%;
  width: 24px; height: 24px;
  margin: -12px 0 0 -12px;
  border-radius: 50%;
  border: 1.5px solid var(--ahl-accent);
  animation: ahl-pulse 1.1s ease-out infinite;
}
@keyframes ahl-pulse {
  0%   { transform: scale(.55); opacity: .85; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Markers never carry a ring — in any state. Their only motion is the breath. */
.ahl__pin.is-dot::after { content: none; }

/* map controls (bottom-left, clear of the floating panel) */
.ahl__mapctrl {
  position: absolute;
  left: 20px; bottom: 20px;
  display: flex; flex-direction: column; gap: 6px;
  z-index: 6;
}
.ahl__mapctrl button {
  width: 34px; height: 34px;
  border-radius: 9px;
  border: 1px solid var(--ahl-border-strong);
  background: rgba(13, 21, 38, 0.82);
  color: #fff;
  font-size: 18px; line-height: 1;
  font-family: var(--ahl-font-body);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
  transition: background .2s ease, border-color .2s ease;
}
.ahl__mapctrl button:hover { background: var(--ahl-accent-soft); border-color: var(--ahl-accent); }

/* filter (bottom-left, above the zoom controls — replaces the legend) */
.ahl__filter {
  position: absolute; left: 20px; bottom: 20px;   /* same gap as the standings panel, near the footer */
  z-index: 6;
  width: max-content; max-width: 240px;
  background: rgba(9, 17, 40, 0.66);
  border: 1px solid var(--ahl-border);
  border-radius: 12px;
  padding: 10px 11px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.ahl__filter-toggle { display: none; }   /* desktop: filter is always expanded */
.ahl__filter-head {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ahl-text-dim); margin-bottom: 8px;
}
.ahl__filter-chips { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; max-width: 220px; }
.ahl__filter-chips .ahl__chip { width: 100%; text-align: left; }
.ahl__chip {
  font-family: var(--ahl-font-body);
  font-size: 11px; font-weight: 500; letter-spacing: 0.02em;
  color: var(--ahl-text-muted);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--ahl-border);
  border-radius: 20px;
  padding: 5px 11px;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.ahl__chip:hover { border-color: var(--ahl-border-strong); color: #fff; }
.ahl__chip.is-on {
  background: var(--ahl-accent); border-color: var(--ahl-accent);
  color: var(--ahl-bg); font-weight: 600;
}
.ahl__filter-key {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 10px; padding-top: 9px;
  border-top: 1px solid var(--ahl-border);
  font-size: 10.5px; color: var(--ahl-text-muted);
}
.ahl__filter-key span { display: inline-flex; align-items: center; gap: 6px; }
.ahl__filter-key i { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.ahl__filter-key .l-top { background: var(--ahl-gold); }
.ahl__filter-key .l-vip { width: 11px; height: 11px; background: transparent; border: 2px solid var(--ahl-accent); }
.ahl__filter-key .l-cluster { width: 16px; border-radius: 6px; background: var(--ahl-accent); }

/* tooltip */
.ahl__tip {
  position: absolute;
  z-index: 6;
  min-width: 148px;
  max-width: 230px;
  background: rgba(9, 17, 40, 0.96);
  border: 1px solid var(--ahl-border-strong);
  border-radius: 12px;
  padding: 10px 12px;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, calc(-100% - 14px));
  transition: opacity .12s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
}
.ahl__tip.is-visible { opacity: 1; }
.ahl__tip-rank {
  font-family: var(--ahl-font-display);
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ahl-accent);
}
.ahl__tip-city { font-weight: 600; font-size: 14px; margin: 2px 0 1px; }
.ahl__tip-country { font-size: 12px; color: var(--ahl-text-dim); }
.ahl__tip-cmi { font-family: var(--ahl-font-display); font-weight: 600; font-size: 20px; margin-top: 6px; }
.ahl__tip-cmi small { font-size: 11px; color: var(--ahl-text-dim); font-family: var(--ahl-font-body); font-weight: 400; }
.ahl__tip-date { font-size: 11px; color: var(--ahl-text-dim); margin-top: 3px; }
.ahl__tip-more { font-size: 11px; color: var(--ahl-text-muted); margin-top: 6px; border-top: 1px solid var(--ahl-border); padding-top: 6px; }

/* ---------- Leaderboard list ---------- */
.ahl__listcard {
  position: absolute;
  z-index: 6;
  top: 20px;
  right: 20px;
  bottom: 20px;
  width: min(360px, 34vw);
  display: flex;
  flex-direction: column;
  overflow: visible;                 /* let the toggle tab sit outside the card */
  min-height: 0;
  background: rgba(9, 17, 40, 0.64);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--ahl-border-strong);
  border-radius: 18px;
  padding: 18px 8px 12px 18px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
  transition: transform .35s ease;
}
/* collapsed: slide off the map's right edge, leaving only the toggle tab */
.ahl__listcard.is-collapsed { transform: translateX(calc(100% + 20px)); }

/* retractable toggle tab (docked to the panel's left edge on desktop) */
.ahl__toggle {
  position: absolute;
  left: -34px;
  top: 0; bottom: 0;                /* auto margins center it on the panel edge */
  margin-top: auto; margin-bottom: auto;
  width: 34px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 7;
  color: #fff;
  cursor: pointer;
  border: 1px solid var(--ahl-border-strong);
  border-right: none;
  border-radius: 12px 0 0 12px;
  background: rgba(9, 17, 40, 0.64);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.ahl__toggle:hover { background: var(--ahl-accent-soft); border-color: var(--ahl-accent); color: var(--ahl-accent); }
.ahl__toggle-icon {
  font-size: 22px;
  line-height: 1;
  transition: transform .35s ease;
}
.ahl__listcard.is-collapsed .ahl__toggle-icon { transform: rotate(180deg); }
.ahl__toggle-label { display: none; }   /* desktop: vertical tab shows only the chevron */
.ahl__list-title {
  flex: 0 0 auto;
  font-family: var(--ahl-font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 4px;
}
.ahl__list-sub { flex: 0 0 auto; font-size: 11.5px; color: var(--ahl-text-dim); letter-spacing: .05em; margin: 0 0 14px; }

/* pin-click selection bar inside the standings panel */
.ahl__selbar { flex: 0 0 auto; display: flex; align-items: center; gap: 10px; margin: 0 0 12px; flex-wrap: wrap; }
.ahl__selclear {
  flex: 0 0 auto;
  font-family: var(--ahl-font-display);
  font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ahl-accent);
  background: transparent;
  border: 1px solid var(--ahl-accent-soft);
  border-radius: 999px;
  padding: 5px 12px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.ahl__selclear:hover { background: var(--ahl-accent); color: #08122b; }
.ahl__seltxt { font-size: 11.5px; color: var(--ahl-text-dim); letter-spacing: .04em; }

/* scrollable rows region — height is synced to the map in JS on desktop */
/* lift the panel off the map: deeper glass, a top highlight, a real shadow */
.ahl__listcard {
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
  box-shadow: 0 18px 50px -12px rgba(0, 0, 0, 0.62), inset 0 1px 0 0 rgba(255, 255, 255, 0.13);
}
.ahl__rows {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.20) transparent;
  -webkit-overflow-scrolling: touch;
}
.ahl__rows::-webkit-scrollbar { width: 8px; }
.ahl__rows::-webkit-scrollbar-track { background: transparent; }
.ahl__rows::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.16); border-radius: 8px; }
.ahl__rows::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.28); }

.ahl__row {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 9px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;        /* anchor for the corner provenance mark */
  transition: background .16s ease, border-color .16s ease, opacity .16s ease;
  animation: ahl-row-in .45s ease-out backwards;
  animation-delay: calc(var(--ahl-i, 0) * 55ms);
}
@keyframes ahl-row-in {
  from { opacity: 0; transform: translateY(7px); }
  to   { opacity: 1; transform: none; }
}
.ahl__row + .ahl__row { margin-top: 2px; }
.ahl__row:hover, .ahl__row.is-active {
  background: rgba(255,255,255,0.04);
  border-color: var(--ahl-border);
}
/* label filter: matching rows get a distinct gold left-rail + tint... */
.ahl__row.is-match {
  background: rgba(244,180,0,0.14);
  border-color: rgba(244,180,0,0.55);
  box-shadow: inset 3px 0 0 0 var(--ahl-accent);
}
.ahl__row.is-match .ahl__city { color: var(--ahl-accent); }
/* ...and the non-matching rows fade back */
.ahl__row.is-dim { opacity: 0.38; }
.ahl__rank {
  font-family: var(--ahl-font-display);
  font-weight: 600;
  font-size: 1.05rem;
  text-align: center;
  color: var(--ahl-text-dim);
}
.ahl__row.rank-1 .ahl__rank { color: var(--ahl-gold); }
.ahl__row.rank-2 .ahl__rank { color: var(--ahl-silver); }
.ahl__row.rank-3 .ahl__rank { color: var(--ahl-bronze); }
/* No frame on the podium rows — the rank number's colour carries the distinction. */

.ahl__place { min-width: 0; }
/* provenance mark: says an entry is an officially published WML result, whose scale
   differs from the research pipeline the rest of the table comes from. Plain text, no
   box: a bordered chip made the row taller and read as a second line. */
.ahl__tag {
  position: absolute;
  top: 6px; right: 9px;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid rgba(244, 180, 0, 0.30);
  background: rgba(244, 180, 0, 0.09);
  font-family: var(--ahl-font-display);
  font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  font-size: 8.5px; line-height: 1;
  color: var(--ahl-accent);
  white-space: nowrap;
  pointer-events: none;
}
.ahl__tip-tag {
  margin-top: 3px;
  font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  font-size: 9.5px;
  color: var(--ahl-accent);
}
.ahl__city { font-weight: 600; font-size: 14.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ahl__meta { font-size: 11px; color: var(--ahl-text-dim); display: flex; gap: 8px; margin-top: 2px; }
.ahl__meta .ahl__flag { font-size: 12px; }

.ahl__score { text-align: right; min-width: 72px; }
.ahl__cmi { font-family: var(--ahl-font-display); font-weight: 600; font-size: 1.15rem; line-height: 1; }
.ahl__bar { height: 4px; border-radius: 3px; background: rgba(255,255,255,.09); margin-top: 6px; overflow: hidden; }
.ahl__bar > i {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--ahl-logo-blue), var(--ahl-accent));
  border-radius: 3px;
}

.ahl__footer {
  flex: 0 0 auto;
  margin-top: 16px;
  margin-right: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--ahl-border);
  font-size: 11px;
  color: var(--ahl-text-dim);
  display: flex; flex-direction: column; gap: 8px;
}
.ahl__note { font-size: 12px; color: #cdd6e6; letter-spacing: 0.01em; }
.ahl__learn { color: var(--ahl-accent); font-weight: 600; text-decoration: none; white-space: nowrap; }
.ahl__learn:hover { text-decoration: underline; }
.ahl__foot-meta { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* ---------- Footer band (bottom; map sits flush on top of it) ---------- */
.ahl__foot {
  flex: 0 0 auto;
  padding: 10px 24px 8px;
  border-top: 1px solid var(--ahl-border);
  background: rgba(5, 15, 35, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--ahl-text-dim);
}
.ahl__foot-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px 44px;
  flex-wrap: wrap;
}
.ahl__foot-brand { display: flex; flex-direction: column; gap: 3px; min-width: 0; max-width: 340px; }
.ahl__foot-name {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ahl-font-display);
  font-weight: 600; font-stretch: expanded;
  font-variation-settings: 'wdth' 112;
  text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 12px; color: var(--ahl-text);
}
.ahl__foot-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ahl-accent); flex: 0 0 auto; }
.ahl__foot-tag { color: var(--ahl-text-muted); font-size: 11px; }
.ahl__foot-addr { color: var(--ahl-text-dim); font-size: 10.5px; }
.ahl__foot-addr a { color: var(--ahl-text-muted); text-decoration: none; }
.ahl__foot-addr a:hover { color: var(--ahl-accent); }
.ahl__foot-col { display: flex; flex-direction: column; gap: 6px; }
.ahl__foot-h {
  font-family: var(--ahl-font-display);
  font-weight: 600; font-stretch: expanded;
  text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 10px; color: var(--ahl-accent);
  margin-bottom: 2px;
}
.ahl__foot-col a {
  color: var(--ahl-text-muted); text-decoration: none;
  font-size: 11.5px; transition: color .2s ease;
}
.ahl__foot-col a:hover { color: var(--ahl-accent); }
.ahl__foot-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
  margin-top: 8px; padding-top: 8px;
  border-top: 1px solid var(--ahl-border);
  font-size: 10.5px; color: var(--ahl-text-dim);
}
.ahl__foot-from {
  font-family: var(--ahl-font-display);
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--ahl-text-muted);
}
.ahl__foot-copy { font-size: 10.5px; color: var(--ahl-text-dim); }

/* ---------- VIP participant card ---------- */
.ahl__card-backdrop {
  position: absolute; inset: 0;
  z-index: 8;
  background: rgba(5, 15, 35, 0.38);
}
.ahl__card-backdrop[hidden] { display: none; }
.ahl__card {
  position: absolute;
  z-index: 9;
  width: min(320px, 80vw);
  background: rgba(9, 17, 40, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--ahl-border-strong);
  border-radius: 16px;
  padding: 16px 16px 14px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.6);
  color: var(--ahl-text);
}
.ahl__card[hidden] { display: none; }
.ahl__card-close {
  position: absolute; top: 8px; right: 8px;
  width: 28px; height: 28px;
  border: none; background: transparent;
  color: var(--ahl-text-dim);
  font-size: 20px; line-height: 1; cursor: pointer;
  border-radius: 8px;
  transition: background .15s ease, color .15s ease;
}
.ahl__card-close:hover { background: rgba(255,255,255,0.08); color: #fff; }
.ahl__card-head { display: flex; gap: 13px; align-items: center; margin-bottom: 12px; padding-right: 24px; }
.ahl__card-photo, .ahl__card-mono {
  width: 56px; height: 56px; border-radius: 50%; flex: 0 0 auto;
}
.ahl__card-photo { object-fit: cover; border: 2px solid var(--ahl-accent); }
.ahl__card-mono {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ahl-font-display);
  font-weight: 700; font-size: 20px;
  color: var(--ahl-accent);
  background: rgba(244,180,0,0.12);
  border: 2px solid var(--ahl-accent);
}
.ahl__card-id { min-width: 0; }
.ahl__card-name {
  font-family: var(--ahl-font-display);
  font-weight: 700; font-stretch: expanded;
  font-variation-settings: 'wdth' 115;
  text-transform: uppercase; letter-spacing: 0.06em;
  font-size: 1.05rem; line-height: 1.12;
}
.ahl__card-place { font-size: 12px; color: var(--ahl-text-dim); margin-top: 3px; }
.ahl__card-tag {
  display: inline-block; margin-top: 7px;
  font-family: var(--ahl-font-display);
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 10px;
  color: var(--ahl-bg); background: var(--ahl-accent);
  padding: 3px 9px; border-radius: 20px;
}
.ahl__card-bio { font-size: 13px; line-height: 1.5; color: var(--ahl-text-muted); margin: 0 0 12px; }
.ahl__card-foot {
  font-family: var(--ahl-font-display);
  font-size: 12px; letter-spacing: 0.06em;
  color: var(--ahl-text-dim);
  padding-top: 10px; border-top: 1px solid var(--ahl-border);
}

/* loading / error */
.ahl__state {
  padding: 60px 20px; text-align: center; color: var(--ahl-text-dim);
  font-size: 14px;
}
.ahl__spinner {
  width: 26px; height: 26px; margin: 0 auto 14px;
  border: 3px solid var(--ahl-border-strong);
  border-top-color: var(--ahl-accent);
  border-radius: 50%;
  animation: ahl-spin .8s linear infinite;
}
@keyframes ahl-spin { to { transform: rotate(360deg); } }

/* scroll cue (mobile only) — hidden by default, shown in the mobile query */
.ahl__scrollcue { display: none; }
@keyframes ahl-cue { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(7px); } }

/* ---------- Tablet / mobile: compact header + bottom-sheet panel ---------- */
@media (max-width: 820px) {
  /* nav: drop the link row (also in the footer), keep logo + Join CTA */
  .ahl__nav { justify-content: space-between; padding: 10px 16px; gap: 12px; }
  .ahl__nav-links { display: none; }

  /* mobile: two full-height screens that SNAP — (1) hero title + counters,
     then (2) map + standings filling the viewport together (no cramped stack) */
  .ahl__wrap {
    display: block;                    /* override the desktop flex column */
    height: 100dvh; overflow-y: auto;
    overscroll-behavior: contain;      /* no page pull-to-refresh */
    scroll-snap-type: y mandatory;
    -webkit-overflow-scrolling: touch;
  }

  /* Screen 1 — hero fills the first viewport, counters centered */
  .ahl__head {
    position: relative;
    min-height: 100dvh;
    scroll-snap-align: start;
    display: flex; flex-direction: column;
    padding: 0 16px 28px;
  }
  .ahl__hero {
    flex: 1 1 auto;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center;
  }
  .ahl__eyebrow { margin-bottom: 10px; font-size: 12px; letter-spacing: 0.32em; }
  .ahl__title { font-size: clamp(1.9rem, 8vw, 2.8rem); margin-bottom: 22px; letter-spacing: 0.06em; }
  .ahl__stats { gap: 34px; margin-top: 4px; }
  .ahl__stat-num { font-size: 1.7rem; }
  .ahl__btn { padding: 8px 14px; font-size: 10.5px; letter-spacing: 0.08em; }

  /* scroll cue at the bottom of screen 1 */
  .ahl__scrollcue {
    display: flex; flex-direction: column; align-items: center; gap: 3px;
    position: absolute; left: 50%; bottom: 24px;
    transform: translateX(-50%);       /* static: the word must not ride the chevron */
    background: none; border: none; padding: 0; cursor: pointer;
    color: var(--ahl-text-dim);
    font-family: var(--ahl-font-display);
    font-size: 10px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
    transition: opacity .3s ease;
  }
  .ahl__scrollcue-chev {
    font-size: 22px; line-height: .6;
    animation: ahl-cue 1.8s ease-in-out infinite;
  }
  .ahl__wrap.is-scrolled .ahl__scrollcue { opacity: 0; pointer-events: none; }

  /* Screen 2 — map fills the TOP ~2/3, scrollable list below it */
  .ahl__stage {
    scroll-snap-align: start;
    display: flex; flex-direction: column;
    height: 100dvh; position: static;
  }
  .ahl__map {
    position: relative; inset: auto;
    flex: 0 0 56dvh; height: auto;
    touch-action: pan-y;               /* fit-zoom: vertical scrolls/snaps page; 2 fingers zoom */
  }
  .ahl__map.is-zoomed { touch-action: none; }   /* zoomed: map owns every gesture */
  .ahl__listcard {
    flex: 1 1 auto; min-height: 0;
    position: static; inset: auto; transform: none;
    width: auto; max-width: none; height: auto; max-height: none;
    margin: 0; border: none; border-radius: 0; box-shadow: none;
    background: rgba(9, 17, 40, 0.72);
    backdrop-filter: none; -webkit-backdrop-filter: none;
    -webkit-mask-image: none; mask-image: none;
    padding: 12px 12px 4px 14px;
    display: flex; flex-direction: column;
  }
  .ahl__rows {
    flex: 1 1 auto; min-height: 0; max-height: none;
    overflow-y: auto; overscroll-behavior: contain; padding-right: 6px; -webkit-overflow-scrolling: touch;
  }
  .ahl__list-title { font-size: 0.95rem; }
  .ahl__list-sub { font-size: 10.5px; margin-bottom: 10px; }
  .ahl__toggle { display: none; }   /* in-flow list below the map: no retract tab */

  /* free the panel for the rows (standings footer hidden on mobile) */
  .ahl__footer { display: none; }

  .ahl__foot { padding: 10px 16px; scroll-snap-align: start; }
  .ahl__foot-main { gap: 12px 28px; }

  /* VIP card: full-screen centered modal */
  .ahl__card-backdrop { position: fixed; inset: 0; }

  /* filter collapses to a "Filter" chip that expands upward, clear of the peek */
  .ahl__filter {
    left: 14px; bottom: 14px;
    display: flex; flex-direction: column-reverse; align-items: flex-start;
    width: auto; max-width: none;
    background: none; border: none; padding: 0;
    backdrop-filter: none; -webkit-backdrop-filter: none;
  }
  .ahl__filter-toggle {
    display: inline-block;
    font-family: var(--ahl-font-display);
    font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em;
    font-size: 11px; color: #fff;
    background: rgba(9, 17, 40, 0.72);
    border: 1px solid var(--ahl-border-strong);
    border-radius: 20px;
    padding: 8px 14px;
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
  }
  .ahl__filter-body {
    display: none;
    margin: 0 0 8px;
    background: rgba(9, 17, 40, 0.72);
    border: 1px solid var(--ahl-border);
    border-radius: 12px;
    padding: 10px 11px;
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    max-width: min(240px, 78vw);
  }
  .ahl__filter.is-open .ahl__filter-body { display: block; }

  /* VIP card: a FIXED panel docked to the right of the screen, over the map
     (not pushed into the flow below the standings) */
  .ahl__card {
    position: fixed;
    top: 50%; right: 10px; left: auto; bottom: auto;
    transform: translateY(-50%);
    width: min(300px, 82vw); max-width: none;
    max-height: 84vh; overflow-y: auto;
    z-index: 60;
  }
  .ahl__card-backdrop { position: fixed; inset: 0; z-index: 59; }
}

/* ---------- Phones: minimal header + stacked footer ---------- */
@media (max-width: 560px) {
  /* drop subtitle + microline so the map band stays clearly visible */
  .ahl__subtitle, .ahl__microline { display: none; }
  .ahl__head { padding: 12px 14px 10px; }
  .ahl__cta { margin-bottom: 12px; }

  /* stats: single row of numbers with dot separators */
  .ahl__stats { gap: 22px; }
  .ahl__stat-num { font-size: 1.1rem; }
  .ahl__stat-label { font-size: 9px; letter-spacing: 0.1em; margin-top: 4px; }
  .ahl__stat + .ahl__stat::before { left: -13px; }

  /* footer as its own full screen, content centered vertically + horizontally */
  .ahl__foot {
    min-height: 100dvh;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 24px; padding: 40px 22px;
  }
  .ahl__foot-main { flex-direction: column; align-items: center; text-align: center; gap: 20px; }
  .ahl__foot-brand { align-items: center; max-width: none; }
  .ahl__foot-col { align-items: center; }
  .ahl__foot-bar { flex-direction: column; gap: 4px; text-align: center; }

  /* compact standings rows — right-justified: name block + score */
  .ahl__row { grid-template-columns: 28px 1fr auto; gap: 8px; padding: 7px 8px; align-items: center; }
  .ahl__row + .ahl__row { margin-top: 1px; }
  .ahl__rank { font-size: 0.85rem; }
  .ahl__place { min-width: 0; }
  .ahl__meta { flex-wrap: nowrap; gap: 6px; font-size: 10px; min-width: 0; }
  .ahl__meta span { white-space: nowrap; }
  .ahl__meta span:first-child { overflow: hidden; text-overflow: ellipsis; min-width: 0; }
  .ahl__city { font-size: 12.5px; }
  .ahl__score { min-width: 58px; }
  .ahl__cmi { font-size: 0.95rem; }
}

@media (prefers-reduced-motion: reduce) {
  .ahl__pin.is-active::after { animation: none; display: none; }
  .ahl__pin.is-dot .ahl__pin-dot { animation: none; }
  .ahl__pin:not(.is-dot):not(.is-cluster)::after { animation: none; display: none; }
  .ahl__row { animation: none; }
  .ahl__scrollcue-chev { animation: none; }
  .ahl__pins.is-entering .ahl__pin { animation: none; }
  .ahl__spinner { animation-duration: 2s; }
}
