/* Async-load skeleton shimmer */
.async-skeleton {
  padding: 1rem;
}
.skeleton-row {
  height: 1rem;
  margin-bottom: 0.75rem;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
  border-radius: 4px;
}
.skeleton-row:nth-child(odd) { width: 100%; }
.skeleton-row:nth-child(even) { width: 85%; }
@keyframes skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
