.dash-embed{
margin-top:5px;
}

.dash-embed-head{margin-bottom:16px;padding:18px 20px;border:1px solid rgba(0,0,0,.08);border-radius:18px;background:linear-gradient(135deg,rgba(255,255,255,.96),rgba(245,247,255,.96));box-shadow:0 8px 24px rgba(0,0,0,.05)}
.dash-embed-head h2{margin:0 0 6px;font-size:1.7rem;line-height:1.1}
.dash-embed-head p{margin:0;opacity:.82}

.dash-grid{
display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 5px;
}

.dash-column{
display: flex;
  flex-direction: column;
  gap: 5px;
}

.dash-card{
overflow: hidden;
  background: var(--transparent);
  border: 1px solid var(--line1);
}

.dash-card-head{display:flex;justify-content:space-between;align-items:flex-start;gap:12px;padding:18px 20px;border-bottom:1px solid rgba(0,0,0,.06)}
.dash-card-head h3{
margin: 0;
  font-size: 13px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--golden);
}

.dash-card-sub{
margin-top: 4px;
  font-size: 11px;
}

.dash-card-link{
display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 10px;
  border-bottom: 1px solid var(--golden);
}

.dash-card-body{padding:10px 14px 14px}
.dash-item{display:flex;justify-content:space-between;align-items:flex-start;gap:12px;padding:12px 10px;border-radius:14px;text-decoration:none;transition:background .15s ease,transform .15s ease}
.dash-item:hover{background:rgba(0,0,0,.035);transform:translateY(-1px)}
.dash-item + .dash-item{margin-top:4px}
.dash-item-title{font-weight:700;line-height:1.35}
.dash-item-meta{margin-top:4px;font-size:.92rem;opacity:.76;line-height:1.45}
.dash-item-side{flex-shrink:0}
.dash-badge{display:inline-flex;align-items:center;justify-content:center;padding:6px 10px;border-radius:999px;font-size:.82rem;font-weight:700;background:rgba(0,0,0,.06)}
.dash-badge.turn{background:rgba(255,107,107,.14)}
.dash-badge.open{background:rgba(100,181,246,.16)}
.dash-badge.done{background:rgba(129,199,132,.18)}
.dash-badge.time{background:rgba(186,104,200,.15)}

.dash-empty{
font-size: 12px;
  padding-left: 5px;
}

@media (max-width: 900px){.dash-grid{grid-template-columns:1fr}}