/**
 * SSG 公共样式 - 通用组件（面包屑、推荐卡片、标签）
 *
 * 抽取自 ArticleContentTemplate / CategoryTemplate / TutorialOverviewTemplate / ArticleListTemplate 中重复的组件样式。
 *
 * 配色风格参考: 暖黄温馨风
 *
 * 依赖：auth.css（提供 --primary-color 等变量）
 * 引入：SharedSnippet.cssTags()
 */

/* ---- 面包屑 - 暖黄温馨风 ---- */
.breadcrumb {
    font-size: 14px;
    color: #FA8C16;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: #FFF7E6;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(15,23,42,0.06);
    border: 1px solid #FFE7BA;
}
.breadcrumb a {
    color: #475569;
    text-decoration: none;
    transition: color 0.2s;
    cursor: pointer;
}
.breadcrumb a:hover {
    color: #FA8C16;
}
.breadcrumb-sep {
    color: #FFD591;
}
.breadcrumb-current {
    color: #FA8C16;
    font-weight: 600;
}

/* ---- 推荐卡片 - 暖黄温馨风 ---- */
.recommend-card {
    background: #fff;
    border-radius: 12px;
    padding: 14px 12px;
    box-shadow: 0 1px 3px rgba(15,23,42,0.06);
    border: 1px solid #FFE7BA;
}
.recommend-title {
    font-size: 15px;
    font-weight: 700;
    color: #FA8C16;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding-bottom: 8px;
    border-bottom: 2px solid #FFE7BA;
}
.recommend-icon {
    font-size: 15px;
}
.recommend-item {
    padding: 9px 0;
    border-bottom: 1px solid #FFE7BA;
    cursor: pointer;
    transition: all 0.18s;
}
.recommend-item:last-child {
    border-bottom: none;
}
.recommend-item:hover .recommend-item-title {
    color: #FA8C16;
}
.recommend-item:hover {
    padding-left: 3px;
    background: #FFF7E6;
    padding-right: 6px;
    border-radius: 10px;
}
.recommend-item-title {
    font-size: 15px;
    font-weight: 600;
    color: #0F172A;
    line-height: 1.5;
    margin-bottom: 3px;
    transition: color 0.18s;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.recommend-item-summary {
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* ---- 标签 ---- */
.tag-free {
    display: none !important;
}
/* 付费标签：暖黄渐变主题 */
.tag-paid {
    display: inline-block;
    padding: 1px 10px;
    font-size: 12px;
    color: #fff;
    background: linear-gradient(135deg, #FA8C16, #D46B08);
    border: 1px solid #D46B08;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(250,140,22,0.22);
}
/* 热门标签：暖黄阶 */
.tag-hot {
    display: inline-block;
    padding: 1px 10px;
    font-size: 12px;
    color: #FA8C16;
    background: #FFE7BA;
    border: 1px solid #FFD591;
    border-radius: 10px;
    font-weight: 600;
}
/* VIP标签：暖黄 */
.tag-vip {
    display: inline-block;
    padding: 1px 10px;
    font-size: 13px;
    color: #ffffff;
    background: #FA8C16;
    border: 1px solid #D46B08;
    border-radius: 10px;
    font-weight: 700;
}
