/* Base Skeleton Style */
.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;
  }
}

/* Page Skeleton Container */
.page-skeleton {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
}

/* Banner Skeleton */
.skeleton-banner {
  height: 140px;
  width: 100%;
  border-radius: 8px;
  margin-bottom: 30px;
}

/* Title Skeleton */
.skeleton-title {
  height: 32px;
  width: 60%;
  margin: 0 auto 20px;
  border-radius: 8px;
}

/* Paragraph Skeleton Lines */
.skeleton-paragraph {
  height: 14px;
  width: 100%;
  margin-bottom: 10px;
  border-radius: 6px;
}

.skeleton-paragraph.short {
  width: 80%;
}

/* Categories Skeleton Grid */
.skeleton-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 30px;
  padding: 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 0 10px #f0f0f0;
}

/* Individual category box */
.skeleton-category-box {
  height: 50px;
  border-radius: 6px;
}
