/* Breadcrumb */
#breadcrumb{padding:16px 0 0;font-size:.85rem;color:#64748b}
#breadcrumb a{color:rgb(var(--rgb-color-primary));transition:color var(--transition)}
#breadcrumb a:hover{color:rgba(var(--rgb-color-primary),.7)}
#breadcrumb .parent-index{display:inline-flex;align-items:center;gap:4px}
#breadcrumb .current-index{display:inline;font-weight:400;color:#0f172a}

/* General section layout */
#general-section .container{display:flex;gap:30px;align-items:flex-start}
#general-section .main{flex:1;min-width:0;padding:24px;border-radius:12px;background:#fff;border:1px solid #f1f5f9}
#general-section .sidebar{width:320px;flex-shrink:0}

/* Article list (category, archive, tag, author, search) */
.article-list{display:flex;flex-direction:column;gap:20px}
.article-list .item{display:flex;gap:20px;padding:16px;border-radius:10px;transition:all var(--transition);border:1px solid transparent}
.article-list .item:hover{border-color:#e2e8f0;box-shadow:0 4px 16px rgba(0,0,0,.04)}
.article-list .item picture{width:210px;height:110px;flex-shrink:0;overflow:hidden;border-radius:8px}
.article-list .item picture img{width:100%;height:100%;object-fit:cover;transition:transform var(--transition)}
.article-list .item:hover picture img{transform:scale(1.05)}
.article-list .item-detail{flex:1;min-width:0;display:flex;flex-direction:column}
.article-list .item-detail .categorys{display:flex;gap:6px;flex-wrap:wrap;margin-bottom:6px}
.article-list .item-detail .category{font-size:.75rem;color:rgb(var(--rgb-color-primary));background:rgba(var(--rgb-color-primary),.08);padding:2px 8px;border-radius:4px}
.article-list .item-detail .title{font-size:1.05rem;font-weight:600;color:#0f172a;margin:0 0 6px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;transition:color var(--transition)}
.article-list .item:hover .title{color:rgb(var(--rgb-color-primary))}
.article-list .item-detail .content{font-size:.85rem;color:#64748b;line-height:1.5;margin:0 0 auto;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.article-list .item-detail .date{font-size:.8rem;color:#94a3b8;margin-top:8px}

/* Single article */
#general-section article h1{font-size:2rem;font-weight:700;color:#0f172a;margin-bottom:16px;line-height:1.3}
#general-section article .info{display:flex;align-items:center;gap:20px;flex-wrap:wrap;margin-bottom:24px;padding-bottom:16px;border-bottom:1px solid #f1f5f9;font-size:.85rem;color:#94a3b8}
#general-section article .info>div{display:flex;align-items:center;gap:6px}
#general-section article .info a{color:#64748b;transition:color var(--transition)}
#general-section article .info a:hover{color:rgb(var(--rgb-color-primary))}
#general-section article .content{font-size:1rem;color:#334155;line-height:1.85}
#general-section article .content img{border-radius:8px;max-width:100%;height:auto}
#general-section article .content h2{font-size:1.5rem;font-weight:600;color:#0f172a;margin:28px 0 12px}
#general-section article .content h3{font-size:1.2rem;font-weight:600;color:#0f172a;margin:20px 0 8px}
#general-section article .content p{margin-bottom:16px}
#general-section article .content a{color:rgb(var(--rgb-color-primary));text-decoration:underline}
#general-section article .content blockquote{border-left:3px solid rgb(var(--rgb-color-primary));background:#f8fafc;padding:16px 20px;margin:20px 0;border-radius:0 8px 8px 0;font-style:italic;color:#475569}
#general-section article .content pre{background:#1e293b;color:#e2e8f0;padding:20px;border-radius:8px;overflow-x:auto;font-size:.9rem;line-height:1.6;margin:20px 0}
#general-section .prevornext{display:flex;justify-content:space-between;gap:20px;margin-top:40px;padding-top:20px;border-top:1px solid #f1f5f9}
#general-section .prevornext a{font-size:.9rem;color:#64748b;transition:color var(--transition)}
#general-section .prevornext a:hover{color:rgb(var(--rgb-color-primary))}

/* Archive header */
#archive-section{text-align:center;padding:40px 0 20px}
#archive-section h1{font-size:1.75rem;font-weight:700;color:#0f172a}
#archive-section img{max-height:80px;margin-bottom:12px;border-radius:8px}

/* No results (search) */
.no-results{text-align:center;padding:4rem 0}
.no-results h2{font-size:1.5rem;color:#0f172a;margin-bottom:16px}
.no-results p{font-size:.95rem;color:#64748b;margin-bottom:20px}
.no-results .btn-group{display:flex;justify-content:center}
.no-results #searchform{min-width:320px}

@media (max-width:768px){
    #general-section .container{flex-direction:column}
    #general-section .sidebar{width:100%}
    #general-section .main{padding:16px}
    #general-section article h1{font-size:1.5rem}
    .article-list .item{flex-direction:column;gap:12px}
    .article-list .item picture{width:100%;height:180px}
    #archive-section h1{font-size:1.35rem}
    .no-results{padding:2rem 0}
    .no-results #searchform{min-width:auto;max-width:100%}
}
