/* London Free Guide — Save / bookmark feature styling.
   Built on tokens.css; mirrors the badge / pill / map vocabulary already in
   home.css + spot.css. Theme-aware (dark default, light overrides at the end).
   The three directions (heart | tray | map) share these styles; per-direction
   bits are scoped with .pat-heart / .pat-tray / .pat-map. */

/* ---------- corner save button (over a post image) ---------- */
.save-btn {
  position: absolute; top: 8px; right: 8px; z-index: 4;
  width: 34px; height: 34px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(14,14,14,.55); color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  transition: transform .14s ease, background .15s ease, border-color .15s ease;
  line-height: 0;
}
.save-btn:hover { transform: scale(1.08); background: rgba(14,14,14,.72); }
.save-btn .save-ico { font-size: 1rem; line-height: 1; display: block; }
.save-btn.pat-map .save-ico { font-size: .9rem; }
.save-btn.on { background: var(--lfg-accent); border-color: var(--lfg-accent); }
.save-btn.on:hover { background: var(--lfg-accent); filter: brightness(1.05); }
.save-btn.on .save-ico { animation: savepop .26s ease; }
@keyframes savepop { 0% { transform: scale(.5); } 60% { transform: scale(1.28); } 100% { transform: scale(1); } }
/* keep badges clear of the corner button */
.post-img:has(.save-btn) .badges { right: 50px; }

/* stroke heart icon sizing (replaces the ♥ emoji glyph) */
.save-btn .hico { width: 18px; height: 18px; display: block; }
.nav-saved .hico { width: 18px; height: 18px; display: block; }
.hero-save .hico { width: 18px; height: 18px; display: block; }

/* ---------- nav entry + count ---------- */
.nav-saved {
  position: relative; flex-shrink: 0;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--lfg-white-15); color: var(--lfg-white-70);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .98rem; transition: color .15s, border-color .15s, background .15s;
}
.nav-saved:hover { color: var(--lfg-white); border-color: var(--lfg-white-30); }
.nav-saved.has { color: var(--lfg-accent); border-color: var(--lfg-accent); }
.nav-saved.pat-map .nav-saved-ico { font-size: .86rem; }
.nav-saved-count {
  position: absolute; top: -5px; right: -5px;
  min-width: 17px; height: 17px; padding: 0 4px; border-radius: 999px;
  background: var(--lfg-accent); color: #fff;
  font-family: var(--lfg-font-body); font-weight: 700; font-size: .62rem;
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid var(--lfg-black);
}

