/* Skeleton shimmer */
.skeleton {
  background-color: #e2e2e2;
  background-image: linear-gradient(90deg, #e2e2e2 0px, #f5f5f5 40px, #e2e2e2 80px);
  background-size: 600px;
  background-repeat: no-repeat;
  animation: shimmer 1.2s infinite linear;
  border-radius: 6px;
}

@keyframes shimmer {
  0% {
    background-position: -100px;
  }
  100% {
    background-position: 600px;
  }
}

/* Container for multiple articles */
.skeleton-article-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Single article card */
.skeleton-article-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

/* Title bar */
.skeleton-title {
  width: 90%;
  height: 18px;
  margin-bottom: 10px;
}

/* Description lines */
.skeleton-desc-line {
  height: 14px;
  width: 100%;
  margin-bottom: 8px;
}

.skeleton-desc-line.short {
  width: 70%;
}

/* Footer (date, tags, icons) */
.skeleton-article-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
}

/* Date */
.skeleton-meta {
  width: 90px;
  height: 14px;
}

/* Tags */
.skeleton-tag {
  width: 110px;
  height: 22px;
  border-radius: 12px;
}

/* Share icons */
.skeleton-icons {
  flex-grow: 1;
  height: 24px;
  max-width: 80px;
  margin-left: auto;
}
