/* Skeleton 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.2s infinite linear;
}

@keyframes shimmer {
  0% {
    background-position: -100px;
  }
  100% {
    background-position: 600px;
  }
}

/* Main card */
.topics-skeleton {
  width: 260px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  padding: 16px 12px;
}

/* Header bar */
.skeleton-title {
  height: 32px;
  width: 100%;
  border-radius: 16px;
  margin-bottom: 20px;
}

/* List layout */
.skeleton-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* List items */
.skeleton-item {
  height: 16px;
  border-radius: 8px;
  margin-bottom: 14px;
  width: 80%;
}