.filtered-posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.filtered-post-card {
  width: calc(33.333% - 20px);
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  padding: 15px;
  box-sizing: border-box;
  transition: transform 0.2s ease;
}

.filtered-post-card:hover {
  transform: translateY(-4px);
}

.card-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.card-title {
  font-size: 18px;
  margin: 12px 0 8px;
}

.card-title a {
  text-decoration: none;
  color: #333;
}

.card-excerpt {
  font-size: 14px;
  color: #666;
}
