/* Launchpad live-coins widget — generic, dark-mode friendly, mobile-aware. */

.lc-section {
  position: relative;
  margin: 24px 0;
  background: linear-gradient(145deg, var(--color-bg-card, #16161a) 0%, rgba(0, 0, 0, 0.18) 100%);
  border: 1px solid var(--color-border, rgba(255, 255, 255, 0.08));
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.06), inset 0 1px rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lc-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.45) 50%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.lc-section:hover {
  border-color: rgba(212, 175, 55, 0.22);
  box-shadow: 0 0 32px rgba(212, 175, 55, 0.10), inset 0 1px rgba(255, 255, 255, 0.05);
}

.lc-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--color-border, #ffffff14);
}

.lc-header h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text, #fff);
  margin: 0;
  letter-spacing: -0.01em;
}

.lc-meta {
  display: flex;
  gap: 12px;
  font-size: 0.72rem;
  color: var(--color-text-muted, #ffffff80);
  font-family: var(--font-mono, ui-monospace, SFMono-Regular, monospace);
  flex-wrap: wrap;
}

.lc-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.lc-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-size: 0.84rem;
  line-height: 1.4;
  font-family: var(--font-mono, ui-monospace, SFMono-Regular, monospace);
}

/* Body cells use a tighter 1.25 line-height (header keeps the table
   default 1.4 for easier label scanning). 1.25 × 13.4px = 16.8px text
   line — combined with 6+6px padding produces ~30px text-only rows;
   the avatar (28px) drives the row to its target ~40px instead. */
.lc-table tbody td {
  line-height: 1.25;
}

/* Cell padding 6px vertical / 14px horizontal — targets 38-40px row height
   at desktop (avatar 28px + 6+6 padding + 0px line buffer = 40px), aligned
   with dYdX (36-40px), Hyperliquid (~32px), TradingView (~36px). The
   horizontal asymmetry on numeric cells (.lc-num below) anchors digits
   to the right edge — Bloomberg-terminal pattern. */
