.skeleton-loader {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}
.skeleton-block {
  height: 20px;
  width: 100%;
  background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%);
  background-size: 400% 100%;
  animation: skeleton-loading 1.2s infinite;
  border-radius: 4px;
}
.skeleton-img {
  width: 100%;
  height: 200px;
  background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%);
  background-size: 400% 100%;
  animation: skeleton-loading 1.2s infinite;
  border-radius: 8px;
}
@keyframes skeleton-loading {
  0% { background-position: 100% 50%; }
  100% { background-position: 0 50%; }
} 