
        .content {
            margin-left: 280px;
            padding: 25px;
            width: calc(100% - 240px);
            min-height: 100vh;
        }
        
        .page-header {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 25px;
        }
        
        .page-title {
            font-size: 24px;
            color: #8B5A2B;
            font-weight: bold;
        }
        
        .categories {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 10px;
        }
        
        .category-btn {
            padding: 8px 15px;
            background-color: #E8D5B5;
            border-radius: 20px;
            transition: all 0.3s ease;
            font-size: 14px;
            white-space: nowrap;
        }
        
        .category-btn.active, .category-btn:hover {
            background-color: #D4C19C;
            color: #8B5A2B;
            transform: translateY(-2px);
        }
        
        .article-list-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 25px;
        }
        
        .article-item {
            background-color: white;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            display: flex;
        }
        
        .article-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .article-image {
            width: 200px;
            height: 150px;
            flex-shrink: 0;
        }
        
        .article-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .article-content {
            flex: 1;
            padding: 20px;
            display: flex;
            flex-direction: column;
        }
        
        .article-title {
            font-size: 20px;
            color: #8B5A2B;
            margin-bottom: 10px;
            font-weight: normal;
            transition: all 0.3s;
        }
        
        .article-title:hover {
            color: #5a4a3a;
        }
        
        .article-meta {
            display: flex;
            margin-bottom: 12px;
            font-size: 13px;
            color: #a69b8a;
        }
        
        .article-meta span {
            margin-right: 15px;
            display: flex;
            align-items: center;
        }
        
        .article-meta i {
            margin-right: 5px;
            font-size: 14px;
        }
        
        .article-excerpt {
            color: #7a6a5a;
            line-height: 1.8;
            margin-bottom: 15px;
            flex-grow: 1;
        }
        
        .article-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .article-category {
            padding: 4px 10px;
            background-color: #F5E8C4;
            border-radius: 4px;
            font-size: 12px;
            color: #8B5A2B;
        }
        
        .read-more {
            color: #8B5A2B;
            font-size: 14px;
            transition: all 0.3s;
            display: flex;
            align-items: center;
        }
        
        .read-more:hover {
            color: #5a4a3a;
        }
        
        .read-more i {
            margin-left: 5px;
            transition: all 0.3s;
        }
        
        .read-more:hover i {
            transform: translateX(3px);
        }
        
