body {
  background-color: #f8f9fa;
  font-family: 'Inter', sans-serif;
  color: #212529;
}

.post-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.post-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.post-title {
  text-decoration: none;
  color: #000;
  font-weight: 700;
}

.post-title:hover {
  text-decoration: underline;
}

.post-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.post-card small {
  font-size: 0.8rem;
  color: #6c757d;
}