/* CMS API 加载态 */
.is-loading[data-cms-notice] .text {
  color: transparent;
  background: linear-gradient(90deg, #e8ecf2 25%, #f4f6f9 50%, #e8ecf2 75%);
  background-size: 200% 100%;
  animation: cms-shimmer 1.2s ease-in-out infinite;
  border-radius: 4px;
  min-width: 120px;
  display: inline-block;
}

.is-loading[data-cms-rewards]::before,
.is-loading[data-cms-projects]::before {
  content: "加载中…";
  display: block;
  text-align: center;
  padding: 24px;
  color: var(--muted);
  font-size: 13px;
}

.is-loading[data-cms-rewards] .reward-item,
.is-loading[data-cms-projects] .project-card {
  display: none;
}

.cms-empty {
  margin: 16px;
  padding: 20px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  background: #fff;
  border-radius: var(--radius-lg);
}

@keyframes cms-shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}
