.infographic-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(220px,1fr));
  gap:10px;
  margin:0 0 12px;
}
.echarts-card{
  min-width:0;
  padding:10px 11px 9px;
  border:1px solid #c5cbd3;
  border-radius:6px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.96),rgba(247,248,250,.98)),
    repeating-linear-gradient(90deg,transparent 0 28px,rgba(216,168,184,.035) 28px 29px);
  box-shadow:0 4px 12px rgba(30,37,47,.08);
}
.echarts-card header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:8px;
  min-height:30px;
  margin-bottom:4px;
}
.echarts-card header span{
  color:#8d6070;
  font-size:9px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.echarts-card h2{
  margin:2px 0 0;
  color:#252b33;
  font-size:13px;
  font-weight:600;
  letter-spacing:0;
}
.chart-replay{
  display:grid;
  width:22px;
  height:22px;
  flex:0 0 22px;
  place-items:center;
  border:1px solid #c7ccd3;
  border-radius:3px;
  background:#fff;
  color:#596371;
  cursor:pointer;
  font-size:13px;
}
.chart-replay:hover{
  border-color:#b78496;
  background:#fff6f8;
  color:#4d3440;
}
.echart{
  width:100%;
  height:178px;
}
@media(max-width:1199px){
  .infographic-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .echart{height:180px}
}
@media(max-width:560px){
  .infographic-grid{grid-template-columns:1fr}
  .echarts-card{padding:10px}
  .echarts-card h2{font-size:13px}
  .echart{height:190px}
}
