/* Simple placeholder pulse animation */
.placeholder { background: #e0e0e0; animation: pulse 1.2s infinite; }
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: .5; } 100% { opacity: 1; } }
