/* Gated content UI - pure CSS placeholder with teaser-derived line widths */
:root {
  --kerja-primary: #2563eb;
  --kerja-primary-dark: #1e40af;
  --gated-shim-bg: #e2e5ea;
  --gated-shim-bg-secondary: #f8f9fa;
  --gated-cta-border: #e2e5ea;
  --gated-btn-bg: #392C7D;
  --gated-btn-text: #fff;
}

.gated-content {
  position: relative;
}

.gated-shimmer-lines {
  position: relative;
  overflow: hidden;
  max-height: 130px;
}

.gated-shimmer-line {
  height: 11px;
  border-radius: 6px;
  background: var(--gated-shim-bg);
  margin-bottom: 8px;
}

.gated-shimmer-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to bottom, transparent, var(--gated-shim-bg-secondary));
  pointer-events: none;
}

.gated-cta-box {
  background: var(--gated-shim-bg-secondary);
  border: 0.5px solid var(--gated-cta-border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  margin-top: 12px;
}

.gated-cta-text {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 500;
  color: #1A1D23;
}

.gated-cta-btn {
  padding: 9px 22px;
  border-radius: 20px;
  background: var(--gated-btn-bg);
  color: var(--gated-btn-text);
  text-decoration: none;
  font-size: 13px;
  display: inline-block;
}

@keyframes jp-shim {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.9; }
}

.gated-content-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: grid;
  place-items: center;
}

.gated-cta-card {
  text-align: center;
  width: min(520px, 92%);
  padding: 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
