/* ============================================================
   WildJournal — application layout
   Page-level layout built strictly on the design-system tokens.
   ============================================================ */

body { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1 0 auto; }

/* skip link */
.wj-skip { position: absolute; left: -9999px; top: 0; background: var(--bg-accent); color: var(--text-on-accent); padding: var(--wj-space-3) var(--wj-space-4); border-radius: var(--wj-radius-sm); z-index: 200; }
.wj-skip:focus { left: var(--wj-space-4); top: var(--wj-space-4); }

/* ---------- TOP NAV ---------- */
.wj-nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: var(--wj-space-4);
  padding: var(--wj-space-3) var(--wj-gutter);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: var(--wj-border-width) solid var(--border);
}
.wj-nav-logo { font-family: var(--wj-font-display); font-weight: 900; font-size: var(--wj-text-xl); text-transform: uppercase; letter-spacing: -0.01em; }
.wj-nav-logo span { color: var(--text-accent); }
.wj-nav-links { display: flex; align-items: center; gap: var(--wj-space-2); }
.wj-nav-link { padding: var(--wj-space-2) var(--wj-space-3); border-radius: var(--wj-radius-pill); font-weight: 600; font-size: var(--wj-text-sm); color: var(--text-muted); transition: all var(--wj-dur-fast); }
.wj-nav-link:hover { color: var(--text); }
.wj-nav-link.active { color: var(--text-accent); }
.wj-nav-actions { display: flex; align-items: center; gap: var(--wj-space-3); }

.wj-theme-toggle { width: 40px; height: 40px; border-radius: 50%; border: var(--wj-border-width) solid var(--border-strong); display: grid; place-items: center; color: var(--text); transition: all var(--wj-dur-fast); }
.wj-theme-toggle:hover { border-color: var(--border-accent); color: var(--text-accent); }
.wj-theme-toggle svg { width: 18px; height: 18px; }
.wj-theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .wj-theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .wj-theme-toggle .icon-moon { display: block; }

.wj-nav-burger { display: none; width: 40px; height: 40px; border-radius: var(--wj-radius-sm); border: var(--wj-border-width) solid var(--border-strong); color: var(--text); }
.wj-nav-burger svg { width: 20px; height: 20px; }

@media (max-width: 820px) {
  .wj-nav-links { position: fixed; inset: 60px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--bg-elevated); border-bottom: var(--wj-border-width) solid var(--border); padding: var(--wj-space-3); transform: translateY(-120%); transition: transform var(--wj-dur) var(--wj-ease); }
  .wj-nav-links.open { transform: translateY(0); }
  .wj-nav-link { padding: var(--wj-space-3); }
  .wj-nav-burger { display: grid; place-items: center; }
}

/* ---------- USER MENU ---------- */
.wj-usermenu { position: relative; }
.wj-usermenu-btn { display: inline-flex; align-items: center; gap: var(--wj-space-2); }
.wj-usermenu-panel { position: absolute; right: 0; top: calc(100% + 8px); min-width: 180px; background: var(--bg-elevated); border: var(--wj-border-width) solid var(--border); border-radius: var(--wj-radius-md); padding: var(--wj-space-2); box-shadow: var(--wj-shadow-md); display: none; }
.wj-usermenu-panel.open { display: block; }
.wj-usermenu-panel a, .wj-usermenu-panel button { display: block; width: 100%; text-align: left; padding: var(--wj-space-2) var(--wj-space-3); border-radius: var(--wj-radius-sm); font-size: var(--wj-text-sm); color: var(--text); }
.wj-usermenu-panel a:hover, .wj-usermenu-panel button:hover { background: var(--bg-card-hover); color: var(--text-accent); }

/* ---------- FOOTER ---------- */
.wj-footer { border-top: var(--wj-border-width) solid var(--border); padding: var(--wj-space-7) var(--wj-gutter); margin-top: var(--wj-space-8); }
.wj-footer-inner { max-width: var(--wj-max-width); margin-inline: auto; display: flex; justify-content: space-between; gap: var(--wj-space-5); flex-wrap: wrap; align-items: center; }
.wj-footer a { color: var(--text-muted); font-size: var(--wj-text-sm); }
.wj-footer a:hover { color: var(--text-accent); }

