/*
 * MYJUS_DASHBOARD_KANBAN_SPLIT_V1
 */

#myjusDashboardExecutive{
  margin-top:18px;
}

.myjus-dashboard-attention{
  display:grid;
  grid-template-columns:
    repeat(4,minmax(0,1fr));
  gap:14px;
}

.myjus-dashboard-card{
  width:100%;
  min-height:126px;
  padding:18px;
  border:1px solid var(--line);
  border-radius:16px;
  background:var(--card);
  color:var(--text);
  text-align:left;
  cursor:pointer;
  transition:
    transform .16s ease,
    border-color .16s ease,
    box-shadow .16s ease;
}

.myjus-dashboard-card:hover{
  transform:translateY(-2px);
  border-color:var(--primary);
  box-shadow:
    0 10px 24px rgba(15,23,42,.08);
}

.myjus-dashboard-card-label{
  display:block;
  color:var(--muted);
  font-size:12px;
  font-weight:800;
  margin-bottom:12px;
}

.myjus-dashboard-card-value{
  display:block;
  font-size:28px;
  font-weight:900;
  line-height:1;
}

.myjus-dashboard-card-help{
  display:block;
  color:var(--muted);
  font-size:11px;
  line-height:1.45;
  margin-top:12px;
}

.myjus-dashboard-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

@media (max-width:1100px){
  .myjus-dashboard-attention{
    grid-template-columns:
      repeat(2,minmax(0,1fr));
  }
}

@media (max-width:640px){
  .myjus-dashboard-attention{
    grid-template-columns:1fr;
  }
}
