/* FM Collection — custom styles */
html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; }

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@keyframes pulse-slow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45); }
  50% { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
}
.animate-pulse-slow { animation: pulse-slow 2.2s infinite; }

/* gold scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #f4ece4; }
::-webkit-scrollbar-thumb { background: #c9a35a; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #a8852f; }

/* selection */
::selection { background: #c9a35a; color: #fff; }
