/* ═══════════════════════════════════════════════════════════════════
   AURALIS · EmptyState component (Task PP)
   ═══════════════════════════════════════════════════════════════════ */

.es {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-sm);
}
[data-theme="light"] .es, :root:not([data-theme]) .es {
  background: var(--surface);
  box-shadow: var(--shadow-card-sm);
}
[data-theme="dark"] .es {
  background: hsl(220 25% 6% / 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
}

.es-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  color: hsl(38 60% 55%);
  opacity: 0.6;
}
[data-theme="dark"] .es-icon { color: hsl(38 70% 65%); opacity: 0.5; }
.es-icon svg { width: 100%; height: 100%; }

.es-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}

.es-desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 280px;
  margin-bottom: 18px;
}

.es-action {
  min-height: 44px;
  padding: 10px 24px;
  border: none;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, hsl(38 80% 50%), hsl(38 70% 42%));
  color: white;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px hsl(38 70% 45% / 0.35);
  transition: transform var(--dur-fast) var(--ease);
}
.es-action:active { transform: scale(0.97); }
