/* ============================================================
   LEADERBOARD PAGE (leaderboard.html) - full ladder
   Frost/ice tokens from theme.css only. Per-tier hex arrives
   inline as --tier (DATA, from leaderboard-data.js). Prefix: .lbp-

   Tier colours: always paint TEXT with the rank's *ink* value, never
   its true colour. Onyx is #090909 and Aventurine #054d2a - the live
   site prints those raw and the numbers vanish into the dark page.
   ============================================================ */

.lbp-page { padding-bottom: 0; }

/* Any author `display` beats the UA sheet's [hidden] { display: none }, so every
   element this page toggles via the hidden property has to opt out explicitly -
   otherwise setting .hidden = true changes nothing on screen. */
.lbp-podium[hidden],
.lbp-foot[hidden],
.lbp-search-clear[hidden],
.lbp-tablewrap[hidden],
.lbp-empty[hidden] { display: none; }

/* ============================================================
   Hero
   ============================================================ */
.lbp-eb-ic { width: 16px; height: 16px; flex: 0 0 auto; }

.lbp-hero {
  max-width: 760px;
  margin: 0 auto clamp(30px, 4vw, 44px);
  text-align: center;
}
.lbp-title {
  font-size: clamp(32px, 5.2vw, 54px);
  line-height: 1.04;
  margin-top: 14px;
}
.lbp-sub {
  color: var(--text-dim);
  font-size: clamp(15px, 1.6vw, 17px);
  margin: 16px auto 0;
  max-width: 620px;
  line-height: 1.6;
}

/* three glass figures under the title */
.lbp-stats {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 1.6vw, 16px);
  margin-top: clamp(24px, 3vw, 34px);
}
.lbp-stat {
  flex: 1 1 0;
  max-width: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 15px 12px;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--hairline);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
}
.lbp-stat-v {
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 800;
  line-height: 1;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lbp-stat-k {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--text-mute);
  text-align: center;
}

/* ============================================================
   Controls - board switcher + search
   ============================================================ */
/* Tabs + search ride together as one centred group. `space-between` with a
   growing tab strip pinned the pills to the left edge and pushed the search box
   all the way right, leaving a canyon between them. */
.lbp-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: clamp(26px, 3.4vw, 36px);
}

/* the switcher scrolls sideways rather than wrapping: 8 stats is a lot of pills.
   The mask fades the trailing edge so it reads as "there is more over here". */
