		.artimg_container {
			margin: 0;
            padding: 0;
            box-sizing: border-box;
            width: 100%;
            padding: 40px 20px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .artimg_grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        @media (max-width: 1200px) {
            .artimg_grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .artimg_grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
        
        .artimg_item {
            display: flex;
            background: #ffffff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .artimg_item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 100, 255, 0.2);
        }
        
        .artimg_image_wrapper {
            flex: 0 0 120px;
            position: relative;
            overflow: hidden;
        }
        
        .artimg_image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .artimg_image_link {
            display: block;
            width: 100%;
            height: 100%;
        }
        
        .artimg_image_link:hover .artimg_image {
            transform: scale(1.1);
        }
        
        .artimg_image_overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(100, 150, 255, 0.3), rgba(0, 200, 255, 0.2));
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .artimg_image_link:hover .artimg_image_overlay {
            opacity: 1;
        }
        
        .artimg_content {
            flex: 1;
            padding: 20px;
            display: flex;
            flex-direction: column;
        }
        
        .artimg_title {
            font-family: Arial, sans-serif;
            font-weight: 900;
            font-size: 1.1rem;
            line-height: 1.4;
            margin-bottom: 8px;
            color: #1a1a1a;
        }
        
        .artimg_title_link {
            color: #1a1a1a;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .artimg_title_link:hover {
            color: #0066cc;
        }
        
        .artimg_description {
            font-family: Arial, sans-serif;
            font-weight: 300;
            font-size: 0.85rem;
            line-height: 1.6;
            color: #666666;
            margin-bottom: 12px;
            flex: 1;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .artimg_date {
            font-family: Arial, sans-serif;
            font-size: 0.8rem;
            color: #888888;
        }
        
        .artimg_item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 8px;
            padding: 2px;
            background: linear-gradient(135deg, 
                rgba(100, 150, 255, 0.3) 0%, 
                rgba(0, 200, 255, 0.2) 50%, 
                rgba(100, 150, 255, 0.3) 100%);
            -webkit-mask: 
                linear-gradient(#fff 0 0) content-box, 
                linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            z-index: 1;
            transition: opacity 0.3s ease;
        }
        
        .artimg_item:hover::before {
            opacity: 1;
        }
        
        .artimg_grid_bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.2;
            background-image: 
                linear-gradient(rgba(100, 150, 255, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(100, 150, 255, 0.1) 1px, transparent 1px);
            background-size: 30px 30px;
        }
        
        @media (max-width: 768px) {
            .artimg_grid {
                gap: 20px;
            }
            
            .artimg_image_wrapper {
                flex: 0 0 100px;
            }
            
            .artimg_content {
                padding: 15px;
            }
            
            .artimg_title {
                font-size: 1rem;
            }
            
            .artimg_description {
                font-size: 0.8rem;
                -webkit-line-clamp: 2;
            }
        }
        
        @media (max-width: 480px) {
            .artimg_grid {
                gap: 15px;
            }
            
            .artimg_image_wrapper {
                flex: 0 0 80px;
            }
            
            .artimg_content {
                padding: 12px;
            }
            
            .artimg_title {
                font-size: 0.95rem;
            }
            
            .artimg_description {
                font-size: 0.75rem;
                -webkit-line-clamp: 2;
            }
        }