/* ============================================================
   post.css — Estilos exclusivos da página de Post
   ============================================================ */

/* Efeito de borrão para conteúdo restrito */
.blurred-content {
  filter: blur(8px);
  -webkit-filter: blur(8px);
  user-select: none;
  opacity: 0.5;
  pointer-events: none;
}

/* Contêiner responsivo para YouTube (proporção 16:9) */
.video-responsive-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.video-responsive-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
