.cw-arb{
  --cw-accent:#2563eb;
  margin:28px 0;
  padding:0;
  background:#fff;
  border:1px solid #dbe3ef;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 4px 16px rgba(15,23,42,.07);
  box-sizing:border-box;
  font-family:inherit;
}
.cw-arb-title{
  position:relative;
  display:flex;
  align-items:center;
  min-height:50px;
  padding:12px 16px 12px 19px;
  background:linear-gradient(90deg,#f7faff,#fff);
  color:#172033;
  font-weight:800;
  line-height:1.25;
  border-bottom:1px solid #e6ebf2;
}
.cw-arb-title:before{
  content:"";
  width:4px;
  height:24px;
  border-radius:5px;
  background:var(--cw-accent);
  margin-right:11px;
  flex:0 0 4px;
}
.cw-arb-items{
  display:grid;
  gap:0;
  padding:2px 14px;
}
.cw-arb-item{
  position:relative;
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
  padding:13px 4px;
  text-decoration:none!important;
  color:var(--cw-link)!important;
  font-weight:700;
  line-height:1.42;
  border-bottom:1px solid #edf1f6;
  transition:background .18s ease,transform .18s ease;
}
.cw-arb-item:last-child{border-bottom:0}
.cw-arb-item:hover{
  background:#f8fbff;
  transform:translateX(2px);
}
.cw-arb-link{
  display:block;
  min-width:0;
  color:var(--cw-link)!important;
}
.cw-arb-item:hover .cw-arb-link{color:var(--cw-hover)!important}
.cw-arb-thumb{
  display:block;
  flex:0 0 88px;
  width:88px;
  height:56px;
  overflow:hidden;
  border-radius:7px;
  background:#eef2f7;
  box-shadow:0 1px 3px rgba(15,23,42,.10);
}
.cw-arb-thumb-square{height:70px}
.cw-arb-thumb-circle{height:70px;border-radius:50%}
.cw-arb-thumb img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
.cw-arb-grid-2 .cw-arb-items,
.cw-arb-grid-3 .cw-arb-items{
  grid-template-columns:repeat(2,minmax(0,1fr));
  column-gap:14px;
}
.cw-arb-grid-3 .cw-arb-items{grid-template-columns:repeat(3,minmax(0,1fr))}
.cw-arb-grid-2 .cw-arb-item,
.cw-arb-grid-3 .cw-arb-item{
  align-items:flex-start;
  border-bottom:1px solid #edf1f6;
}
.cw-arb-grid-2 .cw-arb-thumb,
.cw-arb-grid-3 .cw-arb-thumb{
  flex-basis:64px;
  width:64px;
  height:44px;
}
.cw-arb-grid-2 .cw-arb-thumb-square,
.cw-arb-grid-3 .cw-arb-thumb-square,
.cw-arb-grid-2 .cw-arb-thumb-circle,
.cw-arb-grid-3 .cw-arb-thumb-circle{height:64px}
@media(max-width:700px){
  .cw-arb{
    margin:24px 0;
    border-radius:13px;
    box-shadow:0 3px 12px rgba(15,23,42,.06);
  }
  .cw-arb-title{
    min-height:48px;
    padding:11px 13px 11px 15px;
  }
  .cw-arb-title:before{height:22px;margin-right:9px}
  .cw-arb-items{padding:1px 11px}
  .cw-arb-item{
    gap:11px;
    padding:12px 3px;
    font-size:15px!important;
  }
  .cw-arb-thumb{
    flex-basis:76px;
    width:76px;
    height:50px;
    border-radius:7px;
  }
  .cw-arb-thumb-square,
  .cw-arb-thumb-circle{height:60px}
  .cw-arb-grid-2 .cw-arb-items,
  .cw-arb-grid-3 .cw-arb-items{grid-template-columns:1fr}
}
