/* BMM Facebook Feed PRO - Frontend & Admin */
.bmmfbp-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
  gap:16px;
}
.bmmfbp-card{
  background:#fff;
  border-radius:14px;
  box-shadow:0 4px 16px rgba(0,0,0,.08);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.bmmfbp-image{
  width:100%;
  height:200px;
  object-fit:cover;
  display:block;
}
.bmmfbp-content{
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.bmmfbp-date{
  font-size:12px;
  color:#666;
}
.bmmfbp-text{
  margin:0;
  font-size:14px;
  line-height:1.4;
}
.bmmfbp-button{
  display:inline-block;
  padding:10px 14px;
  background:#1877f2; /* estilo Facebook */
  color:#fff;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
  text-align:center;
  transition:opacity .2s ease;
}
.bmmfbp-button:hover{ opacity:.9; }
.bmmfbp-wrap .bmmfbp-tools{ display:flex; gap:10px; align-items:center; }
.bmmfbp-wrap .bmmfbp-result{
  background:#0b0b0b;
  color:#e6e6e6;
  padding:12px;
  border-radius:8px;
  max-height:400px;
  overflow:auto;
}
