/* ─── Page Top ──────────────────────────────────────────────── */
.page-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
  flex-wrap: wrap;
}
.page-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1;
}

/* ─── Empty State ───────────────────────────────────────────── */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 72px 24px;
  border: 1px dashed var(--grey-300);
  border-radius: var(--radius-lg);
  gap: 12px;
}
.empty-icon {
  color: var(--grey-300);
  margin-bottom: 4px;
}
.empty-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  font-style: italic;
  color: var(--black);
}
.empty-desc {
  font-size: 0.88rem;
  color: var(--grey-500);
  max-width: 320px;
  line-height: 1.55;
  margin-bottom: 8px;
}
