/* ============================================
   섹션 리스트 스킨 1 - 기본형
   이미지 왼쪽, 내용 오른쪽 배열
   ============================================ */

.section_list_wrap {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* 리스트 아이템 */
.section_list_item {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #e5e5e5;
    transition: background 0.2s;
}

.section_list_item:hover {
    background: #fafafa;
}

.section_list_item:last-child {
    border-bottom: none;
}

/* 썸네일 이미지 */
.item_thumbnail {
    flex-shrink: 0;
    width: 200px;
    height: 140px;
    overflow: hidden;
    background: #f5f5f5;
}

.item_thumbnail a {
    display: block;
    width: 100%;
    height: 100%;
}

.item_thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.section_list_item:hover .item_thumbnail img {
    transform: scale(1.05);
}

/* 콘텐츠 영역 */
.item_content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 제목 */
.item_title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 12px 0;
    color: #333;
}

.item_title a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.item_title a:hover {
    color: #5AB2FF;
}

.breaking_label {
    color: #d00;
    font-weight: 700;
    font-size: 16px;
    margin-right: 5px;
}

/* 요약 */
.item_summary {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0 0 12px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 메타 정보 */
.item_meta {
    font-size: 13px;
    color: #999;
}

.meta_author {
    color: #666;
    font-weight: 500;
}

.meta_separator {
    margin: 0 8px;
    color: #ddd;
}

.meta_time {
    color: #999;
}

/* 이미지가 없는 경우 */
.section_list_item:not(:has(.item_thumbnail)) .item_content {
    padding-left: 0;
}

/* 반응형 디자인 */
@media (max-width: 1024px) {
    .item_thumbnail {
        width: 180px;
        height: 120px;
    }
    
    .item_title {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .section_list_item {
        flex-direction: column;
        gap: 15px;
        padding: 20px 0;
    }
    
    .item_thumbnail {
        width: 100%;
        height: 220px;
    }
    
    .item_title {
        font-size: 16px;
    }
    
    .item_summary {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .section_list_item {
        padding: 15px 0;
    }
    
    .item_thumbnail {
        height: 200px;
    }
    
    .item_title {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .item_summary {
        -webkit-line-clamp: 3;
        margin-bottom: 10px;
    }
}

