/* Skeleton shimmer animation */
.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.3s infinite linear;
  border-radius: 6px;
}

@keyframes shimmer {
  0% {
    background-position: -100px;
  }
  100% {
    background-position: 600px;
  }
}

/* Overall container */
.page-header-skeleton {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #fff7e6;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

/* Left side */
.header-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 60%;
}

/* Right side (illustration placeholder) */
.header-right {
  flex-shrink: 0;
}

/* Individual skeleton blocks */
.skeleton-breadcrumb {
  width: 220px;
  height: 14px;
  border-radius: 10px;
}

.skeleton-subject {
  width: 100px;
  height: 20px;
}

.skeleton-title {
  width: 240px;
  height: 24px;
}

.skeleton-meta {
  width: 280px;
  height: 16px;
}

/* Right illustration placeholder */
.skeleton-illustration {
  width: 140px;
  height: 140px;
  border-radius: 10px;
}