/* ─────────────────────────────────────────────────────────────────────────
   Street Talk — Skeleton Loading Styles
   Paste inside the existing <style> block in index.php
   ───────────────────────────────────────────────────────────────────────── */

/* Shimmer animation */
@keyframes st-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.st-skeleton {
  background: linear-gradient(
    90deg,
    #ebebeb 25%,
    #d6d6d6 50%,
    #ebebeb 75%
  );
  background-size: 200% 100%;
  animation: st-shimmer 1.4s ease-in-out infinite;
  border-radius: 0.375rem;
}
