/* ReBrandMyAI homepage — 12 Tells Option B meter-bar treatment (v18.3) */
#tellList .tell-grid.opt-b{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  background:rgba(122,164,255,.10);
}
#tellList .tell-grid.opt-b .tell-row.b-row{
  display:block;
  min-height:0;
  padding:16px;
  position:relative;
  background:linear-gradient(180deg,rgba(4,11,22,.86),rgba(2,7,15,.72));
  border:0;
  border-bottom:1px solid rgba(122,164,255,.12);
  cursor:pointer;
  transition:background .18s ease,box-shadow .18s ease,transform .18s ease;
}
#tellList .tell-grid.opt-b .tell-row.b-row::before,
#tellList .tell-grid.opt-b .tell-row.b-row::after{display:none}
#tellList .tell-grid.opt-b .tell-row.b-row:nth-child(odd){border-right:1px solid rgba(122,164,255,.13)}
#tellList .tell-grid.opt-b .tell-row.b-row:nth-last-child(-n+2){border-bottom:0}
#tellList .tell-grid.opt-b .tell-row.b-row:hover,
#tellList .tell-grid.opt-b .tell-row.b-row:focus-visible{
  background:linear-gradient(180deg,rgba(8,20,39,.96),rgba(4,12,24,.88));
  box-shadow:inset 0 0 0 1px rgba(69,215,255,.18);
  outline:none;
}
#tellList .tell-grid.opt-b .b-tag{
  display:block;
  margin-bottom:6px;
  font-family:var(--mono);
  font-size:.62rem;
  letter-spacing:.02em;
  color:#5c7aa3;
}
#tellList .tell-grid.opt-b .b-name{
  font-family:var(--display);
  font-weight:800;
  font-size:.92rem;
  letter-spacing:-.02em;
  line-height:1.15;
  color:#f6f8ff;
}
#tellList .tell-grid.opt-b .b-meter{
  display:flex;
  gap:3px;
  margin-top:12px;
}
#tellList .tell-grid.opt-b .b-meter i{
  display:block;
  flex:1;
  height:3px;
  border:0;
  border-radius:3px;
  background:#172235;
}
#tellList .tell-grid.opt-b .b-meter i.on.high{
  background:var(--red);
  box-shadow:0 0 8px rgba(255,61,93,.50);
}
#tellList .tell-grid.opt-b .b-meter i.on.medium{
  background:var(--amber);
  box-shadow:0 0 8px rgba(242,193,78,.50);
}
#tellList .tell-grid.opt-b .b-meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:8px;
}
#tellList .tell-grid.opt-b .b-score{
  font-family:var(--mono);
  font-size:.9rem;
  font-weight:700;
}
#tellList .tell-grid.opt-b .b-score.high{color:#ff6b81}
#tellList .tell-grid.opt-b .b-score.medium{color:#f2c14e}
#tellList .tell-grid.opt-b .b-level{
  font-family:var(--mono);
  font-size:.56rem;
  letter-spacing:.1em;
  color:#5c7aa3;
}
@media(max-width:680px){
  #tellList .tell-grid.opt-b{grid-template-columns:1fr}
  #tellList .tell-grid.opt-b .tell-row.b-row:nth-child(odd){border-right:0}
  #tellList .tell-grid.opt-b .tell-row.b-row:nth-last-child(2){border-bottom:1px solid rgba(122,164,255,.12)}
  #tellList .tell-grid.opt-b .tell-row.b-row:last-child{border-bottom:0}
}
