
        .content-wrapper {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 300px;
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .article-list-section .article-item {
            display: flex;
            gap: 1rem;
            padding: 1.2rem;
            border: 1px solid rgba(156, 118, 89, 0.26);
            border-radius: var(--radius-lg);
            background: var(--card-bg);
            margin-bottom: 1rem;
            transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
        }
        
        .article-list-section .article-item:hover {
            transform: translateY(-2px);
            border-color: rgba(180, 103, 63, 0.5);
            box-shadow: var(--shadow-soft);
        }
        
        .article-list-section .article-image {
            flex-shrink: 0;
            width: 140px;
            height: 100px;
            border-radius: var(--radius-md);
            overflow: hidden;
        }
        
        .article-list-section .article-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .article-list-section .article-info {
            flex: 1;
            min-width: 0;
        }
        
        .article-list-section .article-title {
            margin: 0 0 0.5rem;
            font-family: "Noto Serif SC", serif;
            font-size: 1.15rem;
            line-height: 1.4;
            color: #513428;
        }
        
        .article-list-section .article-title a {
            color: #513428;
            text-decoration: none;
            transition: color 180ms ease;
        }
        
        .article-list-section .article-title a:hover {
            color: #a05433;
        }
        
        .article-list-section .article-meta {
            margin: 0 0 0.5rem;
            font-size: 0.82rem;
            color: #9a7c6b;
            display: flex;
            gap: 1rem;
        }
        
        .article-list-section .article-desc {
            margin: 0;
            color: var(--ink-muted);
            line-height: 1.6;
            font-size: 0.9rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .section-footer {
            margin-top: 2rem;
            text-align: center;
        }
        
        .load-more-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.75rem 2rem;
            border: 1px solid rgba(153, 112, 79, 0.3);
            border-radius: 999px;
            background: rgba(255,255, 255, 0.76);
            color: #5f4434;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 200ms ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
        .load-more-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(173, 87, 48, 0.15);
            transform: translate(-50%, -50%);
            transition: width 0.4s ease, height 0.4s ease;
        }
        
        .load-more-btn:hover {
            transform: translateY(-2px);
            border-color: rgba(153, 112, 79, 0.5);
            box-shadow: 0 6px 16px rgba(120, 79, 56, 0.18);
            color: #8a4d2f;
        }
        
        .load-more-btn:hover::before {
            width: 300px;
            height: 300px;
        }
        
        .load-more-btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 8px rgba(120, 79, 56, 0.12);
        }
        
        .load-more-btn.loading {
            pointer-events: none;
            opacity: 0.7;
        }
        
        .load-more-btn.loading .btn-text {
            opacity: 0.5;
        }
        
        .load-more-btn .spinner {
            display: none;
            width: 18px;
            height: 18px;
            border: 2px solid rgba(95, 68, 52, 0.3);
            border-top-color: #5f4434;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }
        
        .load-more-btn.loading .spinner {
            display: block;
        }
        
        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }
        
        .widget {
            border-radius: var(--radius-lg);
            border: 1px solid rgba(139, 104, 78, 0.24);
            background: rgba(255, 255, 255, 0.78);
            padding: 1rem;
            margin-bottom: 1rem;
        }
        
        .widget .section-head {
            margin-bottom: 0.8rem;
        }
        
        .widget .section-head h3 {
            margin: 0;
            font-family: "Noto Serif SC", serif;
            font-size: 1rem;
            color: #513428;
        }
        
        .hot-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .hot-list li {
            margin-bottom: 0.8rem;
        }
        
        .hot-list li:last-child {
            margin-bottom: 0;
        }
        
        .hot-list a {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            text-decoration: none;
            color: #5f473d;
            font-size: 0.86rem;
            line-height: 1.5;
            transition: color 180ms ease;
        }
        
        .hot-list a:hover {
            color: #a05433;
        }
        
        .hot-title {
            flex: 1;
            margin-right: 0.5rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .hot-views {
            flex-shrink: 0;
            font-size: 0.75rem;
            color: #917564;
            white-space: nowrap;
        }
        
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
            color: #7d6558;
            font-size: 0.84rem;
        }
        
        .breadcrumb .back-home {
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            text-decoration: none;
            color: #7b5343;
            padding: 0.36rem 0.62rem;
            border-radius: 999px;
            border: 1px solid rgba(153, 112, 79, 0.3);
            background: rgba(255, 255, 255, 0.76);
            transition: all 180ms ease;
        }
        
        .breadcrumb .back-home:hover {
            border-color: rgba(153, 112, 79, 0.55);
            transform: translateY(-1px);
        }
        
        .breadcrumb .separator {
            color: #9a7c6b;
            font-weight: 500;
        }
        
        .breadcrumb .current {
            color: #7d6558;
            font-weight: 500;
        }
        
        @media (max-width: 1100px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            
            .side-column {
                display: none;
            }
            
            .main-column {
                width: 100%;
            }
        }
        
        @media (max-width: 1040px) {
            .content-wrapper {
                gap: 1.2rem;
            }
            
            .article-list-section .article-item {
                padding: 1rem;
            }
            
            .article-list-section .article-desc {
                font-size: 0.85rem;
            }
            
            .load-more-btn {
                padding: 0.6rem 1.5rem;
                font-size: 0.85rem;
            }
        }
        
        @media (max-width: 760px) {
            .article-list-section .article-item {
                flex-direction: column;
            }
            
            .article-list-section .article-image {
                width: 100%;
                height: 180px;
            }
            
            .side-column {
                display: none;
            }
            
            .container {
                padding: 0 1rem;
            }
            
            .breadcrumb {
                font-size: 0.8rem;
            }
            
            .article-list-section .article-title {
                font-size: 1.05rem;
            }
            
            .article-list-section .article-meta {
                font-size: 0.75rem;
            }
            
            .article-list-section .article-desc {
                font-size: 0.85rem;
            }
            
            .load-more-btn {
                padding: 0.6rem 1.5rem;
                font-size: 0.85rem;
            }
        }
        
        @media (max-width: 600px) {
            .article-list-section .article-image {
                height: 160px;
            }
            
            .article-list-section .article-item {
                padding: 0.9rem;
            }
            
            .content-wrapper {
                gap: 1rem;
                margin-top: 1.5rem;
            }
            
            .article-list-section {
                margin-top: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .article-list-section .article-image {
                height: 140px;
            }
            
            .article-list-section .article-item {
                padding: 0.8rem;
                gap: 0.8rem;
            }
            
            .article-list-section .article-title {
                font-size: 1rem;
            }
            
            .article-list-section .article-meta {
                font-size: 0.7rem;
                gap: 0.8rem;
            }
            
            .article-list-section .article-desc {
                font-size: 0.8rem;
                line-height: 1.5;
            }
            
            .breadcrumb {
                font-size: 0.75rem;
                gap: 0.3rem;
            }
            
            .load-more-btn {
                padding: 0.5rem 1.2rem;
                font-size: 0.8rem;
            }
        }
        
        @media (max-width: 360px) {
            .article-list-section .article-image {
                height: 120px;
            }
            
            .article-list-section .article-item {
                padding: 0.6rem;
            }
            
            .article-list-section .article-title {
                font-size: 0.95rem;
            }
            
            .article-list-section .article-desc {
                font-size: 0.75rem;
            }
        }