.lc-table th,
.lc-table td {
  padding: 6px 14px;
  text-align: left;
  border-bottom: 1px solid var(--color-border, #ffffff10);
  vertical-align: middle;
}

/* Header: uppercase mono labels with the slightly heavier 0.06em
   letter-spacing (Bloomberg/dYdX use 0.05-0.08em). The 1px gradient
   bottom-border below thead cells is what makes a financial-data table
   feel "premium" — sticky header gets its own gold-tint fade instead of
   sharing the body's flat 1px line. */
.lc-table th {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-dim, #ffffff60);
  background: var(--color-bg, transparent);
  position: sticky;
  top: 0;
  z-index: 1;
  white-space: nowrap;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid transparent;
  background-image:
    linear-gradient(var(--color-bg, transparent), var(--color-bg, transparent)),
    linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.32) 50%, transparent 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

/* Sortable column header — clickable, keyboard-accessible, with caret. */
.lc-th-sortable {
  cursor: pointer;
  user-select: none;
  transition: color 0.15s ease, background-color 0.15s ease;
}

.lc-th-sortable:hover {
  color: var(--accent, #d4af37);
  background: rgba(212, 175, 55, 0.06);
}

.lc-th-sortable:focus-visible {
  outline: 2px solid var(--accent, #d4af37);
  outline-offset: -2px;
  color: var(--accent, #d4af37);
}

.lc-th-sortable[aria-sort="ascending"],
.lc-th-sortable[aria-sort="descending"] {
  color: var(--accent, #d4af37);
}

.lc-sort-caret {
  display: inline-block;
  margin-left: 6px;
  font-size: 0.7em;
  opacity: 0.35;
  transition: opacity 0.15s ease;
  font-family: var(--font-mono, ui-monospace, monospace);
}

.lc-th-sortable:hover .lc-sort-caret { opacity: 0.7; }

.lc-th-sortable[aria-sort="ascending"] .lc-sort-caret,
.lc-th-sortable[aria-sort="descending"] .lc-sort-caret { opacity: 1; }

.lc-th-sortable[aria-sort="none"] .lc-sort-caret::before,
.lc-th-sortable:not([aria-sort]) .lc-sort-caret::before { content: "↕"; }
.lc-th-sortable[aria-sort="ascending"] .lc-sort-caret::before { content: "▲"; }
.lc-th-sortable[aria-sort="descending"] .lc-sort-caret::before { content: "▼"; }

.lc-table tbody tr {
  transition: background-color 0.15s ease, box-shadow 0.15s ease;
}

.lc-table tbody tr:hover {
  background: rgba(212, 175, 55, 0.06);
  box-shadow: inset 3px 0 0 var(--accent, #d4af37);
}

.lc-table tbody tr:last-child td {
  border-bottom: none;
}

/* Numeric cells anchor digits to the right edge — Bloomberg pattern.
   Selector is double-class .lc-table .lc-num (specificity 0,2,0) so it
   wins over the generic .lc-table td (0,1,1). Asymmetric horizontal
   padding (16px right vs 14px left) anchors the rightmost digit inside
   the column visual-center rather than touching the cell edge.
   tabular-nums + nowrap is non-negotiable for a financial table. */
.lc-table td.lc-num,
.lc-table th.lc-num {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  padding-right: 16px;
}

/* Token column — sized as the primary identity column, not a shrink-to-fit
   helper. Uses .lc-table td.lc-tk (specificity 0,2,1) to beat the
   protocol-styles.css `td:nth-child(n+2){text-align:right}` bleed-rule
   that ships site-wide on every launchpad page. Without this override
   the avatar would left-pin and the name+ticker would push to the cell's
   right edge, leaving a dead gap in the middle of the column. */
.lc-table td.lc-tk {
  min-width: 220px;
  max-width: none;
  width: auto;
  white-space: normal;
  text-align: left;
}

/* Numeric columns: width:1% + nowrap is the table-cell shrink-to-fit
   idiom — the column collapses to its content width, leaving slack for
   the TOKEN column to grow. min-width:84px (was 90) so MCap/Vol/etc.
   don't visually flare wider than they need at the new tighter font. */
.lc-table .lc-num { min-width: 84px; width: 1%; white-space: nowrap; }

/* Rank column — tighter (32px vs 36px), dim by design so it never
   competes with the token identity. tabular-nums + right-align of the
   digits inside the cell keeps the # column visually anchored on the
   same right-edge as numeric columns below it. */
.lc-rank {
  width: 32px;
  color: var(--color-text-dim, #ffffff60);
  font-size: 0.72rem;
  font-variant-numeric: tabular-nums;
  text-align: right;
  padding-right: 8px;
  font-weight: 500;
}

/* Token cell layout — single-line redesign (May 9 2026):

     [avatar] [name ──────────────────] [ticker] · [score] · [pill]

   Everything inline on one row at desktop. The name owns the flex slack
   (flex:1 1 auto + min-width:0 + ellipsis) so long names like "Hyper
   Intelligent Innovations AI" truncate gracefully without pushing the
   ticker/score/pill out of the visible cell. The meta-row stays
   flex-shrink:0 so its members never compress.

   At ≤640px (mobile card-stack tier), .token-cell-row wraps so a really
   long name plus all 3 chips can lay out across two lines without
   colliding — the wrap is opt-in via the row's flex-wrap:wrap. */

/* Desktop / tablet: avatar stays at the canonical 28px (same as HTML
   attr), matching the dense-table pattern from Birdeye/Solscan/dYdX.
   28px (not 32px) is what enables 38-40px row height — at 32px the row
   is forced to ~50px and the table loses its scan-density. The
   monogram fallback shares the slot dimensions so a 404 swap doesn't
   shift. */
.lc-tk .token-icon {
  width: 28px;
  height: 28px;
}
.lc-tk .token-icon-mono {
  font-size: 0.72rem;
}

/* Inline row container — replaces the legacy .token-cell-text column
   wrapper for this widget. Sibling pages (launchpad-treasury) still
   use .token-cell-text from token-icon.css for their column-stacked
   identity cells; this row is .lc-tk-scoped only.
   gap:8px (was 10px) tightens the avatar→name→meta visual rhythm to
   match the row's 38px target height — at gap:10 the eye reads three
   loosely-coupled clumps, at gap:8 it reads as a single identity strip. */
.lc-tk .token-cell-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: nowrap;
}

/* Name — owns the row's leftover horizontal space, ellipsis-clips when
   exceeded. flex:1 1 auto means it grows to fill the row but shrinks
   first when the column is squeezed (so the ticker/score/pill chips
   never get cropped). 0.88rem (was 0.92) — financial-data tables run
   tighter than marketing copy; Hyperliquid uses ~13px name text. */
.lc-tk .lc-name {
  flex: 1 1 auto;
  min-width: 0;
  display: inline-block;
  font-family: var(--font-sans, system-ui, sans-serif);
  font-weight: 600;
  color: var(--color-text, #fff);
  letter-spacing: -0.01em;
  /* font-size inherited from .lc-table (0.84rem) so name + ticker +
     score chip all read at one consistent size — per user request
     "we should use one font size". */
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lc-tk .lc-name-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.lc-tk .lc-name-link:hover,
.lc-tk .lc-name-link:focus-visible {
  color: var(--accent, #d4af37);
  border-bottom-color: var(--accent, #d4af37);
}

/* Meta-row — ticker + score chip + kickstart pill, inline on the same
   row as the name. flex-shrink:0 so chips never compress when the name
   is long. Whitespace-only separation (gap:8px, no bullets) — the
   Solscan/Birdeye/dYdX pattern. Bullets in a token cell read as
   noise: the brain treats the avatar+name+ticker+chip as ONE identity
   bundle, so explicit dividers between them are anti-scan. The chip
   borders + ticker case-shift do the visual segregation work for free. */
.lc-tk .lc-meta-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  min-width: 0;
}

/* Ticker (mono uppercase, lives in the meta-row instead of below the
   whole cell). Reads unambiguously as "ticker symbol" so the eye doesn't
   confuse it with the name. Slightly heavier weight than the legacy
   .lc-sub since it now carries the meta-row's primary identification. */
/* Ticker chip — mono uppercase, secondary visual weight. 0.66rem (was
   0.7) tracks the new 0.88rem name; the ticker should always read at
   ~75% of name's optical weight so the eye lands on the name first. */
.lc-tk .lc-ticker {
  font-family: var(--font-mono, ui-monospace, SFMono-Regular, monospace);
  /* font-size inherited (0.84rem) — unified per user request. */
  color: var(--color-text-muted, #a0a0a8);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}

/* Squeeze score badge — small color-coded chip next to the token name
   in the live-coins table. Color matches squeeze-detail.css signal
   palette so the chip and the destination page agree. Inset shadow +
   tighter padding = reads as a sticker, not a pill. Intensifies on row
   hover (defense-in-depth coupling — both the row hover-bg AND the
   chip ring brighten so the eye lands here naturally). */
.lc-score {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono, ui-monospace, SFMono-Regular, monospace);
  /* font-size inherited (0.84rem) — unified per user request. */
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  padding: 1px 6px;
  border-radius: 4px;
  vertical-align: middle;
  letter-spacing: 0.02em;
  cursor: default;
  line-height: 1.5;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.lc-table tr:hover .lc-score {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10), 0 0 0 1px rgba(212, 175, 55, 0.08);
}
/* Signal color palette — kept literal for green/amber/blue/orange/red
   because they're cross-page-semantic signal cues (same palette as
   squeeze-detail.css .sd-sig-* and base.css .badge-buy/sell). The
   "forming" gold variant uses the project's terracotta token so it
   tracks the brand accent in light theme. The neutral variant uses
   --color-text-dim so it shifts correctly in light vs dark. */
.lc-sig-squeeze       { color: #22c55e; background: rgba(34,197,94,0.12); }
.lc-sig-forming       { color: var(--accent, #d4af37); background: rgba(var(--color-terracotta-rgb, 212,175,55), 0.12); }
.lc-sig-early         { color: #f59e0b; background: rgba(245,158,11,0.12); }
.lc-sig-watchlist     { color: #3b82f6; background: rgba(59,130,246,0.12); }
.lc-sig-late          { color: #f97316; background: rgba(249,115,22,0.12); }
.lc-sig-concentrated  { color: #ef4444; background: rgba(239,68,68,0.12); }
.lc-sig-neutral       { color: var(--color-text-dim, #ffffff60); background: rgba(128,128,128,0.10); }

/* .lc-sub is retained as a no-op safety net; the redesigned cell renders
   the ticker as <span class="lc-ticker"> inside .lc-meta-row instead.
   Kept here so any cached pre-redesign HTML (e.g. SSR skeleton snapshots)
   doesn't render an unstyled fallback. Same typography as .lc-ticker. */
.lc-tk .lc-sub {
  font-family: var(--font-mono, ui-monospace, SFMono-Regular, monospace);
  font-size: 0.66rem;
  color: var(--color-text-dim, #ffffff60);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 1px;
}

/* X column header — show the SVG mark, not the letter "X" alone, so it
   reads instantly as the brand. .lc-sr keeps a screen-reader label. */
.lc-x-col {
  text-align: right !important;
}
.lc-x-col .lc-x-icon {
  color: var(--color-text-dim, #ffffff60);
  vertical-align: middle;
}

/* Row X-link — SVG + handle in a tight inline-flex pair. Muted by default,
   gold on hover/focus. Padding 4px vertical (was 8px) so the X cell
   doesn't drive overall row height past 40-44px on desktop; 28px
   min-height still satisfies the touch target on hover-active. Mobile
   bumps via the global @media (max-width: 768px) min-height: 44px in
   shared/css/base.css. */
.lc-x {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text-muted, #ffffff80);
  text-decoration: none;
  font-size: 0.76rem;
  padding: 4px 6px;
  min-height: 24px;
  border-radius: 6px;
  transition: color 0.15s ease, background-color 0.15s ease;
}

.lc-x:hover,
.lc-x:focus-visible {
  color: var(--accent, #d4af37);
  background: rgba(212, 175, 55, 0.06);
}

.lc-x:focus-visible {
  outline: 2px solid var(--accent, #d4af37);
  outline-offset: -2px;
}

.lc-x-icon {
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity 0.15s ease;
}

.lc-x:hover .lc-x-icon,
.lc-x:focus-visible .lc-x-icon {
  opacity: 1;
}

.lc-x-handle {
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}

.lc-x-cell {
  white-space: nowrap;
  text-align: right;
}

/* Kickstart external-link icon — circular pill, secondary affordance
   inline with the score chip. 24×24 effective touch target, muted by
   default with a thin gold-tint border that activates on hover. The
   transition brightens border + bg + icon together so it reads as
   "this is a real button, not just decoration". Pure box-shadow+
   background-color — zero CLS. */
.lc-kick {
  color: var(--color-text-dim, #ffffff60);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-height: 22px;
  min-width: 22px;
  border-radius: 50%;
  vertical-align: middle;
  border: 1px solid rgba(212, 175, 55, 0.08);
  background: rgba(212, 175, 55, 0.04);
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

.lc-kick:hover,
.lc-kick:focus-visible {
  color: var(--accent, #d4af37);
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.45);
}

.lc-kick:focus-visible {
  outline: 2px solid var(--accent, #d4af37);
  outline-offset: 1px;
}

.lc-table tbody tr:hover .lc-kick {
  border-color: rgba(212, 175, 55, 0.22);
}

.lc-ext-icon {
  flex-shrink: 0;
}

/* Theme-aware colours for the 24h change column. The glyph (↑/↓) is a
   redundant cue alongside color so red/green-blind users still read
   direction — Coingecko pattern, WCAG-1.4.1 conformant. font-weight
   600 for normal moves; .lc-mover (>±20%) bumps to 700 so big swings
   read first at row-scan speed (Hyperliquid heat-row pattern, kept
   subtle so it doesn't degenerate into a rainbow wall). */
.lc-pos { color: var(--color-positive, #15803d); font-weight: 600; }
.lc-neg { color: var(--color-negative, #b91c1c); font-weight: 600; }
.lc-pos.lc-mover, .lc-neg.lc-mover { font-weight: 700; }
.lc-glyph {
  display: inline-block;
  margin-right: 2px;
  font-size: 0.8em;
  vertical-align: 1px;
  opacity: 0.85;
  font-family: var(--font-sans, system-ui, sans-serif);
}
.lc-dim { color: var(--color-text-dim, #6b7280); }

/* Screen-reader-only utility for table caption (no global .sr-only in repo). */
.lc-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lc-empty {
  padding: 36px 20px;
  text-align: center;
  color: var(--color-text-muted, #ffffff80);
  font-size: 0.85rem;
}

/* Tablet (≤900px): tighten paddings + tame min-width so the table fits
   without horizontal scroll on common iPad / split-screen widths. */
@media (max-width: 900px) {
  .lc-table { min-width: 0; }
  .lc-table th, .lc-table td { padding: 9px 10px; }
}

@media (max-width: 720px) {
  .lc-header { padding: 14px 16px; }
  .lc-table th, .lc-table td { padding: 8px 10px; font-size: 0.8rem; }
}

/* Mobile (≤640px): card-stack layout. Each row becomes a self-contained
   card with label/value pairs sourced from each <td>'s [data-label]. */
@media (max-width: 640px) {
  .lc-section { border-radius: 12px; }

  .lc-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 16px;
    gap: 6px;
  }
  .lc-header h2 { font-size: 0.95rem; }
  .lc-meta { width: 100%; gap: 8px; }

  /* Visually hide thead, keep it for screen readers. */
  .lc-table thead {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .lc-table-wrap { padding: 8px 8px 4px; }

  .lc-table,
  .lc-table tbody,
  .lc-table tr,
  .lc-table td {
    display: block;
    width: 100%;
  }

  .lc-table { min-width: 0; }

  /* Reset desktop column-distribution constraints — on the card stack
     each td fills the row width. See launchpad-treasury.css for the
     same fix. */
  .lc-tk { max-width: none; white-space: normal; }
  .lc-table .lc-num { min-width: 0; }

  .lc-table tr {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--color-border, rgba(255, 255, 255, 0.08));
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 12px 14px;
    position: relative;
  }
  .lc-table tr:last-child { margin-bottom: 0; }
  .lc-table tr:hover { background: rgba(212, 175, 55, 0.06); }

  .lc-table td {
    padding: 5px 0;
    border-bottom: none;
    text-align: right;
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }

  .lc-table td::before {
    content: attr(data-label);
    color: var(--color-text-dim, #ffffff60);
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 600;
    flex-shrink: 0;
  }

  /* Token cell takes the full row width — its sub-elements carry context.
     Banner-style header with avatar pinned-left + name/ticker stack. */
  .lc-table td.lc-tk {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    padding: 0 0 10px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--color-border, rgba(255, 255, 255, 0.06));
  }
  .lc-table td.lc-tk::before { display: none; }
  /* Bump the avatar to 36px on the mobile banner so it carries the
     identity weight that the desktop column rank-+-icon split was
     handling. Same recipe (img and mono fallback share dimensions). */
  .lc-table td.lc-tk .token-icon { width: 36px; height: 36px; }
  .lc-table td.lc-tk .token-icon-mono { font-size: 0.85rem; }
  .lc-table td.lc-tk .token-cell { gap: 14px; padding-right: 56px; /* leave room for the rank pill in the corner */ }

  /* Mobile banner: collapse the inline row to the column-banner
     pattern. The name takes its own line (full width, allowed to wrap
     so the card-hero reads), and the ticker/score/pill meta-strip
     sits right under it. Override the desktop's row-flex by switching
     .token-cell-row to flex-direction:column at mobile only. */
  .lc-table td.lc-tk .token-cell-row {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    flex-wrap: wrap;
  }
  .lc-table td.lc-tk .lc-name {
    font-size: 1.02rem;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  /* Rank — corner pill on the gold-tint scale (0.06 background, 0.22
     border) so it reads as a "stack rank" sticker, not a stray number.
     Shifts the badge into the same affordance language as the score
     chip without competing with it. */
  .lc-table td.lc-rank {
    position: absolute;
    top: 12px;
    right: 14px;
    width: auto;
    padding: 2px 8px;
    font-family: var(--font-mono, ui-monospace, SFMono-Regular, monospace);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--color-text-muted, #ffffff80);
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 999px;
  }
  .lc-table td.lc-rank::before { content: "#"; display: inline; color: var(--color-text-dim, #ffffff60); margin: 0; padding: 0; font-size: 0.62rem; letter-spacing: 0; text-transform: none; font-weight: 700; }

  /* X cell on stacked layout: the SVG icon + handle already says "X", so
     suppress the redundant "X:" label. Center the link within the row. */
  .lc-table td.lc-x-cell::before { display: none; }
  .lc-table td.lc-x-cell {
    justify-content: flex-end;
    padding-top: 8px;
    margin-top: 4px;
    border-top: 1px solid var(--color-border, rgba(255, 255, 255, 0.06));
  }

  /* Even on stacked layout, drop the lowest-priority columns to keep
     cards short and scannable. */
  .lc-hide-narrow { display: none !important; }
}
