/*
 * Jizone “猜你喜欢”文章卡片样式（默认变体）
 * 适用范围：文章页底部 you-might-like 模块
 * 说明：采用栅格布局展示推荐条目。
 */

.you-might-like {
  margin-top: 24px;
}

.you-might-like h2 {
  font-size: 18px;
  margin-bottom: 12px;
}

.you-might-like .yml-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

@media (min-width: 768px) {
  .you-might-like .yml-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.you-might-like .yml-item {
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 12px;
  height: 72px;
  display: flex;
  align-items: center;
}

.you-might-like .yml-thumb { display: block; width: 48px; height: 48px; min-width: 48px; min-height: 48px; flex: 0 0 48px; border-radius: 6px; overflow: hidden; margin-right: 10px; }
.you-might-like .yml-thumb img { width: 100% !important; height: 100% !important; object-fit: cover !important; aspect-ratio: 1 / 1; display: block; }
.you-might-like .yml-link { text-decoration: none; color: #333; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-size: 14px; line-height: 1.4; }
.you-might-like .yml-link:hover { color: #1677ff; }