/* 全站帖子卡：左独立圆角封面 + 右文案，底栏时间/作者/👁浏览量 */
.post-card {
  position: relative;
  height: auto;
  min-height: 0;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  padding: 12px;
  overflow: hidden;
  border: 1px solid var(--line, #303030);
  border-radius: 8px;
  background: var(--surface, #181818);
}
.post-card__cover {
  display: block;
  height: 158px;
  overflow: hidden;
  border-radius: 6px;
  background: #222;
}
.post-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.post-card__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 2px 4px 0 0;
}
.post-card__heading {
  margin: 0;
}
.post-card__title {
  display: -webkit-box;
  overflow: hidden;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.post-card__title::after {
  position: absolute;
  inset: 0;
  content: "";
}
.post-card .pill-row {
  position: relative;
  z-index: 2;
  width: fit-content;
  max-width: 100%;
  margin-top: 2px;
}
.post-card__body p {
  margin: 8px 0;
  display: -webkit-box;
  overflow: hidden;
  color: #999;
  font-size: 14px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.post-card .post-meta {
  margin-top: 8px;
  padding-top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 13px;
  line-height: 1.2;
}
.post-card .post-meta time {
  grid-column: 1;
  justify-self: start;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.post-card .post-meta__author {
  grid-column: 2;
  justify-self: center;
  text-align: center;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.post-card .post-meta__views {
  grid-column: 3;
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 4px;
  color: #666;
}
.post-card .post-meta__eye {
  width: 16px;
  height: 16px;
  display: block;
  opacity: 0.85;
}

@media (max-width: 767px) {
  .post-card {
    height: 342px;
    display: block;
    padding: 0;
  }
  .post-card__cover {
    height: 198px;
    border-radius: 4px;
  }
  .post-card__cover img {
    height: 100%;
    border-radius: 4px;
  }
  .post-card__body {
    display: flex;
    flex-direction: column;
    height: 144px;
    padding: 13px;
    overflow: hidden;
  }
  .post-card__title {
    max-height: 38px;
    font-size: 15px;
    line-height: 19px;
    -webkit-line-clamp: 2;
  }
  .post-card__body p {
    margin: 6px 0 0;
    font-size: 12px;
    line-height: 17px;
    -webkit-line-clamp: 1;
  }
  .post-card .pill-row {
    margin-top: 8px;
  }
  .post-card .post-meta {
    min-height: 20px;
    margin-top: 8px;
    padding-top: 0;
    gap: 8px;
    font-size: 11px;
  }
}
