
/* V437T - Customer Analytics */
.v437t-customer-overview,
.v437t-care,
.v437t-charts{
  margin-bottom:12px;
  padding:14px;
  border:1px solid var(--border);
  border-radius:12px;
  background:var(--card);
}
.v437t-overview-head,
.v437t-section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  margin-bottom:11px;
}
.v437t-overview-head>div>span,
.v437t-section-head>div>span{
  display:block;
  font-size:8px;
  font-weight:800;
  letter-spacing:.08em;
  color:var(--muted-foreground);
}
.v437t-overview-head h2,
.v437t-section-head h3{
  margin:3px 0 0;
  font-size:13px;
}
.v437t-overview-head>small,
.v437t-section-head>small{
  max-width:420px;
  text-align:right;
  font-size:8.5px;
  color:var(--muted-foreground);
}
.v437t-kpis{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:8px;
}
.v437t-kpis article,
.v437t-care-grid article{
  min-height:94px;
  padding:11px;
  border:1px solid var(--border);
  border-radius:9px;
  background:var(--background);
}
.v437t-kpis span,
.v437t-care-grid span{
  display:block;
  font-size:8px;
  font-weight:750;
  color:var(--muted-foreground);
}
.v437t-kpis b,
.v437t-care-grid b{
  display:block;
  margin-top:6px;
  font-size:19px;
  line-height:1;
  font-variant-numeric:tabular-nums;
}
.v437t-kpis small,
.v437t-care-grid small{
  display:block;
  margin-top:6px;
  font-size:7.5px;
  line-height:1.35;
  color:var(--muted-foreground);
}
.v437t-care-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:8px;
}
.v437t-care-grid article{
  position:relative;
  overflow:hidden;
}
.v437t-care-grid article:after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:0;
  height:3px;
}
.v437t-care-grid .warning:after{background:#f59e0b}
.v437t-care-grid .danger:after{background:#dc2626}
.v437t-care-grid .growth:after{background:#16a34a}
.v437t-care-grid .debt:after{background:#7c3aed}

.v437t-chart-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:9px;
}
.v437t-chart-card{
  min-width:0;
  padding:11px;
  border:1px solid var(--border);
  border-radius:9px;
  background:var(--background);
}
.v437t-chart-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  margin-bottom:5px;
}
.v437t-chart-head h4{
  margin:0;
  font-size:10.5px;
}
.v437t-chart-head small{
  font-size:7.8px;
  color:var(--muted-foreground);
}

@media(max-width:1100px){
  .v437t-kpis{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
  .v437t-care-grid{
    grid-template-columns:1fr 1fr;
  }
}
@media(max-width:760px){
  .v437t-customer-overview,
  .v437t-care,
  .v437t-charts{
    margin-bottom:9px;
    padding:10px;
    border-radius:10px;
  }
  .v437t-overview-head,
  .v437t-section-head{
    align-items:flex-start;
    flex-direction:column;
    gap:4px;
    margin-bottom:8px;
  }
  .v437t-overview-head>small,
  .v437t-section-head>small{
    text-align:left;
    font-size:7.5px;
  }
  .v437t-overview-head h2,
  .v437t-section-head h3{
    font-size:11px;
  }
  .v437t-kpis{
    grid-template-columns:1fr 1fr;
    gap:6px;
  }
  .v437t-kpis article{
    min-height:82px;
    padding:9px;
  }
  .v437t-kpis article:last-child:nth-child(odd){
    grid-column:1/-1;
  }
  .v437t-kpis b,
  .v437t-care-grid b{
    font-size:16px;
  }
  .v437t-care-grid{
    grid-template-columns:1fr 1fr;
    gap:6px;
  }
  .v437t-care-grid article{
    min-height:86px;
    padding:9px;
  }
  .v437t-chart-grid{
    grid-template-columns:1fr;
    gap:7px;
  }
  .v437t-chart-card{
    padding:8px;
  }
  .v437t-chart-head h4{font-size:9.5px}
  .v437t-chart-head small{font-size:7px}
  .v437t-chart-card .recharts-responsive-container{
    height:215px!important;
    min-height:215px!important;
  }
}
@media(max-width:390px){
  .v437t-kpis,
  .v437t-care-grid{
    grid-template-columns:1fr;
  }
  .v437t-kpis article:last-child:nth-child(odd){
    grid-column:auto;
  }
}
