/** ponytail: 列表页两列卡片共用排版；升级路径：CSS container queries 按卡片宽度而非 viewport */
.PlogCard_link__qoldY {
  display: block;
  text-decoration: none;
  height: auto;
}
.PlogCard_linkFill__lISWJ,
.PlogCard_cardFill__eG4wu {
  height: 100%;
}
.PlogCard_card__ZwN7m {
  display: flex;
  flex-direction: column;
  position: relative;
  height: auto;
  min-width: 0;
}
.PlogCard_coverWrap__NVgIl {
  flex-shrink: 0;
  aspect-ratio: 16 / 9;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  background-color: var(--bg-secondary);
  isolation: isolate;
}
.PlogCard_coverImg__Qa8tN {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.PlogCard_cardBody__Gm0ti {
  display: flex;
  flex-direction: column;
  flex: 1 1;
  gap: 16px;
  padding: 24px;
}
.PlogCard_cardBodyWithCover__ghen1 {
  padding-top: 16px;
}
.PlogCard_metaRow__rr4oz,
.PlogCard_tagRow__GV1iy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}
.PlogCard_metaRow__rr4oz .hunt-ui-badge,
.PlogCard_tagRow__GV1iy .hunt-ui-badge,
.PlogCard_setMeta__4r8qZ .hunt-ui-badge {
  line-height: 1.2;
  min-height: 20px;
  box-sizing: border-box;
}
.PlogCard_title__juHDX {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 0 8px rgba(var(--primary-rgb), calc(var(--text-glow-intensity, 1) * 0.35));
}
.PlogCard_summary__uBz7j {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.55;
  text-shadow: 0 0 6px rgba(var(--primary-rgb), calc(var(--text-glow-intensity, 1) * 0.2));
}
.PlogCard_authorRow__xFIq3 {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.PlogCard_authorName__JGM5w {
  flex: 1 1;
  min-width: 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.PlogCard_statsRow__JIKIr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
}
.PlogCard_date__IwKiJ {
  flex-shrink: 0;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
  white-space: nowrap;
}
/* PlogSetCard 复用 */
.PlogCard_setCard__AX7i5 {
  display: block;
  text-decoration: none;
  height: 100%;
  color: inherit;
}
.PlogCard_setBody___lYFI {
  display: flex;
  flex-direction: column;
  flex: 1 1;
  gap: 16px;
  padding: 24px;
}
.PlogCard_setMeta__4r8qZ {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-muted);
}
.PlogCard_setFooter__3OAQm {
  margin-top: auto;
  font-size: 12px;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .PlogCard_coverWrap__NVgIl {
    /* 保持上左右贴边；勿套 mobile-card-cover（会加 margin） */
    aspect-ratio: 16 / 9;
    margin: 0;
    border-radius: 0;
  }
  .PlogCard_cardBody__Gm0ti,
  .PlogCard_cardBodyWithCover__ghen1 {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 8px;
  }
  .PlogCard_title__juHDX {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-width: 0;
    margin: 0;
  }
  .PlogCard_summary__uBz7j,
  .PlogCard_tagRow__GV1iy {
    display: none;
  }
  .PlogCard_authorRow__xFIq3 {
    min-width: 0;
  }
  .PlogCard_authorName__JGM5w {
    font-size: 12px;
    line-height: 1.43;
    color: var(--text-secondary);
  }
  .PlogCard_statsRow__JIKIr {
    font-size: 12px;
    line-height: 1.43;
    color: var(--text-secondary);
    margin-top: auto;
    color: var(--text-muted);
  }
  .PlogCard_date__IwKiJ {
    display: none;
  }
}
@media (max-width: 420px) {
  .PlogCard_metaRow__rr4oz .hunt-ui-badge,
  .PlogCard_setMeta__4r8qZ .hunt-ui-badge {
    padding: 0 4px;
    font-size: 10px;
    min-height: 16px;
    line-height: 16px;
  }
}

