@tailwind base;
@tailwind components;
@tailwind utilities;

/* Add any custom global styles here */
body {
  font-family: 'Inter', sans-serif;
}

/* Line clamp utility for text truncation */
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
