/* ── Post row list ────────────────────────────── */
.post-rows {
  display: flex;
  flex-direction: column;
}

.post-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: inherit;
}

.post-row:first-child {
  border-top: 1px solid #eee;
}

.post-row:hover .post-row-title {
  text-decoration: underline;
}

.post-row-img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}

.post-row-img-empty {
  background: #f0f0f0;
}

.post-row-body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

.post-row-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem;
  line-height: 1.4;
}

.post-row-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111;
}

.post-row-sep {
  color: #ccc;
  font-size: 0.8rem;
}

.post-row-date {
  font-size: 0.78rem;
  color: #999;
}

.post-row-tags {
  font-size: 0.78rem;
  color: #bbb;
}

.post-row-desc {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.5;
}
