/* Skeleton Base */
.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;
  }
}

/* Article Wrapper */
.skeleton-article {
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  max-width: 900px;
  margin: auto;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
}

/* Title */
.skeleton-title {
  width: 80%;
  height: 24px;
  margin-bottom: 16px;
}

/* Meta Info */
.skeleton-meta {
  width: 60%;
  height: 16px;
  margin-bottom: 12px;
}

/* Tag Group */
.skeleton-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.skeleton-tag {
  width: 80px;
  height: 24px;
  border-radius: 12px;
}

/* Paragraph */
.skeleton-paragraph {
  width: 100%;
  height: 14px;
  margin-bottom: 10px;
  border-radius: 4px;
}

.skeleton-paragraph.short {
  width: 70%;
}
