/* 分类和标签页面文章列表样式 */

/* 文章信息容器 */
.article-sort-item-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* 文章标题 */
.article-sort-item-title {
  flex: 1;
  margin-right: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 文章时间 */
.article-sort-item-time {
  white-space: nowrap;
  font-size: 0.9em;
  color: var(--card-meta);
}

/* 响应式设计 */
@media (max-width: 768px) {
  .article-sort-item-info {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .article-sort-item-title {
    margin-right: 0;
    margin-bottom: 5px;
    white-space: normal;
  }
  
  .article-sort-item-time {
    align-self: flex-start;
  }
}