/* ---------- spot-hero save button ---------- */
.hero-save { display: inline-flex; align-items: center; gap: 7px; }
.hero-save .hero-save-ico { font-size: 1.05rem; line-height: 1; }
.hero-save.on { background: var(--lfg-accent); border-color: var(--lfg-accent); color: #fff; }

/* ---------- toast ---------- */
.save-toast {
  position: fixed; left: 50%; bottom: 96px; transform: translateX(-50%);
  z-index: 90; max-width: calc(100vw - 28px);
  display: inline-flex; align-items: center; gap: 14px;
  background: #1b1b1b; color: #fff;
  border: 1px solid var(--lfg-white-15); border-radius: var(--lfg-radius-pill);
  padding: 9px 9px 9px 16px; box-shadow: 0 14px 40px rgba(0,0,0,.45);
  animation: toastin .26s cubic-bezier(.2,.7,.3,1);
}
@keyframes toastin { from { opacity: 0; transform: translate(-50%, 12px); } to { opacity: 1; transform: translate(-50%, 0); } }
.save-toast-txt { font-size: .82rem; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.save-toast-txt b { font-weight: 700; }
.save-toast-name { color: var(--lfg-white-70); }
.save-toast-view {
  flex-shrink: 0; background: var(--lfg-accent); color: #fff;
  font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .03em;
  padding: .5rem .8rem; border-radius: var(--lfg-radius-pill);
}
.save-toast-view:hover { filter: brightness(1.06); }
@media (max-width: 520px) { .save-toast-name { display: none; } }

/* ---------- docked planning tray (tray direction) ---------- */
.tray {
  position: fixed; left: 50%; bottom: 18px; transform: translateX(-50%);
  z-index: 65; width: max-content; max-width: calc(100vw - 24px);
}
.tray-inner {
  display: inline-flex; align-items: center; gap: 14px;
  background: #1b1b1b; color: #fff;
  border: 1px solid var(--lfg-white-15); border-radius: var(--lfg-radius-pill);
  padding: 8px 10px 8px 12px; box-shadow: 0 16px 44px rgba(0,0,0,.5);
  transition: transform .14s ease;
  animation: trayin .3s cubic-bezier(.2,.7,.3,1);
}
.tray-inner:hover { transform: translateY(-2px); }
@keyframes trayin { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.tray-thumbs { display: inline-flex; align-items: center; }
.tray-thumbs img {
  width: 34px; height: 34px; border-radius: 8px; object-fit: cover;
  border: 2px solid #1b1b1b; margin-left: -10px; box-shadow: 0 1px 3px rgba(0,0,0,.4);
}
.tray-thumbs img:first-child { margin-left: 0; }
.tray-thumb-noimg { width: 34px; height: 34px; border-radius: 8px; margin-left: -10px; border: 2px solid #1b1b1b; display: inline-flex; align-items: center; justify-content: center; background: var(--lfg-accent); color: #fff; font-family: var(--lfg-font-head); font-weight: 700; font-size: .8rem; }
.tray-thumb-noimg:first-child { margin-left: 0; }
.tray-more {
  width: 34px; height: 34px; border-radius: 8px; margin-left: -10px;
  background: var(--lfg-white-15); color: #fff; font-size: .72rem; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center; border: 2px solid #1b1b1b;
}
.tray-label { font-size: .84rem; font-weight: 500; color: var(--lfg-white-70); white-space: nowrap; }
.tray-label b { color: #fff; font-weight: 700; }
.tray-cta {
  flex-shrink: 0; background: var(--lfg-accent); color: #fff;
  font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .03em;
  padding: .55rem .85rem; border-radius: var(--lfg-radius-pill);
}
@media (max-width: 520px) {
  .tray-label { display: none; }
  body.has-tray .agent-fab { bottom: 86px; }
}

/* ---------- review panel (slide-over) ---------- */
.saved-scrim {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(0,0,0,.55); opacity: 0; pointer-events: none;
  transition: opacity .22s ease;
}
.saved-scrim.open { opacity: 1; pointer-events: auto; }
.saved-panel {
  position: fixed; top: 0; right: 0; height: 100%; z-index: 81;
  width: min(440px, 100%); max-width: 100%;
  background: var(--lfg-black); border-left: 1px solid var(--lfg-white-15);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .28s cubic-bezier(.4,0,.2,1);
  box-shadow: -24px 0 60px rgba(0,0,0,.4);
}
.saved-panel.open { transform: none; }

.saved-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 20px; border-bottom: 1px solid var(--lfg-white-08);
}
.saved-head-l { display: flex; align-items: baseline; gap: 10px; min-width: 0; }
.saved-title { font-family: var(--lfg-font-head); font-weight: 700; text-transform: uppercase; font-size: 1.5rem; line-height: 1; }
.saved-count { font-size: .78rem; font-weight: 600; color: var(--lfg-white-50); white-space: nowrap; }
.saved-head-r { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.saved-clear { font-size: .76rem; font-weight: 600; color: var(--lfg-white-50); padding: 6px 10px; border-radius: 8px; }
.saved-clear:hover { color: var(--lfg-accent); background: var(--lfg-white-08); }
.saved-close { width: 34px; height: 34px; border-radius: 50%; font-size: 1.5rem; line-height: 1; color: var(--lfg-white-70); display: inline-flex; align-items: center; justify-content: center; }
.saved-close:hover { color: var(--lfg-white); background: var(--lfg-white-08); }

.saved-body { flex: 1; overflow-y: auto; padding: 16px 20px 28px; }
.saved-plan { font-size: .86rem; color: var(--lfg-white-70); line-height: 1.5; margin-bottom: 14px; text-wrap: pretty; }

/* list / grid layouts */
.saved-list.as-rows { display: flex; flex-direction: column; gap: 10px; }
.saved-list.as-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* a saved row */
.srow {
  display: flex; align-items: center; gap: 12px;
  background: var(--lfg-white-08); border-radius: 12px; padding: 8px;
}
.srow-num {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--lfg-accent); color: #fff; font-weight: 700; font-size: .76rem;
  display: inline-flex; align-items: center; justify-content: center;
}
.srow-thumb { flex-shrink: 0; width: 56px; height: 56px; border-radius: 9px; overflow: hidden; background: #1a1a1a; }
.srow-thumb img { width: 100%; height: 100%; object-fit: cover; }
.srow-main { flex: 1; min-width: 0; }
.srow-title { display: block; font-weight: 600; font-size: .9rem; line-height: 1.25; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.srow-title:hover { color: var(--lfg-accent); }
.srow-meta { display: flex; align-items: center; gap: 8px; margin-top: 4px; flex-wrap: wrap; }
.srow-loc { font-size: .72rem; font-weight: 500; color: var(--lfg-white-50); }
.srow-actions { display: flex; align-items: center; gap: 2px; flex-shrink: 0; }
.srow-map, .srow-remove {
  width: 30px; height: 30px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center;
  color: var(--lfg-white-50); font-size: 1rem; line-height: 1;
}
.srow-map:hover { color: var(--lfg-accent); background: var(--lfg-white-08); }
.srow-remove { font-size: 1.3rem; }
.srow-remove:hover { color: var(--lfg-white); background: var(--lfg-white-08); }

/* grid variant: stack thumb over text */
.saved-list.as-grid .srow { flex-direction: column; align-items: stretch; gap: 8px; padding: 8px; position: relative; }
.saved-list.as-grid .srow-thumb { width: 100%; height: 96px; }
.saved-list.as-grid .srow-actions { position: absolute; top: 12px; right: 12px; gap: 4px; }
.saved-list.as-grid .srow-map, .saved-list.as-grid .srow-remove { background: rgba(14,14,14,.6); color: #fff; -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }

/* ---------- your-map view (map direction) ---------- */
.savedmap {
  position: relative; height: 220px; margin-bottom: 16px;
  border-radius: 14px; overflow: hidden; background: #14140f; border: 1px solid var(--lfg-white-08);
}
.savedmap .grid { position: absolute; inset: 0; background-image: radial-gradient(var(--lfg-white-08) 1px, transparent 1px); background-size: 22px 22px; }
.savedmap .road { position: absolute; background: rgba(255,255,255,.07); }
.savedmap .road.r1 { left: -5%; right: -5%; top: 56%; height: 9px; transform: rotate(-7deg); }
.savedmap .road.r2 { top: -5%; bottom: -5%; left: 40%; width: 8px; transform: rotate(8deg); }
.savedmap .park { position: absolute; left: 30%; top: 30%; width: 130px; height: 100px; border-radius: 46% 54% 60% 40%; background: rgba(46,204,64,.13); }
.savedmap .river { position: absolute; left: -10%; right: -10%; top: 72%; height: 20px; background: rgba(42,111,219,.16); transform: rotate(-5deg); }
.smap-pin { position: absolute; transform: translate(-50%, -100%); }
.smap-pin .tear {
  width: 26px; height: 26px; background: var(--lfg-accent); border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg); box-shadow: 0 6px 16px rgba(0,0,0,.45);
  display: flex; align-items: center; justify-content: center;
}
.smap-pin .tear b { transform: rotate(45deg); color: #fff; font-weight: 700; font-size: .72rem; }

/* ---------- sync nudge (magic-link capture) ---------- */
.sync {
  margin-top: 20px; padding: 18px; border-radius: 14px;
  background: var(--lfg-white-08); border: 1px solid var(--lfg-white-08);
  border-left: 4px solid var(--lfg-accent);
}
.sync-hand { font-family: var(--lfg-font-hand); color: var(--lfg-white); font-size: 1.5rem; line-height: 1; display: block; margin-bottom: 2px; }
.sync-copy p { font-size: .86rem; line-height: 1.5; color: var(--lfg-white-70); text-wrap: pretty; }
.sync-row { display: flex; gap: 8px; margin-top: 12px; }
.sync-row input {
  flex: 1; min-width: 0; background: var(--lfg-black); border: 1px solid var(--lfg-white-15);
  color: var(--lfg-white); font: inherit; font-size: .88rem; padding: .68rem .8rem; border-radius: var(--lfg-radius-sm);
}
.sync-row input::placeholder { color: var(--lfg-white-30); }
.sync-row .btn { white-space: nowrap; padding: .68rem 1rem; }
.sync-note { font-size: .7rem; color: var(--lfg-white-30); margin-top: 9px; }
.sync.done { display: flex; align-items: flex-start; gap: 9px; font-size: .86rem; line-height: 1.45; color: var(--lfg-white-90); }
.sync-tick { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: #2ECC40; color: #fff; font-size: .72rem; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; margin-top: 1px; }

/* ---------- empty state ---------- */
.saved-empty { text-align: center; padding: 48px 18px; }
.saved-empty-ico { font-size: 2.4rem; line-height: 1; display: block; margin-bottom: 14px; opacity: .55; }
.saved-empty p { font-size: .92rem; color: var(--lfg-white-50); line-height: 1.5; max-width: 28ch; margin: 0 auto 18px; text-wrap: pretty; }

/* ===================== LIGHT MODE ===================== */
[data-theme="light"] .save-toast,
[data-theme="light"] .tray-inner { background: #ffffff; color: var(--lfg-white); box-shadow: 0 16px 44px rgba(28,20,13,.2); }
[data-theme="light"] .tray-thumbs img,
[data-theme="light"] .tray-more { border-color: #ffffff; }
[data-theme="light"] .save-toast-name { color: var(--lfg-white-70); }
[data-theme="light"] .nav-saved-count { border-color: var(--lfg-black); }
[data-theme="light"] .saved-panel { background: #faf7f2; }
[data-theme="light"] .srow { background: #ffffff; box-shadow: 0 1px 3px rgba(28,20,13,.06); }
[data-theme="light"] .sync { background: #ffffff; }
[data-theme="light"] .sync-row input { background: #f4f0ea; }
[data-theme="light"] .savedmap { background: #ece4d8; }
[data-theme="light"] .savedmap .grid { background-image: radial-gradient(rgba(28,20,13,.1) 1px, transparent 1px); }
[data-theme="light"] .saved-list.as-grid .srow-map,
[data-theme="light"] .saved-list.as-grid .srow-remove { background: rgba(255,255,255,.85); color: var(--lfg-white); }

/* ===================================================================== *
 *  DEDICATED SAVED PAGE  (Saved.html)
 *  A real route for the collection — heart = grid, tray = day-plan rows,
 *  map = stylised map + numbered rows. Mirrors the home feed vocabulary.
 * ===================================================================== */
.savedpg { padding: 26px 0 48px; }

/* header */
.savedpg-head { margin-bottom: 6px; }
.savedpg-title {
  font-family: var(--lfg-font-head); font-weight: 700; text-transform: uppercase;
  font-size: clamp(2.5rem, 6.5vw, 4.2rem); line-height: .9; letter-spacing: -.01em; margin-top: 6px;
}
.savedpg-title .r { color: var(--lfg-accent); }
.savedpg-subrow { display: flex; align-items: baseline; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.savedpg-count {
  flex-shrink: 0; font-family: var(--lfg-font-body); font-weight: 700; font-size: .74rem;
  text-transform: uppercase; letter-spacing: .04em; color: #fff;
  background: var(--lfg-accent); padding: .34rem .64rem; border-radius: var(--lfg-radius-pill);
}
.savedpg-line { font-size: .95rem; color: var(--lfg-white-70); line-height: 1.5; max-width: 58ch; text-wrap: pretty; }

/* action bar */
.savedpg-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.sbtn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--lfg-font-body); font-weight: 700; text-transform: uppercase; letter-spacing: .03em;
  font-size: .76rem; padding: .62rem 1.05rem; border-radius: var(--lfg-radius-pill);
  white-space: nowrap;
  transition: filter .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
}
.sbtn-primary { background: var(--lfg-accent); color: #fff; }
.sbtn-primary:hover { filter: brightness(1.06); }
.sbtn-ghost { background: transparent; color: var(--lfg-white-70); border: 1.5px solid var(--lfg-white-15); }
.sbtn-ghost:hover { color: #fff; border-color: var(--lfg-white-30); }

/* share the list off the device */
.savedpg-share { margin-top: 18px; display: flex; align-items: center; gap: 14px 16px; flex-wrap: wrap; }
.savedpg-share-label {
  font-family: var(--lfg-font-hand); color: var(--lfg-white-50);
  font-size: 1.45rem; line-height: 1; transform: translateY(2px);
}
.savedpg-share-btns { display: flex; flex-wrap: wrap; gap: 8px; }
.shbtn {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--lfg-font-body); font-weight: 600; font-size: .8rem;
  color: var(--lfg-white-90); background: var(--lfg-white-08);
  border: 1px solid var(--lfg-white-08); padding: .46rem .78rem;
  border-radius: var(--lfg-radius-pill); white-space: nowrap;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.shbtn:hover { color: #fff; background: var(--lfg-white-15); border-color: var(--lfg-white-15); }
.shbtn-ico { width: 15px; height: 15px; flex-shrink: 0; }
.shbtn-share { background: var(--lfg-accent); border-color: var(--lfg-accent); color: #fff; }
.shbtn-share:hover { background: var(--lfg-accent); border-color: var(--lfg-accent); filter: brightness(1.07); }
[data-theme="light"] .savedpg-share-label { color: rgba(28,20,13,.55); }
[data-theme="light"] .shbtn { color: rgba(28,20,13,.82); background: rgba(28,20,13,.05); border-color: rgba(28,20,13,.1); }
[data-theme="light"] .shbtn:hover { color: #1c140d; background: rgba(28,20,13,.09); }
[data-theme="light"] .shbtn-share { color: #fff; }

/* heart: reuse the feed grid. The Saved page doesn't load app.jsx (which sets
   --mcols/-wide from the column tweak), so pin them to the feed's "regular"
   default — 2 up on mobile, 3 on desktop — instead of the bare :root fallback
   of 4, which made saved cards narrower and taller than the Explore feed. */
.savedpg-grid { --mcols: 2; --mcols-wide: 3; margin-top: 24px; }

/* tray + map: roomy numbered rows */
.savedpg-rows { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.prow {
  display: flex; align-items: center; gap: 16px;
  background: var(--lfg-white-08); border: 1px solid var(--lfg-white-08);
  border-radius: 16px; padding: 12px; transition: border-color .15s ease;
}
.prow:hover { border-color: var(--lfg-white-15); }
.prow-num {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  background: var(--lfg-accent); color: #fff;
  font-family: var(--lfg-font-body); font-weight: 700; font-size: .9rem;
  display: inline-flex; align-items: center; justify-content: center;
}
.prow-thumb { flex-shrink: 0; width: 118px; height: 90px; border-radius: 11px; overflow: hidden; background: #1a1a1a; }
.prow-thumb.noimg { display: flex; align-items: center; justify-content: center; background: var(--lfg-pure-black); position: relative; }
.prow-thumb-free { font-family: var(--lfg-font-body); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; font-size: .58rem; padding: .36em .7em; border-radius: var(--lfg-radius-pill); background: var(--lfg-accent); color: #fff; }
.prow-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .2s ease; }
.prow-thumb:hover img { transform: scale(1.05); }
.prow-main { flex: 1; min-width: 0; }
.prow-title { display: block; font-family: var(--lfg-font-body); font-weight: 600; font-size: 1.08rem; line-height: 1.2; }
.prow-title:hover { color: var(--lfg-accent); }
.prow-sum {
  font-size: .86rem; color: var(--lfg-white-70); line-height: 1.45; margin-top: 4px; text-wrap: pretty;
  overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.prow-meta { display: flex; align-items: center; gap: 12px; margin-top: 8px; flex-wrap: wrap; }
.prow-loc, .prow-hours { font-size: .74rem; font-weight: 500; color: var(--lfg-white-50); }
.prow-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.prow-open { font-family: var(--lfg-font-body); font-weight: 700; font-size: .74rem; text-transform: uppercase; letter-spacing: .03em; color: var(--lfg-accent); white-space: nowrap; }
.prow-open:hover { filter: brightness(1.12); }
.prow-map { font-size: .74rem; font-weight: 600; color: var(--lfg-white-50); white-space: nowrap; }
.prow-map:hover { color: #fff; }
.prow-remove { width: 32px; height: 32px; border-radius: 9px; font-size: 1.4rem; line-height: 1; color: var(--lfg-white-50); display: inline-flex; align-items: center; justify-content: center; }
.prow-remove:hover { color: #fff; background: var(--lfg-white-08); }

/* map direction: a bigger map on the page */
.savedpg .savedmap { height: clamp(260px, 40vh, 420px); margin: 24px 0 4px; }

/* sync nudge — give it a sensible measure on the wide page */
.savedpg-sync { max-width: 580px; margin-left: auto; margin-right: auto; }

/* empty state */
.savedpg-empty { text-align: center; padding: 56px 18px 84px; }
.savedpg-empty-ico { font-size: 3rem; line-height: 1; display: block; margin-bottom: 8px; opacity: .5; }
.savedpg-empty-hand { font-family: var(--lfg-font-hand); color: var(--lfg-white); font-size: 2.1rem; line-height: 1; margin-bottom: 8px; }
.savedpg-empty p { font-size: 1rem; color: var(--lfg-white-50); line-height: 1.5; max-width: 36ch; margin: 0 auto 22px; text-wrap: pretty; }
.savedpg-empty .savedpg-empty-hand { font-size: 2.1rem; color: var(--lfg-white); max-width: none; margin: 0 auto 8px; }
.savedpg-empty .sbtn { margin: 0 auto; }

/* responsive: rows collapse the summary, shrink the thumb */
@media (max-width: 640px) {
  .prow { gap: 12px; padding: 10px; align-items: flex-start; }
  .prow-thumb { width: 84px; height: 84px; }
  .prow-sum { -webkit-line-clamp: 2; }
  .prow-actions { flex-direction: column; align-items: flex-end; gap: 6px; }
}

/* ---- light mode ---- */
[data-theme="light"] .prow { background: #ffffff; border-color: rgba(28,20,13,.08); box-shadow: 0 1px 3px rgba(28,20,13,.05); }
[data-theme="light"] .prow:hover { border-color: rgba(28,20,13,.16); }
[data-theme="light"] .sbtn-ghost { color: var(--lfg-white-70); border-color: rgba(28,20,13,.16); }
[data-theme="light"] .sbtn-ghost:hover { color: var(--lfg-black); border-color: rgba(28,20,13,.32); }
[data-theme="light"] .prow-map { color: var(--lfg-white-50); }
[data-theme="light"] .prow-map:hover { color: var(--lfg-black); }
