.blur-paywall {
  filter: blur(4px);
  pointer-events: none;
  position: relative;
}

.blur-paywall::after {
  content: 'Click to Unlock';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  border-radius: inherit;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: white;
  font-size: 0.875rem;
  opacity: 0;
  transition: opacity 0.2s;
}

.blur-paywall:hover::after {
  opacity: 1;
  background: rgba(0, 0, 0, 0.45);
}
