/* UC Facebook Tiles - 2-column responsive grid, full image shown */
.uc-fbt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 700px) {
  .uc-fbt-grid {
    grid-template-columns: 1fr;
  }
}

.uc-fbt-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  transition: transform .12s ease, box-shadow .12s ease;
  background: #fff;
}

.uc-fbt-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.uc-fbt-thumb {
  width: 100%;
  background: #000;
}

.uc-fbt-thumb img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain; /* show full image */
}

.uc-fbt-content {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.uc-fbt-text {
  color: #111827;
  font-size: 15px;
  line-height: 1.6;
}

.uc-fbt-date {
  color: #6b7280;
  font-size: 12px;
}

.uc-fbt-error, .uc-fbt-empty {
  padding: 12px 14px;
  border: 1px solid #ef4444;
  background: #fff7f7;
  color: #991b1b;
  border-radius: 6px;
}
