        .content {
            margin-left: 280px;
            padding: 25px;
            width: calc(100% - 240px);
            height: 100vh;
        }
        
        .image-display-container {
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 1px dashed rgba(139, 90, 43, 0.1);
        }
        
        .section-title {
            font-size: 26px;
            color: #8B5A2B;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
            font-weight: normal;
        }
        
        .single-image-container {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .single-image {
            max-width: 100%;
            max-height: 70vh;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            object-fit: contain;
        }
        
        .image-info {
            background-color: rgba(255, 253, 245, 0.95);
            padding: 20px;
            border-radius: 8px;
            margin-top: 15px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .image-info h3 {
            color: #8B5A2B;
            margin-bottom: 10px;
            font-size: 20px;
        }
        
        .image-info p {
            color: #5a4a3a;
            line-height: 1.8;
            margin-bottom: 15px;
        }
        
        .image-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #999;
            font-size: 14px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .multi-image-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
        }
        
        .multi-image-slider {
            display: flex;
            transition: transform 0.5s ease;
            height: 70vh;
        }
        
        .multi-image-slide {
            min-width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #f5f0e6;
        }
        
        .multi-image-slide img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 15px;
        }
        
        .slider-btn {
            width: 40px;
            height: 40px;
            background-color: #E8D5B5;
            border: none;
            border-radius: 50%;
            margin: 0 10px;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s;
        }
        
        .slider-btn:hover {
            background-color: #D4C19C;
            transform: scale(1.1);
        }
        
        .slider-dots {
            display: flex;
            justify-content: center;
            margin-top: 15px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #E8D5B5;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .slider-dot.active {
            background-color: #8B5A2B;
            transform: scale(1.2);
        }
        
        .slide-descriptions {
            margin-top: 20px;
        }
        
        .slide-description {
            display: none;
            background-color: rgba(255, 253, 245, 0.95);
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .slide-description.active {
            display: block;
        }
        
        .waterfall-container {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 15px;
            margin-top: 30px;
        }
        
        .waterfall-item {
            position: relative;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            aspect-ratio: 3/4;
        }
        
        .waterfall-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .waterfall-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .waterfall-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 12px;
            background-color: rgba(255, 253, 245, 0.9);
            transform: translateY(100%);
            transition: all 0.3s;
        }
        
        .waterfall-item:hover .waterfall-info {
            transform: translateY(0);
        }
        
        .waterfall-title {
            font-weight: bold;
            color: #8B5A2B;
            margin-bottom: 5px;
            font-size: 15px;
        }
        
        .waterfall-meta {
            display: flex;
            justify-content: space-between;
            color: #999;
            font-size: 12px;
        }        
        .article-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 40px 0;
        }
        
        .article-tag {
            padding: 5px 12px;
            background-color: #F5E8C4;
            border-radius: 15px;
            font-size: 13px;
            transition: all 0.3s;
        }
        
        .article-tag:hover {
            background-color: #E8D5B5;
            color: #8B5A2B;
        }