.lbp-tabsWrap {
  flex: 0 1 auto;          /* size to the pills, shrink (and scroll) only when it must */
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
/* The pills are ~732px wide. Only fade the trailing edge once they genuinely
   overflow, or the hint would sit there covering "Peak" with nothing to scroll to. */
@media (max-width: 799px) {
  .lbp-tabsWrap {
    -webkit-mask: linear-gradient(90deg, #000 82%, transparent 100%);
    mask: linear-gradient(90deg, #000 82%, transparent 100%);
  }
}
.lbp-tabsWrap::-webkit-scrollbar { display: none; }

.lbp-tabs {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 5px;
  border-radius: var(--r-pill);
  background: var(--surface);
  border: 1px solid var(--hairline);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  white-space: nowrap;
}

/* the sliding pill sits UNDER the labels and is moved by JS */
.lbp-tab-ind {
  position: absolute;
  top: 5px;
  left: 0;
  height: calc(100% - 10px);
  border-radius: var(--r-pill);
  background: var(--accent-grad);
  box-shadow: 0 6px 22px -8px rgba(150,180,220,.85);
  transition: transform var(--t) var(--e-out), width var(--t) var(--e-out);
  will-change: transform, width;
  pointer-events: none;
  z-index: 0;
}
.lbp-tabs.no-anim .lbp-tab-ind { transition: none; }

.lbp-tab {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 15px;
  border: 0;
  border-radius: var(--r-pill);
  background: transparent;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--text-mute);
  white-space: nowrap;
  transition: color var(--t) var(--e-out);
}
.lbp-tab svg { width: 15px; height: 15px; flex: 0 0 auto; }
.lbp-tab:hover { color: var(--text-dim); }
.lbp-tab.is-on { color: #0a1320; }
.lbp-tab:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* search */
.lbp-search-wrap {
  position: relative;
  flex: 0 0 auto;
  width: 250px;
}
.lbp-search-ic {
  position: absolute;
  top: 50%; left: 14px;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  color: var(--text-mute);
  pointer-events: none;
}
.lbp-search {
  width: 100%;
  height: 44px;
  padding: 0 36px 0 40px;
  border-radius: var(--r-pill);
  border: 1px solid var(--hairline);
  background: var(--surface);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
}
.lbp-search::placeholder { color: var(--text-faint); }
.lbp-search:focus {
  outline: none;
  border-color: rgba(180,204,228,.45);
  background: var(--surface-2);
  box-shadow: var(--glow-soft);
}
.lbp-search::-webkit-search-cancel-button { display: none; }
.lbp-search-clear {
  position: absolute;
  top: 50%; right: 8px;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border: 0; border-radius: 50%;
  background: var(--surface-2);
  color: var(--text-dim);
  font-size: 17px; line-height: 1;
  cursor: pointer;
  transition: background var(--t), color var(--t);
}
.lbp-search-clear:hover { background: var(--surface-3); color: var(--text); }

/* ============================================================
   Podium (top 3 of the active board)
   ============================================================ */
.lbp-podium {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(12px, 2.2vw, 24px);
  padding-top: 34px;
  margin-bottom: clamp(30px, 4.4vw, 48px);
}

.lbp-pod {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  max-width: 300px;
  min-height: 262px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 9px;
  padding: 40px 20px 20px;
  animation: podIn .5s var(--e-out) backwards;
  animation-delay: calc(var(--i, 0) * 70ms);
}
.lbp-pod-2 { order: 1; }
.lbp-pod-1 { order: 2; }
.lbp-pod-3 { order: 3; }

.lbp-pod-1 {
  min-height: 304px;
  padding-top: 48px;
  box-shadow: var(--glow-soft), 0 0 62px -14px rgba(243,208,138,.42);
}
.lbp-pod-1:hover {
  box-shadow: var(--glow-soft), 0 0 62px -12px rgba(243,208,138,.6), var(--shadow-md);
}
@keyframes podIn { from { opacity: 0; transform: translateY(16px) scale(.97); } to { opacity: 1; transform: none; } }

/* medal disc, overlapping the card's top edge */
.lbp-pod-rank {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 26%, rgba(255,255,255,.75), transparent 58%),
    var(--medal);
  color: #0b1320;
  font-size: 20px; font-weight: 800; line-height: 1;
  border: 2px solid rgba(255,255,255,.55);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,.5);
  z-index: 3;
}
.lbp-pod-1 .lbp-pod-rank { width: 54px; height: 54px; font-size: 24px; }

.lbp-pod-crown {
  position: absolute;
  top: -21px; left: 50%;
  transform: translateX(-50%);
  width: 27px; height: 27px;
  color: var(--gold);
  filter: drop-shadow(0 3px 7px rgba(243,208,138,.75));
}

.lbp-pod-head {
  width: 76px; height: 76px;
  border-radius: 16px;
  object-fit: cover;
  background: var(--bg-2);
  box-shadow: 0 8px 20px -8px rgba(0,0,0,.55);
}
.lbp-pod-1 .lbp-pod-head { width: 92px; height: 92px; }

.lbp-pod-name {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.12;
  overflow-wrap: anywhere;
}
.lbp-pod-1 .lbp-pod-name { font-size: clamp(18px, 2.4vw, 24px); }
.lbp-pod-name:hover { color: var(--ice-200); }

.lbp-pod-tier {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--tier, var(--text-dim));
}
.lbp-pod-tier img { width: 16px; height: 16px; object-fit: contain; }

/* Belt and braces with num()'s compacting: even a freak value must stay inside
   the card, so the number is allowed to shrink and wrap rather than spill. */
