/*
=====================================================
📄 File Name : style.css
📂 File Path : D:\xampp\htdocs\todaynol.com\skin\latest\nolday\style.css
=====================================================
📝 Purpose
-----------------------------------------------------
- 최신글 내부 리스트의 정렬 및 너비 최적화
- 제목이 잘리지 않고 최대한 길게 노출되도록 개선
=====================================================
*/

.nolday-latest-wrap {
    background: transparent;
    width: 100%;
}

/* 제목/더보기 제거 (이중 안전장치) */
.nolday-latest-wrap .lat_title, 
.nolday-latest-wrap .lt_more { 
    display: none !important; 
}

.nolday-latest-wrap ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nolday-latest-wrap li {
    display: flex;
    align-items: center;
    justify-content: space-between; /* 제목은 왼쪽, 날짜는 오른쪽 */
    padding: 10px 0;
    border-bottom: 1px solid #2d2e35;
    gap: 10px;
}

.nolday-latest-wrap li:last-child {
    border-bottom: none;
}

/* 제목 링크 영역 - 최대한 넓게 확보 */
.nolday-latest-wrap .subject-link {
    flex: 1;
    min-width: 0; /* flex 안에서 말줄임표 작동을 위한 필수 설정 */
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nolday-latest-wrap .subject-link:hover {
    color: #ffffff;
}

/* 아이콘 및 부가정보 */
.nolday-latest-wrap .new-icon { color: #00e0ff; font-size: 11px; margin-right: 5px; font-weight: bold; }
.nolday-latest-wrap .cmt-count { color: #d4af37; font-size: 11px; margin-left: 5px; }

/* 날짜 영역 - 우측 고정 */
.nolday-latest-wrap .lt_date {
    font-size: 11px;
    color: #777;
    white-space: nowrap; /* 날짜는 줄바꿈 방지 */
    flex-shrink: 0;
}

.nolday-latest-wrap .empty_li {
    padding: 20px 0;
    text-align: center;
    color: #666;
    font-size: 13px;
}