:root {
  --bg:#f4f6f8; --surface:#fff; --ink:#171b21; --ink-2:#565e69; --ink-3:#8b929c;
  --line:#e2e6ea; --line-strong:#cdd3da; --accent:#26324f;

  --neg-bg:#f7e7e4; --neg-ink:#8f281d; --neg-strong:#c0463a;
  --flat-bg:#f7efdd; --flat-ink:#7a4d12; --flat-strong:#c2892b;
  --pos-bg:#e4f0e8; --pos-ink:#1c5537; --pos-strong:#2f7d53;

  --d-none:#eff1f3; --d0:#dde4ec; --d1:#f6d59a; --d2:#eaa06f; --d3:#d76b5b;
  --d-none-s:#d4d9de; --d0-s:#a9b6c4; --d1-s:#caa24f; --d2-s:#c56f3c; --d3-s:#b04434;

  --font-display:"Space Grotesk",system-ui,sans-serif;
  --font-body:"Inter",system-ui,sans-serif;
  --font-mono:"IBM Plex Mono",ui-monospace,monospace;
  --tile-shape:8px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{background:var(--bg);color:var(--ink);font-family:var(--font-body);line-height:1.55;-webkit-font-smoothing:antialiased}
.wrap{max-width:1180px;margin:0 auto;padding:28px 22px 56px}

/* masthead */
.masthead{display:flex;gap:22px;align-items:flex-end;justify-content:space-between;border-bottom:1px solid var(--line-strong);padding-bottom:18px}
.eyebrow{font-family:var(--font-mono);font-size:11px;letter-spacing:.18em;text-transform:uppercase;color:var(--ink-3);margin:0 0 8px}
.masthead h1{font-family:var(--font-display);font-weight:500;font-size:30px;letter-spacing:-.01em;margin:0 0 6px}
.mast-sub{margin:0;color:var(--ink-2);font-size:14px}
.mast-video{flex:0 0 188px;max-width:188px}
.video-frame{aspect-ratio:16/9;background:var(--accent);border-radius:10px;display:flex;align-items:center;justify-content:center;overflow:hidden}
.video-frame iframe{width:100%;height:100%;border:0}
.video-placeholder{color:#cfd6e6;font-size:12px;font-family:var(--font-mono);text-align:center;padding:0 12px}
.video-placeholder .tag{font-style:normal;display:block;font-size:18px;color:#fff;font-family:var(--font-display);margin-bottom:4px}
@media(max-width:760px){.masthead{flex-direction:column;align-items:stretch}.mast-video{flex:none;max-width:none}}

/* stats */
.stats{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin:22px 0 4px}
@media(max-width:620px){.stats{grid-template-columns:repeat(2,1fr)}}
.stat{background:var(--surface);border:1px solid var(--line);border-radius:12px;padding:12px 14px}
.stat .n{font-family:var(--font-display);font-size:24px;font-weight:500}
.stat .l{font-size:12px;color:var(--ink-2);margin-top:2px}

/* controls */
.controls{display:flex;flex-wrap:wrap;gap:10px;align-items:center;margin:20px 0 8px}
.ctl{font-size:13px}
.ctl.search{flex:1 1 200px;min-width:160px}
input[type=search],select{width:100%;height:36px;padding:0 10px;font:inherit;font-size:13px;color:var(--ink);background:var(--surface);border:1px solid var(--line-strong);border-radius:8px}
input[type=search]:focus,select:focus{outline:2px solid var(--accent);outline-offset:1px}
.seg{display:inline-flex;border:1px solid var(--line-strong);border-radius:8px;overflow:hidden}
.seg button{font:inherit;font-size:12px;padding:8px 12px;background:var(--surface);border:0;border-right:1px solid var(--line);color:var(--ink-2);cursor:pointer}
.seg button:last-child{border-right:0}
.seg button.on{background:var(--accent);color:#fff}
.toggle{display:inline-flex;align-items:center;gap:6px;color:var(--ink-2);cursor:pointer;padding:8px 4px}

/* stage */
.stage{display:grid;grid-template-columns:minmax(300px,360px) minmax(0,1fr) minmax(180px,230px);grid-template-areas:"map profile issues" "feed feed feed";gap:24px 26px;margin-top:16px;align-items:start}
.map-col{grid-area:map}
.profile-col{grid-area:profile}
.issues-col{grid-area:issues}
.feed-col{grid-area:feed;min-width:0}
@media(max-width:1080px){.stage{grid-template-columns:minmax(300px,360px) minmax(0,1fr);grid-template-areas:"map profile" "issues issues" "feed feed"}}
@media(max-width:880px){.stage{grid-template-columns:1fr;grid-template-areas:"map" "profile" "issues" "feed"}}
.panel-label{font-family:var(--font-mono);font-size:11px;letter-spacing:.14em;text-transform:uppercase;color:var(--ink-3);margin:0 0 12px}
.map-head{display:flex;align-items:baseline;justify-content:space-between;gap:10px}
.active-filter{font-size:12px;color:var(--accent);font-family:var(--font-mono)}
.active-filter a{color:var(--accent);cursor:pointer;text-decoration:underline}

/* map */
.map-wrap{background:var(--surface);border:1px solid var(--line);border-radius:12px;padding:10px}
.map-wrap svg{width:100%;height:auto;display:block}
.geo-state{fill:var(--d-none);stroke:#fff;stroke-width:.75}
.geo-bubble{cursor:pointer;stroke-width:1.2}
.geo-bubble:hover{stroke:var(--ink)}
.geo-label{font-family:var(--font-mono);font-size:9px;fill:#fff;text-anchor:middle;dominant-baseline:central;pointer-events:none}

.tilegrid{display:grid;grid-template-columns:repeat(11,1fr);gap:5px}
.tile{position:relative;aspect-ratio:1/1;border-radius:var(--tile-shape);border:1px solid transparent;cursor:pointer;padding:4px 3px;display:flex;flex-direction:column;justify-content:space-between}
.tile:hover{transform:translateY(-2px)}
.tile.sel,.geo-bubble.sel{stroke:var(--ink);stroke-width:2}
.tile.sel{border-color:var(--ink)}
.tile .abbr{font-family:var(--font-display);font-weight:500;font-size:12px;line-height:1}
.tile .ct{font-family:var(--font-mono);font-size:10px;align-self:flex-end}
.tile.dn{background:var(--d-none);color:var(--ink-3);cursor:default}.tile.dn:hover{transform:none}
.tile.d0{background:var(--d0);color:#31414f}.tile.d1{background:var(--d1);color:#6b4c14}
.tile.d2{background:var(--d2);color:#5c2c12}.tile.d3{background:var(--d3);color:#4a140d}

.legend{display:flex;flex-wrap:wrap;gap:12px;align-items:center;margin-top:12px;font-size:12px;color:var(--ink-2)}
.legend .k{display:inline-flex;align-items:center;gap:6px}
.legend .sw{width:12px;height:12px;border-radius:3px}
.legend .sw.d1{background:var(--d1)}.legend .sw.d2{background:var(--d2)}.legend .sw.d3{background:var(--d3)}
.legend .dot{width:9px;height:9px;border-radius:50%}
.legend .dot.pos{background:var(--pos-strong)}.legend .dot.flat{background:var(--flat-strong)}.legend .dot.neg{background:var(--neg-strong)}
.legend .sep{width:1px;height:14px;background:var(--line-strong)}

/* topic chips */
.topics{display:flex;flex-wrap:wrap;gap:6px;margin-top:16px}
.topics .chip{font-family:var(--font-mono);font-size:11px;padding:4px 9px;border-radius:20px;border:1px solid var(--line-strong);background:transparent;color:var(--ink-2);cursor:pointer;display:inline-flex;gap:5px;align-items:center}
.topics .chip .c{color:var(--ink-3)}
.topics .chip.on{background:var(--accent);color:#fff;border-color:var(--accent)}
.topics .chip.on .c{color:#c5cee0}

/* feed */
.feed-col{min-width:0}
.card{background:var(--surface);border:1px solid var(--line);border-radius:12px;padding:14px 16px;margin-bottom:12px}
.card.hot{border-left:3px solid var(--d3);border-radius:0 12px 12px 0}
.card .meta{display:flex;flex-wrap:wrap;gap:6px;align-items:center;margin-bottom:8px}
.mchip{font-family:var(--font-mono);font-size:11px;padding:2px 8px;border-radius:20px;background:var(--d-none);color:var(--ink-2)}
.mchip.level{background:#e7ebf1;color:#3a4657}
.mchip.date{background:transparent;color:var(--ink-3);padding-left:0}
.mchip.dir.pos{background:var(--pos-bg);color:var(--pos-ink)}
.mchip.dir.flat{background:var(--flat-bg);color:var(--flat-ink)}
.mchip.dir.neg{background:var(--neg-bg);color:var(--neg-ink)}
.mchip.flag{background:#fbe6c8;color:#7a4d12}
.mchip.score{margin-left:auto;font-weight:500}
.mchip.score.s3{background:var(--d3);color:#fff}.mchip.score.s2{background:var(--d1);color:#6b4c14}.mchip.score.s1{background:var(--d-none);color:var(--ink-2)}
.card .state{font-family:var(--font-display);font-size:13px;font-weight:500;color:var(--accent);margin-bottom:4px}
.card .why{font-weight:500}
.card .body{font-size:14px;color:var(--ink);margin:2px 0}
.card .links{margin-top:10px;display:flex;gap:14px;flex-wrap:wrap;font-family:var(--font-mono);font-size:12px}
.card .links a{color:var(--accent);text-decoration:none;border-bottom:1px solid var(--line-strong)}
.card .links a:hover{border-bottom-color:var(--accent)}
.empty{color:var(--ink-3);font-size:14px;padding:24px 0}
.foot{margin-top:32px;padding-top:16px;border-top:1px solid var(--line);font-family:var(--font-mono);font-size:11px;color:var(--ink-3)}
.video-cap{margin:5px 0 0;font-family:var(--font-mono);font-size:10px;color:var(--ink-3);text-align:right;letter-spacing:.02em}
.mchip.type{background:#e9e4f2;color:#463a6b}
.search-hint{margin:2px 0 0;font-size:12px;color:var(--ink-3)}
.search-hint code{font-family:var(--font-mono);font-size:11px;background:var(--d-none);padding:1px 5px;border-radius:4px;color:var(--ink-2)}

/* profile card (state / district drill-down) */
.profile{background:var(--surface);border:1px solid var(--line);border-radius:12px;padding:14px 16px;margin-bottom:16px}
.prof-head{margin-bottom:10px}
.prof-kicker{font-family:var(--font-mono);font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--ink-3)}
.prof-head h2{font-family:var(--font-display);font-weight:500;font-size:19px;margin:2px 0 0}
.prof-metrics{display:grid;grid-template-columns:repeat(auto-fit,minmax(90px,1fr));gap:8px;margin-bottom:10px}
.pm{background:var(--d-none);border-radius:8px;padding:8px 10px}
.pm-n{font-family:var(--font-display);font-size:18px;font-weight:500}
.pm-l{font-size:11px;color:var(--ink-2);margin-top:1px}
.t-pos{color:var(--pos-strong)}.t-neg{color:var(--neg-strong)}.t-flat{color:var(--flat-strong)}
.prof-budget{font-size:13px;padding:7px 10px;border-radius:8px;background:var(--d-none);margin-bottom:10px}
.prof-budget.muted,.muted{color:var(--ink-3)}
.prof-budget-date{color:var(--ink-3);font-size:12px}
.prof-label{font-family:var(--font-mono);font-size:11px;letter-spacing:.1em;text-transform:uppercase;color:var(--ink-3);display:block;margin-bottom:6px}
.dchips{display:flex;flex-wrap:wrap;gap:6px;max-height:104px;overflow:auto;padding-right:4px}
.dchip{font-size:12px;padding:5px 10px;border-radius:20px;border:1px solid var(--line-strong);background:transparent;color:var(--ink);cursor:pointer;display:inline-flex;gap:5px;align-items:center}
.dchip:hover{border-color:var(--ink)}
.dchip .c{font-family:var(--font-mono);font-size:11px;color:var(--ink-3)}
.prof-trends{list-style:none;margin:0 0 12px;padding:0;font-size:13px}
.prof-trends li{padding:3px 0}
.prof-back{font:inherit;font-size:12px;padding:7px 12px;border:1px solid var(--line-strong);border-radius:8px;background:transparent;color:var(--ink-2);cursor:pointer}
.prof-back:hover{border-color:var(--ink);color:var(--ink)}
.state-lea{color:var(--ink-2);font-weight:400}
.geo-note{font-family:var(--font-mono);font-size:6px;fill:var(--ink-3)}
.mchip.standing{background:#e2ece6;color:#1c5537}
.prof-block{margin-top:2px}
.prof-laws{list-style:none;margin:0 0 10px;padding:0;font-size:13px}
.prof-laws li{padding:3px 0}
.mini-standing{font-family:var(--font-mono);font-size:10px;color:var(--pos-ink);background:var(--pos-bg);padding:0 5px;border-radius:4px}

/* Budget strip — tight vertical rectangle, last 3 years */
.bud-strip{display:flex;border:1px solid var(--line-strong);border-radius:8px;overflow:hidden;margin:6px 0}
.bud-strip.horiz{flex-direction:row;width:auto;max-width:280px}
.bud-strip.horiz .bud-cell{flex:1;flex-direction:column;align-items:center;gap:2px;padding:8px 10px;border-bottom:0;border-right:1px solid rgba(0,0,0,.06);text-align:center}
.bud-strip.horiz .bud-cell:last-child{border-right:0}
.bud-cell{display:flex;align-items:baseline;gap:6px;padding:5px 9px;border-bottom:1px solid rgba(0,0,0,.06)}
.bud-cell:last-child{border-bottom:0}
.bud-yr{font-family:var(--font-mono);font-size:10px;color:var(--ink-2)}
.bud-word{font-size:12px;font-weight:600;text-transform:capitalize}
.t-bg-pos{background:var(--pos-bg)} .t-bg-neg{background:var(--neg-bg)} .t-bg-flat{background:var(--flat-bg)}
.bud-note{margin:4px 0 0;font-size:11px;color:var(--ink-2);max-width:280px;line-height:1.4}

/* Activity legend under the LEA map */
.geo-legend{display:flex;align-items:center;gap:3px;margin-top:6px;font-size:10px;color:var(--ink-3)}
.geo-legend .gl-label{font-family:var(--font-mono);text-transform:uppercase;letter-spacing:.04em;margin:0 4px}
.geo-legend .gl-chip{width:16px;height:9px;border-radius:2px;display:inline-block}

/* Collapsible Issues panel */
/* Issues — restricted scroll window in its own column */
.issues-box{margin-top:0}
.issues-head{display:flex;align-items:baseline;gap:8px;margin-bottom:6px}
.issues-head .panel-label{margin:0}
.issues-head .tp-count{font-family:var(--font-mono);font-size:11px;color:var(--ink-3)}
.issues-box .topics{max-height:340px;overflow:auto;margin-top:6px;padding-right:4px}
@media(max-width:1080px){.issues-box .topics{max-height:120px}}

/* Home overview lists (shown when no state is selected) */
.home-list{list-style:none;margin:6px 0 0;padding:0;font-size:13px}
.home-list li{padding:3px 0;display:flex;justify-content:space-between;gap:10px;align-items:baseline}
.home-list li.muted{color:var(--ink-3)}
.home-issue,.home-item{background:transparent;border:0;padding:0;margin:0;cursor:pointer;color:var(--accent);font-size:13px;text-align:left;font-family:inherit}
.home-issue:hover,.home-item:hover{text-decoration:underline}
.profile.home .prof-block{margin-top:12px}

/* Clear-all-filters button */
.clear-btn{background:var(--accent);border:1px solid var(--accent);border-radius:7px;padding:6px 12px;
  color:#fff;cursor:pointer;font-size:13px;font-weight:500}
.clear-btn:hover{background:#1b2540;border-color:#1b2540}

/* Quick-view link on law rows */
.qv-btn{background:transparent;border:0;color:var(--accent);cursor:pointer;font-size:11px;
  font-family:var(--font-mono);text-decoration:underline;text-underline-offset:2px;padding:0 0 0 4px}
.qv-btn:hover{color:var(--ink)}

/* Quick-view focus banner in the feed */
.feed-focus{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:10px;
  padding:7px 11px;border:1px solid var(--accent);border-radius:8px;background:#eef1f7;font-size:12px;color:var(--accent)}
.feed-focus a{cursor:pointer;text-decoration:underline;color:var(--accent);font-weight:500}

/* Pop-out video */
.vidbtn{background:transparent;border:1px solid var(--line-strong);border-radius:6px;padding:3px 9px;
  cursor:pointer;font-size:12px;color:var(--accent)}
.vidbtn:hover{border-color:var(--accent);background:#eef1f7}
.vid-modal{position:fixed;inset:0;z-index:60;display:flex;align-items:center;justify-content:center}
.vid-modal[hidden]{display:none}
.vid-backdrop{position:absolute;inset:0;background:rgba(15,20,28,.66)}
.vid-dialog{position:relative;width:min(880px,92vw);aspect-ratio:16/9;background:#000;border-radius:12px;
  overflow:hidden;box-shadow:0 24px 60px rgba(0,0,0,.4)}
.vid-embed,.vid-embed iframe{width:100%;height:100%;display:block;border:0}
.vid-close{position:absolute;top:-14px;right:-14px;z-index:2;width:34px;height:34px;border-radius:50%;
  border:0;background:#fff;color:var(--ink);font-size:20px;line-height:1;cursor:pointer;box-shadow:0 4px 14px rgba(0,0,0,.3)}

/* State profile: flex column matched to the map box height; the two scroll
   regions (key laws + districts) share leftover space equally. */
.profile.statev{display:flex;flex-direction:column;min-height:0}
.profile.statev .prof-block.prof-flex{flex:1 1 0;min-height:0;display:flex;flex-direction:column}
.profile.statev .prof-scroll{flex:1 1 auto;min-height:0;overflow:auto;padding-right:4px;margin-top:4px}
.profile.statev .prof-scroll .dchips{max-height:none;overflow:visible;padding-right:0}
.profile.statev .prof-scroll .prof-laws{margin:0}

/* Choropleth map */
.geo-state{stroke:#fff;stroke-width:0.9}
.geo-state.has{cursor:pointer}
.geo-state.has:hover{stroke:var(--ink);stroke-width:1.4}
.geo-count{font-family:var(--font-mono);font-size:13px;fill:#1d232b;text-anchor:middle;dominant-baseline:middle;pointer-events:none;paint-order:stroke;stroke:#fff;stroke-width:2.6px;stroke-linejoin:round}
.inset-title{font-family:var(--font-mono);font-size:10px;fill:var(--ink-3);text-transform:uppercase;letter-spacing:.05em}
.inset-ab{font-family:var(--font-mono);font-size:10px;fill:#1d232b;text-anchor:middle;pointer-events:none;paint-order:stroke;stroke:#fff;stroke-width:2px}
.inset-n{font-family:var(--font-mono);font-size:10px;fill:var(--ink-2);pointer-events:none}
.legend .gl-num{font-family:var(--font-mono);font-size:11px;border:1px solid var(--line-strong);border-radius:4px;padding:0 4px;margin-right:4px}
.legend .gl-chip{width:18px;height:10px;border-radius:2px;display:inline-block;margin:0 1px}

/* Mini seg for issue sort */
.seg.mini{margin-left:auto;display:inline-flex;border:1px solid var(--line-strong);border-radius:6px;overflow:hidden}
.seg.mini button{border:0;background:transparent;font-size:10px;font-family:var(--font-mono);text-transform:uppercase;letter-spacing:.03em;padding:3px 7px;cursor:pointer;color:var(--ink-2)}
.seg.mini button.on{background:var(--accent);color:#fff}

/* Statewide enrollment trend badge after the state name */
.enr-badge{font-size:12px;font-weight:600;vertical-align:middle;margin-left:6px;white-space:nowrap}
.enr-badge .enr-pct{font-family:var(--font-mono);font-size:10px;font-weight:400;color:var(--ink-2)}

/* State profile scroll regions: equal, comfortable spacing */
.profile.statev{gap:12px}
.profile.statev .prof-block{margin-top:0}
.profile.statev .prof-block.prof-flex{flex:1 1 0;min-height:84px}
.profile.statev .prof-scroll{margin-top:6px}
@media(max-width:880px){
  .profile.statev{height:auto !important}
  .profile.statev .prof-block.prof-flex{flex:0 0 auto}
  .profile.statev .prof-scroll{max-height:160px}
}

/* ===== Update: choropleth map, NE inset, issue sort, enrollment cue, profile spacing ===== */
.geo-fill{stroke:#fff;stroke-width:.75}
.geo-fill.act{cursor:pointer}
.geo-fill.act:hover{stroke:var(--ink);stroke-width:1.1}
.geo-count{font-family:var(--font-mono);font-size:11px;fill:#31414f;text-anchor:middle;dominant-baseline:central;pointer-events:none;font-weight:500}
.inset{margin-top:10px}
.inset-label{font-family:var(--font-mono);font-size:10px;letter-spacing:.06em;text-transform:uppercase;color:var(--ink-3);display:block;margin-bottom:4px}
.inset-row{display:flex;gap:4px;flex-wrap:wrap}
.inset-tile{width:40px;height:34px;border:1px solid rgba(0,0,0,.08);border-radius:6px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:1px;padding:0}
.inset-tile.act{cursor:pointer}
.inset-tile.act:hover{border-color:var(--ink)}
.inset-tile .it-abbr{font-family:var(--font-display);font-weight:500;font-size:11px;line-height:1}
.inset-tile .it-ct{font-family:var(--font-mono);font-size:9px;color:rgba(0,0,0,.55);line-height:1}
.seg.tsort{margin-left:auto}
.seg.tsort button{padding:4px 9px;font-size:11px}
.issues-head{flex-wrap:wrap}
.enr-cue{font-family:var(--font-mono);font-size:11px;font-weight:400;padding:2px 8px;border-radius:20px;vertical-align:2px;white-space:nowrap}
.enr-cue.neg{background:var(--neg-bg);color:var(--neg-ink)}
.enr-cue.pos{background:var(--pos-bg);color:var(--pos-ink)}
.enr-cue.flat{background:var(--flat-bg);color:var(--flat-ink)}
.law-dot{color:var(--ink-3);font-size:9px;vertical-align:1px}
/* equal, comfortable spacing for the two profile scroll regions */
.profile.statev .prof-block.prof-flex{margin-top:14px}
.profile.statev .prof-scroll{min-height:96px}
@media(max-width:880px){
  .profile.statev{height:auto !important}
  .profile.statev .prof-scroll{max-height:160px;min-height:0}
}

/* ===== Standard-size state profile (no overflow) + type filter ===== */
/* Fixed standard height regardless of state; the two scroll regions shrink
   and scroll internally instead of overflowing the box. */
.profile.statev{height:600px;max-height:600px;overflow:hidden}
.profile.statev .prof-block.prof-flex{flex:1 1 0;min-height:0;overflow:hidden}
.profile.statev .prof-scroll{flex:1 1 0;min-height:44px;overflow:auto}
.profile.statev .bud-note{max-width:100%}
@media(max-width:880px){
  .profile.statev{height:auto;max-height:none;overflow:visible}
  .profile.statev .prof-block.prof-flex{flex:0 0 auto;overflow:visible}
  .profile.statev .prof-scroll{max-height:160px;min-height:0}
}

/* NCES district data lines */
.nces-lines{list-style:none;margin:6px 0 0;padding:0;font-size:12.5px}
.nces-lines li{padding:2px 0;display:flex;gap:8px;align-items:baseline;flex-wrap:wrap}
.nces-lines .muted{font-family:var(--font-mono);font-size:11px}
.nces-cap{margin:2px 0 6px;font-family:var(--font-mono);font-size:10px;color:var(--ink-3);line-height:1.5}

/* Clerk auth gate */
html.locked main.wrap{filter:blur(7px);pointer-events:none;user-select:none}
#auth-gate{position:fixed;inset:0;z-index:80;display:flex;align-items:center;justify-content:center}
#auth-gate[hidden]{display:none}
.auth-backdrop{position:absolute;inset:0;background:rgba(24,30,40,.45)}
.auth-panel{position:relative;background:#fff;border-radius:14px;padding:26px 30px;box-shadow:0 24px 70px rgba(0,0,0,.35);max-width:420px;width:92vw;text-align:center}
.auth-panel h2{margin:4px 0 6px;font-family:var(--font-display)}
.auth-msg{font-size:13px;color:var(--ink-2);margin:0 0 14px}
#user-slot{display:inline-block;vertical-align:middle;margin-left:10px}
.home-list .mchip.score{font-size:10px;padding:0 6px;line-height:16px;vertical-align:1px}
