       .postlist-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .postlist-title {
    font-size: 20px;
    font-weight: 500;
    text-align: left;
    margin-bottom: 40px;
    background: linear-gradient(45deg, #ffffff, #fff800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}
        

        
        .postlist-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            perspective: 1000px;
        }
        
        .postlist-item {
            aspect-ratio: 9/16;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            transform-style: preserve-3d;
            transition: transform 0.5s ease, box-shadow 0.5s ease;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
            cursor: pointer;
        }
        
        .postlist-item:hover {
            transform: translateZ(20px) rotateY(5deg) rotateX(5deg);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 0, 51, 0.3);
        }
        
        .postlist-image {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
        }
        
        .postlist-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .postlist-item:hover .postlist-image img {
            transform: scale(1.1);
        }
        
        .postlist-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
            padding: 25px 20px;
            transform: translateZ(15px);
            z-index: 2;
        }
        
        .postlist-content {
            position: relative;
            z-index: 2;
        }
        
        .postlist-category {
            display: inline-block;
            background: #ff0033;
            color: white;
            padding: 6px 12px;
            border-radius: 15px;
            font-size: 12px;
            font-weight: 700;
            margin-bottom: 12px;
            box-shadow: 0 5px 15px rgba(255, 0, 51, 0.4);
        }
        
        .postlist-item-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
            line-height: 1.3;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .postlist-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 12px;
            color: #ccc;
            margin-top: 15px;
        }
        
        .postlist-meta-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .postlist-meta-item i {
            color: #ff0033;
        }
        
        .postlist-bottom-shadow {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 250px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            z-index: 1;
            border-radius: 0 0 20px 20px;
        }
        
        /* 3D effect for each item based on position */
        .postlist-item:nth-child(1) {
            transform: rotateY(-5deg) rotateX(5deg);
        }
        
        .postlist-item:nth-child(2) {
            transform: rotateY(-2deg) rotateX(3deg);
        }
        
        .postlist-item:nth-child(3) {
            transform: rotateY(2deg) rotateX(3deg);
        }
        
        .postlist-item:nth-child(4) {
            transform: rotateY(5deg) rotateX(5deg);
        }
        
                @media (max-width: 1100px) {
                    
                    .postlist-grid {
                        grid-template-columns: repeat(2, 1fr);
                    }
					
					.postlist-item-title {
    					font-size: 12px;
						color:white;
					}
					
					.postlist-meta {
						font-size: 9px;
					}
					
					.postlist-category {
						display: inline-block;
						background: #ff0033b3;
						color: white;
						padding: 0px 6px;
						border-radius: 5px;
						font-size: 11px;
						font-weight: 500;
						margin-bottom: 12px;
						box-shadow: 0 5px 15px rgba(255, 0, 51, 0.4);
					}
                }