/* Base shimmer */
.skeleton {
  background-color: #e2e5e7;
  background-image: linear-gradient(90deg, #e2e5e7 0px, #f8f8f8 40px, #e2e5e7 80px);
  background-size: 600px;
  background-repeat: no-repeat;
  animation: shine 1.2s linear infinite;
  border-radius: 4px;
}

@keyframes shine {
  0% {
    background-position: -100px;
  }
  100% {
    background-position: 600px;
  }
}

.related-articles-skeleton {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

/* Article Card Skeleton */
.skeleton-article {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}

/* Title */
.skeleton-title {
  height: 18px;
  width: 50%;
  margin-bottom: 10px;
  border-radius: 6px;
}

/* Summary lines */
.skeleton-text-line {
  height: 14px;
  width: 100%;
  margin-bottom: 6px;
  border-radius: 6px;
}

.skeleton-text-line.short {
  width: 75%;
}

/* Footer: author + share */
.skeleton-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}

.skeleton-author-badge {
  height: 24px;
  width: 120px;
  border-radius: 12px;
}

/* Share icons row */
.skeleton-share-icons {
  display: flex;
  gap: 10px;
}

.skeleton-icon {
  height: 20px;
  width: 20px;
  border-radius: 50%;
}
