@layer components {

  /* ── Base ─────────────────────────────────────────────────────────── */

  .empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-4);
    padding: var(--space-8);
  }

  /* ── Icon ──────────────────────────────────────────────────────────── */

  .empty-state > svg {
    width: 32px;
    height: 32px;
    color: var(--color-text-tertiary);
    flex-shrink: 0;
  }

  /* ── Heading ──────────────────────────────────────────────────────── */

  .empty-state > h1,
  .empty-state > h2,
  .empty-state > h3,
  .empty-state > h4,
  .empty-state > h5,
  .empty-state > h6 {
    font-family: var(--font-serif);
    font-size: var(--text-md);
    line-height: var(--leading-tight);
    color: var(--color-text-primary);
  }

  /* ── Description ──────────────────────────────────────────────────── */

  .empty-state > p {
    font-family: var(--font-serif);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--color-text-secondary);
    max-width: 40ch;
  }
}