.lbp-pod-val {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-top: 3px;
  max-width: 100%;
  min-width: 0;
}
.lbp-pod-val .tnum {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  min-width: 0;
  overflow-wrap: anywhere;
}
.lbp-pod-1 .lbp-pod-val .tnum { font-size: clamp(30px, 4.8vw, 44px); }
.lbp-pod-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.lbp-pod-base {
  margin-top: auto;
  width: 56%;
  height: 6px;
  border-radius: var(--r-pill);
  background: var(--medal);
  opacity: .9;
  box-shadow: 0 4px 16px -4px var(--medal);
}
.lbp-pod-1 .lbp-pod-base { width: 68%; height: 8px; }

/* ============================================================
   Table panel
   ============================================================ */
.lbp-panel {
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  background: var(--surface);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  overflow: hidden;
}
.lbp-tablewrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.lbp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}

.lbp-table thead th {
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding: 15px 18px;
  background: rgba(15,19,32,.72);
  border-bottom: 1px solid var(--hairline-strong);
  white-space: nowrap;
}
.c-pos { width: 62px; }
.c-rank { width: 168px; }
.c-rec { width: 132px; }
.c-wr { width: 118px; }
.c-val { width: 118px; text-align: right; }
.lbp-table thead .c-val { color: var(--ice-200); }

/* rows */
.lbp-row { cursor: pointer; transition: background var(--t-fast) var(--e-out); }
.lbp-row > td {
  padding: 12px 18px;
  border-top: 1px solid var(--hairline);
  vertical-align: middle;
}
.lbp-row:nth-child(4n+3) { background: rgba(255,255,255,.018); }
.lbp-row:hover { background: var(--surface-2); }
.lbp-row.is-open { background: var(--surface-2); }
.lbp-row.is-open > td { border-bottom-color: transparent; }
.lbp-row:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }

/* stagger the rows in on every render (tab switch, page turn, search) */
.lbp-row { animation: rowIn .34s var(--e-out) backwards; animation-delay: calc(var(--i, 0) * 22ms); }
@keyframes rowIn { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: none; } }

/* position + medal tint for the top 3 */
.lbp-pos {
  font-weight: 800;
  color: var(--text-mute);
  font-family: var(--font-price);
  font-variant-numeric: tabular-nums lining-nums;
}
.lbp-row.top1 .lbp-pos { color: var(--gold); }
.lbp-row.top2 .lbp-pos { color: var(--silver); }
.lbp-row.top3 .lbp-pos { color: var(--bronze); }
.lbp-row.top1 > td:first-child,
.lbp-row.top2 > td:first-child,
.lbp-row.top3 > td:first-child { box-shadow: inset 3px 0 0 var(--medal, transparent); }

/* player cell */
.lbp-p {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}
.lbp-head {
  width: 32px; height: 32px;
  border-radius: 8px;
  object-fit: cover;
  flex: 0 0 auto;
  background: var(--surface-2);
}
.lbp-name {
  font-weight: 700;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lbp-row:hover .lbp-name { color: var(--ice-100); }

/* tier chip */
.lbp-tier {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 11px 4px 6px;
  border-radius: var(--r-pill);
  border: 1px solid var(--hairline);
  background: var(--surface-2);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--tier, var(--text-dim));
  white-space: nowrap;
}
.lbp-tier img { width: 18px; height: 18px; object-fit: contain; flex: 0 0 auto; }
@supports (background: color-mix(in srgb, red, blue)) {
  .lbp-tier {
    background: color-mix(in srgb, var(--tier) 12%, transparent);
    border-color: color-mix(in srgb, var(--tier) 30%, transparent);
  }
}

/* record: wins / losses */
.lbp-rec { display: inline-flex; align-items: baseline; gap: 8px; white-space: nowrap; }
.lbp-rec b {
  font-family: var(--font-price);
  font-variant-numeric: tabular-nums lining-nums;
  font-weight: 700;
  font-size: 14px;
}
.lbp-rec .w { color: var(--safe); }
.lbp-rec .l { color: var(--danger); }
.lbp-rec i { font-style: normal; font-size: 11px; font-weight: 700; color: var(--text-faint); }

