.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.post {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.post .thumb img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.post-body {
  padding: 12px;
}
.post-title {
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}
.post-title:hover {
  text-decoration: underline;
}
.post .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}
.tag {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  margin-left: 6px;
}
.post-header h1 {
  margin: 0 0 6px;
}
.post-footer {
  margin-top: 16px;
  border-top: 1px dashed var(--border);
  padding-top: 10px;
}
@media (max-width: 1280px) {
  .posts-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
