
        .blog-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }

        .main-content {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .header h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            color: #222;
        }
        
        .header p {
            font-size: 1.1rem;
            color: #666;
        }
        
        .slider-container {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 500px;
        }
        
        .slide {
            min-width: 100%;
            height: 100%;
            position: relative;
        }
        
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .slide-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .slide:hover .slide-caption {
            transform: translateY(0);
        }
        
        .slide-caption h3 {
            margin-bottom: 10px;
            font-size: 1.4rem;
        }
        
        .slide-caption p {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.5);
            border: none;
            border-radius: 50%;
            font-size: 1.5rem;
            color: #333;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }
        
        .slider-btn:hover {
            background: rgba(255, 255, 255, 0.8);
        }
        
        .prev-btn {
            left: 20px;
        }
        
        .next-btn {
            right: 20px;
        }
        
        .dots-container {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ccc;
            margin: 0 5px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .dot.active {
            background: #555;
        }
        
        .thumbnails {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
        }
        
        .thumbnail {
            width: 80px;
            height: 60px;
            border-radius: 4px;
            cursor: pointer;
            opacity: 0.7;
            transition: all 0.3s ease;
            object-fit: cover;
            border: 2px solid transparent;
        }
        
        .thumbnail:hover {
            opacity: 1;
        }
        
        .thumbnail.active {
            opacity: 1;
            border-color: #555;
        }
        
        .blog-sidebar {
            position: sticky;
            top: 20px;
            height: fit-content;
        }

        .blog-post-card {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            padding: 15px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            align-items: center;
        }

        .blog-post-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .post-thumbnail {
            width: 80px;
            height: 60px;
            object-fit: cover;
            border-radius: 4px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .post-content {
            flex: 1;
        }

        .post-title {
            font-size: 1rem;
            margin-bottom: 8px;
            color: #333;
            font-weight: 600;
        }

        .post-excerpt {
            font-size: 0.85rem;
            color: #666;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            line-height: 1.4;
        }

        .post-meta {
            font-size: 0.75rem;
            color: #999;
            margin-top: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .post-meta::before {
            content: "•";
            margin-right: 5px;
        }

        .blog-footer {
            text-align: center;
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid #eee;
            color: #777;
            grid-column: 1/-1;
        }
        
        @media (max-width: 768px) {
            .slider-container {
                height: 400px;
            }
            
            .slider-btn {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 480px) {
            .slider-container {
                height: 300px;
            }
            
            .slide-caption {
                padding: 15px;
            }
            
            .slide-caption h3 {
                font-size: 1.1rem;
            }
        }