.flo-bro-post-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 20px;
}

.post-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(9, 22, 54, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(9, 22, 54, 0.25);
}

.post-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.post-category {
  font-size: 13px;
  color: #1d4ed8;
  font-weight: 600;
  text-transform: uppercase;
}

.post-title {
  font-size: 18px;
  font-weight: 600;
  color: #091636;
  line-height: 1.3em;
  max-height: 3.9em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.post-date {
  font-size: 13px;
  color: #64748b;
}

/* Responsive */
@media (max-width: 1024px) {
  .flo-bro-post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .flo-bro-post-grid {
    grid-template-columns: 1fr;
  }
}