/* ==========================================================================
   Component: Empty States
   Description: Placeholder UI for zero-data scenarios
   ========================================================================== */

/* --- Container --- */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-16) var(--space-8);
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}

/* --- Icon slot --- */
.empty-state__icon {
  width: 64px;
  height: 64px;
  margin-bottom: var(--space-4);
  color: var(--text-tertiary);
  opacity: 0.5;
}

/* --- Heading --- */
.empty-state__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

/* --- Supporting copy --- */
.empty-state__description {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

/* --- CTA slot --- */
.empty-state__action {
  margin-top: var(--space-2);
}

/* --- Geometric illustration (CSS-only, no images) --- */
.empty-state__illustration {
  width: 120px;
  height: 120px;
  margin-bottom: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.empty-state__illustration::before {
  content: "";
  width: 80px;
  height: 80px;
  border-radius: var(--radius-2xl);
  border: 3px dashed var(--border-default);
  transform: rotate(12deg);
}
