.posts-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.post-card {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  transition: none;
  gap: 15px;
}

.post-card:hover {
  transform: none;
  background: none;
  border: none;
  box-shadow: none;
}

.post-card-content {
  padding: 0;
  flex-direction: row;
  align-items: baseline;
  gap: 15px;
}

.post-card .date {
  min-width: 140px;
  margin-bottom: 0;
  font-family: monospace;
  font-size: 0.9rem;
  color: #666;
}

.post-card h2 {
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  color: #ff9800;
  text-decoration: underline;
  text-decoration-color: #444;
}

.post-card:hover h2 {
  color: #ff9800;
  text-decoration-color: #ff9800;
}

.post-card p {
  display: none; /* Karpathy style usually hides descriptions in the list */
}

.post-card-footer {
  display: none;
}