/* ---------- FLASH ---------- */
.wj-flash-stack { position: fixed; top: 76px; right: var(--wj-gutter); z-index: 150; display: flex; flex-direction: column; gap: var(--wj-space-2); max-width: 360px; }
.wj-flash { padding: var(--wj-space-3) var(--wj-space-4); border-radius: var(--wj-radius-md); border: var(--wj-border-width) solid var(--border-strong); background: var(--bg-elevated); font-size: var(--wj-text-sm); box-shadow: var(--wj-shadow-md); }
.wj-flash-success { border-left: 4px solid var(--wj-go); }
.wj-flash-error { border-left: 4px solid var(--wj-nogo); }
.wj-flash-info { border-left: 4px solid var(--wj-info); }

/* ---------- TOPOGRAPHIC PAGE BACKDROP ---------- */
/* Fixed, full-viewport contour lines, like a topo map — geometry lives in
   the SVG masks, colour comes from the theme token underneath. Two depth
   layers drift gently with the cursor (see topo-bg.js) for a subtle sense
   of life; everything else paints over it as normal. */
.wj-topo-bg { position: fixed; inset: 0; pointer-events: none; overflow: hidden; --topo-x: 0; --topo-y: 0; }
.wj-topo-layer {
  position: absolute; inset: -5%;
  mask-repeat: no-repeat; -webkit-mask-repeat: no-repeat;
  mask-size: cover; -webkit-mask-size: cover;
  mask-position: center; -webkit-mask-position: center;
  transition: transform 1.2s var(--wj-ease);
  will-change: transform;
}
.wj-topo-layer-far {
  background-color: color-mix(in srgb, var(--text) 7%, transparent);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1920 1080'%3E%3Cdefs%3E%3Cg id='h' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M820,120 C850,115 870,140 865,165 C860,195 830,210 800,200 C775,192 775,155 800,130 C808,122 815,118 820,120 Z'/%3E%3Cpath d='M830,90 C880,85 920,125 915,170 C910,225 860,255 805,245 C755,235 735,180 765,135 C790,98 810,93 830,90 Z'/%3E%3Cpath d='M845,60 C915,55 970,115 965,180 C958,255 885,300 805,288 C730,277 695,200 740,135 C780,78 805,65 845,60 Z'/%3E%3Cpath d='M860,30 C955,25 1030,110 1025,195 C1018,295 920,355 815,340 C715,326 665,225 725,140 C778,65 815,38 860,30 Z'/%3E%3Cpath d='M880,0 C1010,-10 1110,100 1105,210 C1095,335 970,415 835,398 C705,382 635,255 715,150 C785,55 830,12 880,0 Z'/%3E%3C/g%3E%3C/defs%3E%3Cuse href='%23h' transform='translate(-650,180) scale(0.85)'/%3E%3Cuse href='%23h' transform='translate(500,680) scale(0.95) rotate(35 870 200)'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1920 1080'%3E%3Cdefs%3E%3Cg id='h' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M820,120 C850,115 870,140 865,165 C860,195 830,210 800,200 C775,192 775,155 800,130 C808,122 815,118 820,120 Z'/%3E%3Cpath d='M830,90 C880,85 920,125 915,170 C910,225 860,255 805,245 C755,235 735,180 765,135 C790,98 810,93 830,90 Z'/%3E%3Cpath d='M845,60 C915,55 970,115 965,180 C958,255 885,300 805,288 C730,277 695,200 740,135 C780,78 805,65 845,60 Z'/%3E%3Cpath d='M860,30 C955,25 1030,110 1025,195 C1018,295 920,355 815,340 C715,326 665,225 725,140 C778,65 815,38 860,30 Z'/%3E%3Cpath d='M880,0 C1010,-10 1110,100 1105,210 C1095,335 970,415 835,398 C705,382 635,255 715,150 C785,55 830,12 880,0 Z'/%3E%3C/g%3E%3C/defs%3E%3Cuse href='%23h' transform='translate(-650,180) scale(0.85)'/%3E%3Cuse href='%23h' transform='translate(500,680) scale(0.95) rotate(35 870 200)'/%3E%3C/svg%3E");
  transform: translate3d(calc(var(--topo-x) * 10px), calc(var(--topo-y) * 6px), 0);
}
.wj-topo-layer-near {
  background-color: color-mix(in srgb, var(--text) 11%, transparent);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1920 1080'%3E%3Cdefs%3E%3Cg id='h' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M820,120 C850,115 870,140 865,165 C860,195 830,210 800,200 C775,192 775,155 800,130 C808,122 815,118 820,120 Z'/%3E%3Cpath d='M830,90 C880,85 920,125 915,170 C910,225 860,255 805,245 C755,235 735,180 765,135 C790,98 810,93 830,90 Z'/%3E%3Cpath d='M845,60 C915,55 970,115 965,180 C958,255 885,300 805,288 C730,277 695,200 740,135 C780,78 805,65 845,60 Z'/%3E%3Cpath d='M860,30 C955,25 1030,110 1025,195 C1018,295 920,355 815,340 C715,326 665,225 725,140 C778,65 815,38 860,30 Z'/%3E%3Cpath d='M880,0 C1010,-10 1110,100 1105,210 C1095,335 970,415 835,398 C705,382 635,255 715,150 C785,55 830,12 880,0 Z'/%3E%3C/g%3E%3C/defs%3E%3Cuse href='%23h' transform='translate(250,-60) scale(1.15)'/%3E%3Cuse href='%23h' transform='translate(1000,520) scale(0.7) rotate(-30 870 200)'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1920 1080'%3E%3Cdefs%3E%3Cg id='h' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M820,120 C850,115 870,140 865,165 C860,195 830,210 800,200 C775,192 775,155 800,130 C808,122 815,118 820,120 Z'/%3E%3Cpath d='M830,90 C880,85 920,125 915,170 C910,225 860,255 805,245 C755,235 735,180 765,135 C790,98 810,93 830,90 Z'/%3E%3Cpath d='M845,60 C915,55 970,115 965,180 C958,255 885,300 805,288 C730,277 695,200 740,135 C780,78 805,65 845,60 Z'/%3E%3Cpath d='M860,30 C955,25 1030,110 1025,195 C1018,295 920,355 815,340 C715,326 665,225 725,140 C778,65 815,38 860,30 Z'/%3E%3Cpath d='M880,0 C1010,-10 1110,100 1105,210 C1095,335 970,415 835,398 C705,382 635,255 715,150 C785,55 830,12 880,0 Z'/%3E%3C/g%3E%3C/defs%3E%3Cuse href='%23h' transform='translate(250,-60) scale(1.15)'/%3E%3Cuse href='%23h' transform='translate(1000,520) scale(0.7) rotate(-30 870 200)'/%3E%3C/svg%3E");
  transform: translate3d(calc(var(--topo-x) * -20px), calc(var(--topo-y) * -14px), 0);
}
@media (prefers-reduced-motion: reduce) {
  .wj-topo-layer { transition: none; transform: none !important; }
}

