/* ============================================
   모바일 섹션 리스트 스킨 1
   이미지 상단, 내용 하단 배열 (모바일 최적화)
   ============================================ */

.mobile_section_list {
    background: #fff;
    padding: 15px;
    min-height: calc(100vh - 120px); /* 헤더 높이 제외 */
}

/* 섹션 헤더 */
.section_header {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 2px solid #333;
}

.section_title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

/* 섹션 컨텐츠 */
.section_content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* 섹션 아이템 */
.section_item {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
}

.section_item:last-child {
    border-bottom: none;
}

.section_item a {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* 썸네일 */
.section_thumb {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
    margin-bottom: 12px;
    border-radius: 4px;
}

.section_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.section_item:active .section_thumb img {
    transform: scale(1.05);
}

/* 섹션 정보 */
.section_info {
    padding: 0;
}

.section_info h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: #333;
    margin: 0 0 8px 0;
    word-break: keep-all;
}

.section_summary {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0 0 10px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 메타 정보 */
.section_meta {
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section_time {
    color: #999;
}

.section_author {
    color: #666;
}

.section_time::after {
    content: '|';
    margin-left: 8px;
    color: #ddd;
}

/* 이미지 없는 경우 */
.section_item:not(:has(.section_thumb)) .section_info h3 {
    font-size: 15px;
}

/* 데이터 없음 */
.no_data {
    padding: 60px 20px;
    text-align: center;
}

.no_data p {
    font-size: 15px;
    color: #999;
}

/* 페이지네이션 */
.section_pagination {
    margin-top: 30px;
    padding: 20px 0;
    text-align: center;
}

.section_pagination a,
.section_pagination strong {
    display: inline-block;
    min-width: 32px;
    height: 32px;
    line-height: 32px;
    margin: 0 3px;
    padding: 0 8px;
    font-size: 14px;
    text-align: center;
    border-radius: 4px;
    transition: all 0.2s;
}

.section_pagination a {
    color: #666;
    background: #f5f5f5;
}

.section_pagination a:active {
    background: #1a9ba8;
    color: #fff;
}

.section_pagination strong {
    background: #1a9ba8;
    color: #fff;
    font-weight: 600;
}

/* 반응형 - 작은 모바일 */
@media (max-width: 360px) {
    .mobile_section_list {
        padding: 10px;
    }
    
    .section_thumb {
        height: 180px;
    }
    
    .section_info h3 {
        font-size: 15px;
    }
    
    .section_summary {
        font-size: 13px;
    }
}

/* 반응형 - 큰 모바일/태블릿 */
@media (min-width: 480px) {
    .section_thumb {
        height: 240px;
    }
    
    .section_info h3 {
        font-size: 17px;
    }
}

/* 다크모드 비활성화 - 항상 화이트 배경 */
/* 다크모드 설정 제거됨 */
