
    .nc-search-news-widget {
        width: 100%;
        margin-bottom: 20px;
        font-family: 'Pretendard', sans-serif;
    }

    /* 리스트 스타일: netcity 검색 결과와 동일하게 구성 */
    .nc-snw-item {
        display: flex !important;
        gap: 25px;
        text-decoration: none;
        padding: 25px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transition: background-color 0.2s ease, color 0.2s ease;
        align-items: center;
    }

    .nc-snw-item:hover { background: rgba(255, 255, 255, 0.36); }

    /* 좌측 썸네일 영역 */
    .nc-snw-thumb {
        width: 140px;
        height: 95px;
        flex-shrink: 0;
        background: #f8f9fa;
        border-radius: 4px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(0,0,0,0.03);
        box-shadow: none;
    }

    .nc-snw-thumb img { width: 100%; height: 100%; object-fit: cover; }
    .nc-snw-thumb i { color: #d1d5db; font-size: 24px; }

    /* 우측 정보 영역 */
    .nc-snw-info { flex: 1; min-width: 0; }

    .nc-snw-category {
        font-size: 11px;
        color: #4285f4;
        font-weight: 800;
        font-family: 'JetBrains Mono';
        margin-bottom: 6px;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .nc-snw-title {
        font-size: 19px;
        font-weight: 700;
        color: #111;
        margin-bottom: 8px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nc-snw-desc {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .nc-snw-meta {
        margin-top: 12px;
        font-size: 12px;
        color: #999;
        display: flex;
        gap: 15px;
    }

    @media (max-width: 640px) {
        .nc-snw-item { gap: 15px; padding: 20px 0; }
        .nc-snw-thumb { width: 85px; height: 65px; border-radius: 4px; }
        .nc-snw-title { font-size: 17px; }
        .nc-snw-desc { display: none; }
    }
