/* =========================
   FEED SKELETON
   ========================= */

.gm-skeleton-card {
  display: flex;
  gap: 12px;
  padding: 12px;
  margin-bottom: 12px;
  background: #fff;
  border-radius: 8px;
}

.gm-skeleton-thumb {
  width: 96px;
  height: 96px;
  background: #eee;
  border-radius: 6px;
  flex-shrink: 0;
  animation: pulse 1.4s ease-in-out infinite;
}

.gm-skeleton-lines {
  flex: 1;
}

.gm-skeleton-line {
  height: 14px;
  background: #eee;
  border-radius: 4px;
  margin-bottom: 10px;
  animation: pulse 1.4s ease-in-out infinite;
}

.gm-skeleton-line.short {
  width: 60%;
}

.gm-skeleton-line.tiny {
  width: 40%;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.4; }
  100% { opacity: 1; }
}