/* ---------- HERO ---------- */
/* Text and boots share the same grid cell so the text column isn't
   squeezed (which was causing awkward word-wrapping) — the boots panel
   is pinned to the right, vertically centred, and the text can overlap
   it freely. */
.wj-hero {
  padding-block: var(--wj-space-9); display: grid; grid-template-columns: 1fr; align-items: center; min-height: 80vh;
}
.wj-hero-content { grid-area: 1 / 1; z-index: 2; max-width: 56rem; }
.wj-hero h1 { font-size: var(--wj-text-hero); max-width: 16ch; }
.wj-hero .accent { color: var(--text-accent); }
.wj-hero p { font-size: var(--wj-text-lg); color: var(--text-muted); max-width: 52ch; margin-top: var(--wj-space-5); }
.wj-hero-actions { display: flex; gap: var(--wj-space-3); margin-top: var(--wj-space-6); flex-wrap: wrap; }

@media (max-width: 900px) {
  .wj-hero { min-height: 0; }
  .wj-hero-content { max-width: none; }
}

/* ---------- BOOTS SCROLL-SCRUB ---------- */
/* Sits in the hero's grid cell, centred and pinned to the right behind the
   text, and scrolls with the page like any normal element — only the
   displayed frame changes as the hero scrolls past. */