/* win rate + bar */
.lbp-wr { display: flex; flex-direction: column; gap: 5px; min-width: 84px; }
.lbp-wr-v {
  font-family: var(--font-price);
  font-variant-numeric: tabular-nums lining-nums;
  font-size: 13.5px; font-weight: 700;
  color: var(--text-dim);
}
.lbp-wr-bar {
  height: 4px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.08);
  overflow: hidden;
}
.lbp-wr-fill {
  height: 100%;
  border-radius: inherit;
  background: var(--accent-grad);
  width: 0;
  transition: width .6s var(--e-out);
}

/* the active stat */
.lbp-val {
  text-align: right;
  font-family: var(--font-price);
  font-variant-numeric: tabular-nums lining-nums;
  font-size: 17px;
  font-weight: 800;
  color: var(--valc, var(--text));
  white-space: nowrap;
}

/* ============================================================
   Expanded detail row
   ============================================================ */
.lbp-drow > td { padding: 0; border: 0; }
.lbp-dwrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--t) var(--e-out);
  background: rgba(8,11,19,.5);
}
.lbp-drow.is-open .lbp-dwrap { grid-template-rows: 1fr; }
.lbp-dinner { overflow: hidden; }
.lbp-drow.is-open .lbp-dinner { border-bottom: 1px solid var(--hairline-strong); }
.lbp-dpad {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 2.4vw, 30px);
  padding: 20px 18px 22px 62px;
}

.lbp-dstats {
  display: grid;
  grid-template-columns: repeat(4, minmax(78px, 1fr));
  gap: 10px;
  flex: 1 1 340px;
  align-content: start;
}
.lbp-dstat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 11px 13px;
  border-radius: var(--r-sm);
  background: var(--surface);
  border: 1px solid var(--hairline);
}
.lbp-dstat-v {
  font-family: var(--font-price);
  font-variant-numeric: tabular-nums lining-nums;
  font-size: 16px; font-weight: 800;
  color: var(--text);
  line-height: 1;
  min-width: 0;
  overflow-wrap: anywhere;
}
.lbp-dstat-k {
  font-size: 10px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-faint);
}

.lbp-recent { flex: 1 1 300px; min-width: 0; }
.lbp-recent-h {
  font-size: 10px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 9px;
}
.lbp-game {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 11px;
  border-radius: var(--r-sm);
  border: 1px solid var(--hairline);
  background: var(--surface);
  margin-bottom: 6px;
  font-size: 12.5px;
}
.lbp-game:last-child { margin-bottom: 0; }
.lbp-game-r {
  font-size: 10px; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--r-pill);
  flex: 0 0 auto;
}
.lbp-game-r.won { background: rgba(87,217,163,.14); color: var(--safe); }
.lbp-game-r.lost { background: rgba(255,107,122,.14); color: var(--danger); }
.lbp-game-map {
  color: var(--text-dim);
  font-weight: 600;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  flex: 1 1 auto;
}
.lbp-game-mvp {
  font-size: 10px; font-weight: 800;
  letter-spacing: .06em;
  color: var(--gold);
  flex: 0 0 auto;
}
.lbp-game-d {
  font-family: var(--font-price);
  font-variant-numeric: tabular-nums lining-nums;
  font-weight: 700;
  flex: 0 0 auto;
}
.lbp-game-d.up { color: var(--safe); }
.lbp-game-d.down { color: var(--danger); }
.lbp-dnone { color: var(--text-faint); font-size: 12.5px; }

/* ============================================================
   Empty state · footer · pager
   ============================================================ */
.lbp-empty {
  padding: 44px 24px;
  text-align: center;
  color: var(--text-mute);
  font-size: 14px;
}
.lbp-empty a { font-weight: 600; }

/* Count over a centred pager, the way the live site stacks it. Centring also
   keeps the page buttons clear of the floating Discord widget in the corner. */
.lbp-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  padding: 16px 18px 18px;
  border-top: 1px solid var(--hairline);
  background: rgba(15,19,32,.4);
}
.lbp-count { font-size: 12.5px; color: var(--text-mute); }
.lbp-count b { color: var(--text-dim); font-weight: 700; }

