/* ===== Auth Ticker (quotes/messages) ===== */
.auth-ticker {
  width:100%; background:#f8fafc; border-top:1px solid #e5e7eb; padding:10px 0;
}
.auth-ticker .container {
  width:min(1100px, 92%); margin:0 auto; overflow:hidden;
}
.auth-ticker .line {
  white-space:nowrap; display:flex; gap:24px; align-items:center;
  animation: tickerMove 18s linear infinite;
  font-size:14px; color:#374151;
}
.auth-ticker .pill {
  background:#e0e7ff; color:#1e40af; border-radius:999px; padding:4px 10px; font-weight:600;
}
@keyframes tickerMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width:480px){
  .auth-ticker .line { font-size:13px; }
}