.wj-boots-scrub { grid-area: 1 / 1; justify-self: end; align-self: center; width: min(900px, 60%); z-index: 1; }
.wj-boots-sticky {
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.wj-boots-canvas { width: 100%; height: auto; }
.wj-boots-video { display: none; }

@media (max-width: 900px) {
  .wj-boots-scrub { width: min(420px, 80vw); }
}

/* ---------- GENERIC GRID ---------- */
.wj-grid { display: grid; gap: var(--wj-space-5); }
.wj-grid-cards { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.wj-grid-stats { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.wj-page-head { margin-bottom: var(--wj-space-6); }
.wj-page-head h1 { font-size: var(--wj-text-4xl); text-transform: uppercase; }
.wj-page-head p { color: var(--text-muted); margin-top: var(--wj-space-2); max-width: 60ch; }

/* directory filters */
.wj-filters { display: flex; gap: var(--wj-space-3); flex-wrap: wrap; align-items: flex-end; margin-bottom: var(--wj-space-6); }
.wj-filters .wj-field { margin-bottom: 0; }
.wj-chips { display: flex; gap: var(--wj-space-2); flex-wrap: wrap; margin-bottom: var(--wj-space-5); }

/* location card meta */
.wj-loc-meta { display: flex; gap: var(--wj-space-3); flex-wrap: wrap; color: var(--text-subtle); font-size: var(--wj-text-xs); margin-top: var(--wj-space-3); }
.wj-loc-meta span { display: inline-flex; align-items: center; gap: 4px; }

/* detail layout */
.wj-detail { display: grid; grid-template-columns: 2fr 1fr; gap: var(--wj-space-6); align-items: start; }
.wj-detail-gallery { border-radius: var(--wj-radius-lg); overflow: hidden; aspect-ratio: 16/9; background: var(--bg-inset); }
.wj-detail-gallery img { width: 100%; height: 100%; object-fit: cover; }
.wj-detail-aside { position: sticky; top: 80px; display: flex; flex-direction: column; gap: var(--wj-space-4); }
.wj-detail-mini-map { height: 220px; border-radius: var(--wj-radius-md); overflow: hidden; border: var(--wj-border-width) solid var(--border); }
.wj-meta-row { display: flex; justify-content: space-between; padding: var(--wj-space-2) 0; border-bottom: var(--wj-border-width) solid var(--border); font-size: var(--wj-text-sm); }
.wj-meta-row:last-child { border-bottom: none; }
.wj-meta-row dt { color: var(--text-subtle); }
.wj-meta-row dd { font-weight: 600; text-align: right; }
.wj-season { display: grid; grid-template-columns: repeat(12, 1fr); gap: 4px; }
.wj-season-cell { text-align: center; font-size: 10px; padding: var(--wj-space-2) 2px; border-radius: var(--wj-radius-sm); background: var(--bg-inset); color: var(--text-subtle); }
@media (max-width: 820px) { .wj-detail { grid-template-columns: 1fr; } .wj-detail-aside { position: static; } }

/* wishlist toggle */
.wj-btn-wishlist svg { transition: fill 0.15s, stroke 0.15s; }
.wj-btn-wishlist[aria-pressed="true"] svg { fill: var(--bg-accent); stroke: var(--bg-accent); }

/* ratings + reviews */
.wj-rating-summary { display: flex; align-items: center; gap: var(--wj-space-2); }
.wj-stars { display: inline-flex; gap: 2px; color: var(--bg-accent); }
.wj-stars svg { fill: none; stroke: currentColor; }
.wj-stars .filled svg { fill: currentColor; }
.wj-rating-count { color: var(--text-subtle); font-size: var(--wj-text-sm); }
.wj-review { padding: var(--wj-space-4) 0; border-bottom: var(--wj-border-width) solid var(--border); }
.wj-review:last-child { border-bottom: none; }
.wj-review-head { display: flex; align-items: center; justify-content: space-between; gap: var(--wj-space-3); margin-bottom: var(--wj-space-2); }
.wj-review-author { font-weight: 600; }
.wj-review-date { color: var(--text-subtle); font-size: var(--wj-text-xs); }
.wj-rating-input { display: flex; gap: var(--wj-space-2); }
.wj-rating-input button { background: none; border: none; cursor: pointer; padding: 2px; color: var(--text-subtle); }
.wj-rating-input button.active, .wj-rating-input button:hover { color: var(--bg-accent); }
.wj-rating-input button.active svg, .wj-rating-input button:hover svg { fill: currentColor; }
.wj-rating-input svg { stroke: currentColor; fill: none; }

/* ---------- MAP ---------- */
.wj-map-shell { display: grid; grid-template-columns: 360px 1fr; height: calc(100vh - 61px); }
.wj-map-panel { border-right: var(--wj-border-width) solid var(--border); padding: var(--wj-space-5); overflow-y: auto; background: var(--bg); }
.wj-map-container { position: relative; height: 100%; width: 100%; }
.wj-map { height: 100%; width: 100%; background: var(--bg-inset); }
.wj-map-results { display: none; }
.wj-map-result { padding: var(--wj-space-3); border: var(--wj-border-width) solid var(--border); border-radius: var(--wj-radius-md); cursor: pointer; transition: all var(--wj-dur-fast); }
.wj-map-result:hover { border-color: var(--border-accent); background: var(--bg-card-hover); }
.wj-map-result-dist { color: var(--text-accent); font-family: var(--wj-font-mono); font-size: var(--wj-text-xs); }
@media (max-width: 820px) { .wj-map-shell { grid-template-columns: 1fr; height: auto; } .wj-map-container { height: 60vh; } }

/* Bottom-of-map "Search here / Suggest here" controls (Google Maps pattern) */
.wj-map-bottom-bar { position: absolute; bottom: var(--wj-space-4); left: 50%; transform: translateX(-50%); z-index: 1000; display: flex; gap: var(--wj-space-2); }
.wj-map-bottom-bar .wj-btn { box-shadow: var(--wj-shadow-md); }

/* Foldable "Types" filter section */
.wj-types-fold > summary { cursor: pointer; list-style: none; }
.wj-types-fold > summary::-webkit-details-marker { display: none; }
.wj-types-fold > summary::after { content: '▾'; float: right; color: var(--text-subtle); }
.wj-types-fold[open] > summary::after { content: '▴'; }

/* leaflet pin */
.wj-pin { width: 22px; height: 22px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); border: 2px solid #fff; box-shadow: var(--wj-shadow-sm); }
.wj-pin-ai { border-style: dashed; border-color: var(--wj-caution, #E8A33D); }

/* route start/finish markers */
.wj-pin-start, .wj-pin-finish {
  width: 22px; height: 22px; border-radius: 50%; border: 2px solid #fff; box-shadow: var(--wj-shadow-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--wj-text-xs); font-weight: 700; color: #fff;
}
.wj-pin-start { background: #1F7A4D; }
.wj-pin-finish { background: #C0392B; }

/* "Home" marker (search centre) */
.wj-pin-home {
  width: 28px; height: 28px; border-radius: 50%; border: 2px solid #fff; box-shadow: var(--wj-shadow-sm);
  display: flex; align-items: center; justify-content: center;
  color: #fff; background: var(--text-accent); cursor: grab;
}
.wj-pin-home:active { cursor: grabbing; }

/* AI suggestion badge (map results) */
.wj-ai-badge { display: inline-block; font-size: var(--wj-text-xs); font-family: var(--wj-font-mono); padding: 2px 8px; border-radius: var(--wj-radius-sm); background: var(--wj-orange-100); color: var(--wj-orange-800); text-transform: uppercase; letter-spacing: .04em; }
[data-theme="dark"] .wj-ai-badge { background: var(--wj-orange-900); color: var(--wj-orange-200); }
.wj-map-result-ai { border-style: dashed; }

/* AI "thinking" spinner */
.wj-spinner { display: inline-block; width: 14px; height: 14px; border: 2px solid var(--border); border-top-color: var(--text-accent); border-radius: 50%; vertical-align: middle; margin-right: var(--wj-space-2); animation: wj-spin 0.7s linear infinite; }
.wj-spinner[hidden] { display: none; }
@keyframes wj-spin { to { transform: rotate(360deg); } }

/* AI suggestion result image + save button */
.wj-map-result-ai-img { width: 100%; height: 110px; object-fit: cover; border-radius: var(--wj-radius-sm); margin-top: var(--wj-space-2); display: block; }
.wj-map-result-save { margin-top: var(--wj-space-2); }
.wj-map-result-save[aria-pressed="true"] { color: var(--text-accent); border-color: var(--border-accent); }

/* ---------- ADMIN: LOCATION PICKER + PHOTOS ---------- */
.wj-picker-map { height: 360px; width: 100%; border-radius: var(--wj-radius-md); overflow: hidden; border: var(--wj-border-width) solid var(--border); background: var(--bg-inset); }
.wj-geocode-results { position: absolute; z-index: 1000; top: calc(100% + 4px); left: 0; right: 0; background: var(--bg-card); border: var(--wj-border-width) solid var(--border); border-radius: var(--wj-radius-md); box-shadow: var(--wj-shadow-md); overflow: hidden; max-height: 280px; overflow-y: auto; }
.wj-geocode-item { display: block; width: 100%; text-align: left; padding: var(--wj-space-3); border: none; background: none; color: var(--text); font-size: var(--wj-text-sm); cursor: pointer; border-bottom: var(--wj-border-width) solid var(--border); }
.wj-geocode-item:last-child { border-bottom: none; }
.wj-geocode-item:hover, .wj-geocode-item:focus { background: var(--bg-card-hover); color: var(--text-accent); }
.wj-photo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: var(--wj-space-3); }
.wj-photo { position: relative; margin: 0; aspect-ratio: 4 / 3; border-radius: var(--wj-radius-md); overflow: hidden; border: var(--wj-border-width) solid var(--border); background: var(--bg-inset); }
.wj-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wj-photo-del { position: absolute; top: 6px; right: 6px; display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: var(--wj-radius-sm); border: none; cursor: pointer; background: rgba(0,0,0,0.6); color: #fff; transition: background var(--wj-dur-fast); }
.wj-photo-del:hover { background: var(--wj-nogo, #c0392b); }

/* ---------- AUTH ---------- */
.wj-auth { max-width: 440px; margin: var(--wj-space-8) auto; padding-inline: var(--wj-gutter); }
.wj-auth-card { background: var(--bg-card); border: var(--wj-border-width) solid var(--border); border-radius: var(--wj-radius-lg); padding: var(--wj-space-6); }
.wj-auth h1 { font-size: var(--wj-text-2xl); text-transform: uppercase; margin-bottom: var(--wj-space-2); }
.wj-auth-sub { color: var(--text-muted); font-size: var(--wj-text-sm); margin-bottom: var(--wj-space-5); }
.wj-auth-alt { text-align: center; margin-top: var(--wj-space-5); font-size: var(--wj-text-sm); color: var(--text-muted); }
.wj-auth-alt a { color: var(--text-accent); font-weight: 600; }

/* misc */
.wj-empty { text-align: center; padding: var(--wj-space-8) var(--wj-space-4); color: var(--text-muted); }
.wj-pagination { display: flex; gap: var(--wj-space-2); justify-content: center; margin-top: var(--wj-space-7); }
.wj-disclaimer { background: color-mix(in srgb, var(--wj-caution) 12%, transparent); border: var(--wj-border-width) solid var(--wj-caution); border-radius: var(--wj-radius-md); padding: var(--wj-space-4); font-size: var(--wj-text-sm); }
.wj-cluster { background: var(--bg-accent); color: var(--text-on-accent); border-radius: 50%; display: grid; place-items: center; font-family: var(--wj-font-display); font-weight: 800; border: 2px solid #fff; }