.lbp-pager { display: flex; align-items: center; gap: 6px; }
.lbp-pg {
  min-width: 34px; height: 34px;
  padding: 0 10px;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  border-radius: var(--r-sm);
  border: 1px solid var(--hairline);
  background: var(--surface);
  color: var(--text-dim);
  font-size: 13px; font-weight: 700;
  cursor: pointer;
  transition: background var(--t), border-color var(--t), color var(--t), transform var(--t-fast) var(--e-spring);
}
.lbp-pg svg { width: 14px; height: 14px; }
.lbp-pg:hover:not([disabled]):not(.is-on) { background: var(--surface-3); border-color: var(--hairline-strong); color: var(--text); }
.lbp-pg:active:not([disabled]) { transform: scale(.95); }
.lbp-pg.is-on {
  background: var(--accent-grad);
  border-color: transparent;
  color: #0a1320;
  box-shadow: 0 5px 18px -7px rgba(150,180,220,.8);
  cursor: default;
}
.lbp-pg[disabled] { opacity: .32; pointer-events: none; }
.lbp-pg-gap { color: var(--text-faint); padding: 0 2px; font-weight: 700; }

/* Footer note - a block, NOT a flex row. Each bare text node inside a flex
   container becomes its own anonymous flex item, so the sentence gets chopped
   into unwrappable columns as soon as it is too narrow for one line. */
.lbp-note {
  display: block;
  margin: 20px auto 0;
  max-width: 620px;
  color: var(--text-mute);
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}
.lbp-note a { color: var(--text-dim); font-weight: 600; }
.lbp-note a:hover { color: var(--accent); }
.lbp-note-dot {
  display: inline-block;
  vertical-align: middle;
  width: 7px; height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--safe);
  animation: lbpPing 2.4s var(--e-in-out) infinite;
}
@keyframes lbpPing {
  0%   { box-shadow: 0 0 0 0 rgba(87,217,163,.5); }
  70%  { box-shadow: 0 0 0 7px rgba(87,217,163,0); }
  100% { box-shadow: 0 0 0 0 rgba(87,217,163,0); }
}

.lbp-page .subfoot { margin-top: clamp(48px, 6vw, 76px); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1020px) {
  .lbp-controls { flex-direction: column; align-items: center; gap: 10px; }
  .lbp-search-wrap { width: 100%; max-width: 420px; }
  .lbp-tabsWrap { width: 100%; }
}

/* Once stacked, centre the pills in their full-width strip while they still fit.
   Below 800 they overflow and must stay left-aligned - centring an overflowing
   scroll container puts its leading pills off-screen with no way to reach them. */
@media (max-width: 1020px) and (min-width: 800px) {
  .lbp-tabsWrap { text-align: center; }
}

@media (max-width: 900px) {
  .c-rec, .lbp-rec-cell { display: none; }
  .lbp-dpad { padding-left: 18px; }
  .lbp-dstats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .c-wr, .lbp-wr-cell,
  .c-rank, .lbp-rank-cell { display: none; }

  .lbp-podium {
    flex-direction: column;
    align-items: stretch;
    gap: 44px;
    padding-top: 36px;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }
  /* `flex: 1 1 0` sizes the WIDTH while the podium is a row; the moment it turns
     into a column that basis:0 becomes a HEIGHT and the cards collapse to nothing
     with their heads and names spilling out. Height must come from content here. */
  .lbp-pod, .lbp-pod-1 { flex: 0 0 auto; max-width: none; min-height: 0; padding-top: 44px; }
  .lbp-pod-1 { order: 0; }
  .lbp-pod-2 { order: 1; }
  .lbp-pod-3 { order: 2; }
  .lbp-pod-base { margin-top: 14px; }

  .lbp-stats { gap: 8px; }
  .lbp-stat { padding: 12px 8px; }
}

@media (max-width: 420px) {
  .lbp-row > td { padding: 11px 12px; }
  .lbp-table thead th { padding: 13px 12px; }
  .lbp-head { width: 28px; height: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  .lbp-note-dot { animation: none; }
  .lbp-row, .lbp-pod { animation: none; }
  .lbp-tab-ind, .lbp-wr-fill, .lbp-dwrap { transition: none; }
}
