/* CrowdCraft Design System - Minimal Authored Rules */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --color-brand: #4f46e5;
  --color-brand-hover: #4338ca;
  --color-surface: #ffffff;
  --color-surface-subtle: #f8fafc;
  --color-border: #e2e8f0;
  --color-text-main: #0f172a;
  --color-text-muted: #64748b;
}

html,
body {
  font-family: var(--font-sans);
  color: var(--color-text-main);
  background-color: #f8fafc;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

.nav-drawer {
  transition: transform 0.25s ease-in-out;
}

.nav-drawer.open {
  transform: translateX(0);
}

.nav-drawer.closed {
  transform: translateX(-100%);
}

.feed-card {
  transition: border-color 0.15s ease;
}

.feed-card:hover {
  border-color: #cbd5e1;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.125rem 0.5rem;
}
