@charset "utf-8";

/* 클리앙 스타일 - 최신글 리스트 스킨 */
.cl_latest {
    background: #fff;
    border: 1px solid #e0e0e0;
    margin-bottom: 12px;
}

.cl_latest_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
}

.cl_latest_title {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    margin: 0;
}
.cl_latest_title a {
    color: #333;
}
.cl_latest_title a:hover {
    color: #ee6723;
}

.cl_latest_more {
    font-size: 12px;
    color: #999;
}
.cl_latest_more:hover {
    color: #ee6723;
}

.cl_latest_list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cl_latest_list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.1s ease;
}
.cl_latest_list li:last-child {
    border-bottom: 0;
}
.cl_latest_list li:hover {
    background: #fdf5f0;
}

.cl_item_subject {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 13px;
    padding-right: 10px;
}
.cl_item_subject a {
    color: #333;
}
.cl_item_subject a:hover {
    color: #ee6723;
}

.cl_notice_badge {
    display: inline-block;
    padding: 1px 5px;
    background: #ee6723;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    border-radius: 2px;
    vertical-align: middle;
    margin-right: 2px;
}

.cl_comment_cnt {
    color: #ee6723;
    font-size: 11px;
    font-weight: bold;
    margin-left: 4px;
}

.cl_icon_new {
    display: inline-block;
    width: 14px;
    height: 14px;
    line-height: 14px;
    text-align: center;
    background: #ff3d00;
    color: #fff;
    font-size: 9px;
    font-weight: bold;
    border-radius: 50%;
    margin-left: 4px;
    vertical-align: middle;
}

.cl_icon_secret {
    color: #999;
    font-size: 11px;
}

.cl_item_info {
    flex-shrink: 0;
    font-size: 11px;
    color: #999;
    white-space: nowrap;
}
.cl_item_name {
    margin-right: 8px;
    color: #666;
}
.cl_item_date {
    color: #bbb;
}

.cl_empty {
    text-align: center;
    padding: 30px 0 !important;
    color: #999;
    font-size: 13px;
}

/* 반응형 */
@media (max-width: 767px) {
    .cl_latest_list li {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 12px;
    }
    .cl_item_info {
        margin-top: 4px;
    }
}
