        .thumbnail-box {
            display: flex;
            /* width: 300px; */
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            overflow: hidden;
            background: white;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .thumbnail-box:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border-color: #3498db;
        }

        .thumbnail-left {
            flex: 1;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
            position: relative;
            overflow: hidden;
            background-size: cover;

            background-position: center;
            transition: filter 0.5s ease;
        }

        .thumbnail-left.loaded {
            filter: blur(0);
        }

        .thumbnail-left::before {
            /* content: ''; */
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(5px);
        }

        .thumbnail-left img {
            width: 100%;
            height: auto;
            max-width: 50px;
            border-radius: 8px;
            object-fit: cover;
            position: relative;
            z-index: 2;
            filter: brightness(0) invert(1); /* Beyaz ikon */
            transition: transform 0.3s ease;
        }

        .thumbnail-box:hover .thumbnail-left img {
            transform: scale(1.1);
        }

        .content-right {
            flex: 2;
            padding: 30px 10px 10px 10px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }

        .content-title {
            margin: 0 0 10px 0;
            font-size: 16px;
            font-weight: 700;
            line-height: 1.3;
            color: #2c3e50;
        }

        .content-title a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .content-title a:hover {
            color: #3498db;
        }

        .content-description {
            margin: 0;
            font-size: 13px;
            color: #2c3e50;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Badge/Etiket */
        .content-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #e74c3c;
            color: white;
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 10px;
            font-weight: 600;
        }

        /* Yıldız rating */
        .content-rating {
            display: flex;
            gap: 2px;
            margin-top: 8px;
        }

        .star {
            color: #f39c12;
            font-size: 12px;
        }

        /* Responsive */
        @media (max-width: 480px) {
            .thumbnail-box {
                width: 100%;
              /*  max-width: 300px; */
              /*  flex-direction: column; */
            }
            
            .thumbnail-left {
                padding: 20px;
            }
            
            .thumbnail-left img {
                max-width: 40px;
            }
        }

        /* Grid layout için */
        .thumbnail-grid {
            display: grid;
            /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
            grid-template-columns: 1fr; /* Sadece bu satırı değiştir */
            gap: 20px;
            /* padding: 20px; */
            max-width: 1200px;
            margin: 0 auto;
        }