.fb-feed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.fb-post {
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  padding: 12px;
  box-shadow: 0 2px 4px rgba(0,0,0,.1);
}
.fb-image img {
  width: 100%;
  border-radius: 4px;
}
.fb-message {
  margin-top: 8px;
  font-size: 14px;
  color: #333;
}
.fb-date {
  margin-top: 5px;
  font-size: 12px;
  color: #777;
}
