/* PostCard Component Styles */

.post-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15) !important;
}

.post-card .card-title a {
  color: inherit;
  transition: color 0.2s ease;
}

.post-card .card-title a:hover {
  color: var(--bs-primary);
}
