body.wpccnews-loading {
  overflow: hidden;
}

#wpccnews-loader {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.wpccnews-spinner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 4px solid #e0e0e0;
  border-top-color: #1976d2;
  animation: wpccnews-spin 0.9s linear infinite;
}

@keyframes wpccnews-spin {
  to {
    transform: rotate(360deg);
  }
}
