/* PremiumGate — wraps content; in free tier shows blurred preview + upgrade CTA */
.premium-gate {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px dashed var(--hairline-2);
  background: var(--surface);
}

.premium-gate__preview {
  filter: blur(4px);
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
}

.premium-gate__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  gap: 8px;
  text-align: center;
  background: linear-gradient(180deg, color-mix(in oklab, var(--surface) 60%, transparent), color-mix(in oklab, var(--surface) 95%, transparent));
}

.premium-gate--compact .premium-gate__overlay { padding: 12px; }

.premium-gate__title {
  font-family: var(--font-kr);
  font-weight: 700;
  color: var(--ink);
  font-size: 14px;
}

.premium-gate__body {
  font-size: 11px;
  color: var(--ink-3);
  line-height: 1.5;
  max-width: 240px;
}

.premium-gate__cta {
  margin-top: 4px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  background: var(--ink);
  color: var(--surface);
  border: none;
  border-radius: var(--r-pill);
  cursor: pointer;
}
