/* Minimal styles for LS Facebook Feed */
.lsfbfvc-feed { --gap: 16px; }
.lsfbfvc-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: var(--gap); }
.lsfbfvc-item { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; }
.lsfbfvc-thumb img { width: 100%; height: auto; display: block; }
.lsfbfvc-content { padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.lsfbfvc-date { font-size: 12px; color: #6b7280; }
.lsfbfvc-text { margin: 0; font-size: 14px; line-height: 1.4; color: #111827; }
.lsfbfvc-link { font-size: 13px; text-decoration: none; }
.lsfbfvc-error, .lsfbfvc-empty { padding: 8px 12px; background: #fff8f0; border: 1px solid #f59e0b; border-radius: 8px; }
@media (prefers-color-scheme: dark) {
  .lsfbfvc-item { background: #111827; border-color: #374151; }
  .lsfbfvc-text { color: #e5e7eb; }
  .lsfbfvc-date { color: #9ca3af; }
}
