/* Content-gating blur applied to restricted post bodies.
 * Pairs with templates/macros/content_gate.html (modal) and
 * static/js/content-gate.js (modal show + Bootstrap-missing fallback).
 */
.content-gated {
  filter: blur(5px);
  -webkit-filter: blur(5px);
  user-select: none;
  pointer-events: none;
  overflow: hidden;
  max-height: 60vh;
}
