/* 콘텐츠 목록 */
.network_wrap {
    margin-top: -30px;
}

/* 상단 제목, 검색창 */
.channel-h-title h2 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    padding: 0;
}

.list-header {
    width: 1140px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.list-search-wrapper {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

/* 검색창 */
.list-search-fieldset {
    display: flex;
    align-items: center;
    border: 1px solid #eee;
    border-radius: 999px;
    padding: 5px 10px;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
    width: 200px;
}

.list-search-btn {
    width: 20px;
    height: 20px;
    background: url('/css/images/new/channel_h/search-icon.svg') no-repeat center;
    background-size: contain;
    border: none;
    padding: 0;
    margin-right: 8px;
    cursor: pointer;
}

.list-search-keyword {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
    background-color: #ffffff;
}

.list-search-nothing {
    margin: 100px 0;
    text-align: center;
    font-size: 17px;
    color: #8f8f8f;
}

.list-search-nothing .no_result {
    color: #111111;
    font-size: 22px;
    font-weight: 700;
}

/* 정렬 드롭다운 */
.sort-dropdown-container {
    position: relative;
    display: inline-block;
    font-size: 14px;
}

.sort-dropdown-toggle {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 8px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.arrow-icon {
    font-size: 12px;
}

.sort-dropdown-list {
    position: absolute;
    top: 110%;
    right: 0;
    background-color: #f2f2f2;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 100;
    width: 120px;
    display: none;
}

.sort-dropdown-list li {
    padding: 6px 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sort-dropdown-list li:hover {
    background-color: #e6e6e6;
}

.check-icon {
    visibility: visible;
    font-size: 12px;
}

.invisible {
    visibility: hidden;
}

/* 콘텐츠 영역 */
.list-contents-wrapper {
    width: 100%;
}

.list-contents {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 30px;
    padding: 0;
    margin-top: 15px;
    list-style: none;
}

.list-contents-wrapper > .list-contents > .contents-item {
    border-radius: 8px;
    width: calc((100% - 90px) / 4);
    height: 50%;
    box-sizing: border-box;
    flex-direction: column;
    margin-bottom: 20px;
}

.list-contents-wrapper > .list-contents > .contents-item > a > .thumb {
    width: 260px;
    height: 260px;
    border-radius: 8px;
}

.list-contents-wrapper > .list-contents > .contents-item > .contents-info-wrapper > .li_catetory > a {
    margin-bottom: -4px;
}


.list-contents-wrapper > .list-contents > .contents-item > .contents-info-wrapper > .li_tit {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5em;
    max-height: 4.0em;
    word-break: break-word;
    margin: -5px 0 5px;
}

.list-contents-wrapper > .list-contents > .contents-item > .contents-info-wrapper > .li_info > span {
    color: #8f8f8f;
    font-weight: 400;
}
