
    
    /* 섹션 디자인 */
    .summary-section {
        margin-bottom: 30px;
        border: 1px solid #eaeaea;
    }
    
    .section-header {
        background-color: #f8f9fa;
        padding: 15px 20px;
        border-bottom: 1px solid #eaeaea;
    }
    
    .section-title {
        font-size: 18px;
        font-weight: 600;
        color: #333;
        margin: 0;
        display: flex;
        align-items: center;
    }
    
    .section-title i {
        margin-right: 10px;
        color: var(--primary-color) !important;
    }
    
    .section-body {
        padding: 20px;
        background: #fff;
    }
    
    /* 테이블 스타일 */
    .table-simple {
        width: 100%;
        border-collapse: collapse;
    }

	.table-simple ul {
		margin-bottom: 0px !important;
	}
    
    .table-simple th {
        background-color: var(--primary-color) !important;
        padding: 12px;
        border: 1px solid #eaeaea;
        color: #ffffff;
    }
	.underline {
		text-decoration: underline;
	}
    
    .table-simple td {
        padding: 12px;
        border: 1px solid #eaeaea;
    }
    
    /* 리스트 스타일 */
    ul {
        padding-left: 20px;
        margin-bottom: 1rem;
    }
    
    li {
        margin-bottom: 8px;
        line-height: 1.5;
		word-break: keep-all;
    }
    
    /* 알림 텍스트 */
    .txt-notice {
        color: #666;
        font-size: 14px;
    }
    
    .txt-orange {
        color:rgb(231, 114, 60);
    }
    
    /* 인덴트 및 여백 */
    .indent15 {
        padding-left: 15px;
    }
    
    .indent20 {
        padding-left: 20px;
    }
    
    /* 버튼 스타일 */
    .nav-btn {
        padding: 8px 16px;
        background: #f8f9fa;
        border: 1px solid #eaeaea;
        color: #333;
        margin-right: 8px;
        margin-bottom: 8px;
        cursor: pointer;
    }
    
    .btn-navigation {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
	
	    @media (max-width: 768px) {
        .section-title {
            font-size: 16px;
        }
        
        .section-body {
            padding: 15px;
        }
    }


    
/* 모바일 환경에서 텍스트 크기 통일 */
@media (max-width: 768px) {
    .summary-container {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
    
    .summary-container p {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
    
    .summary-container li {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
    
    .summary-container .table-simple {
        font-size: 14px !important;
    }
    
    .summary-container .table-simple th {
        font-size: 14px !important;
        line-height: 1.4 !important;
        padding: 10px 8px !important;
    }
    
    .summary-container .table-simple td {
        font-size: 14px !important;
        line-height: 1.4 !important;
        padding: 10px 8px !important;
    }
    
    .summary-container .section-title {
        font-size: 16px !important;
        line-height: 1.4 !important;
    }
    
    .summary-container .txt-notice {
        font-size: 13px !important;
        line-height: 1.4 !important;
    }
    
    .summary-container .blockquote-primary b {
        font-size: 15px !important;
        line-height: 1.4 !important;
    }
}

@media (max-width: 480px) {
    .summary-container {
        font-size: 13px !important;
        line-height: 1.4 !important;
    }
    
    .summary-container p {
        font-size: 13px !important;
        line-height: 1.4 !important;
    }
    
    .summary-container li {
        font-size: 13px !important;
        line-height: 1.4 !important;
    }
    
    .summary-container .table-simple {
        font-size: 13px !important;
    }
    
    .summary-container .table-simple th {
        font-size: 13px !important;
        line-height: 1.3 !important;
        padding: 8px 6px !important;
    }
    
    .summary-container .table-simple td {
        font-size: 13px !important;
        line-height: 1.3 !important;
        padding: 8px 6px !important;
    }
    
    .summary-container .section-title {
        font-size: 15px !important;
        line-height: 1.3 !important;
    }
    
    .summary-container .txt-notice {
        font-size: 12px !important;
        line-height: 1.3 !important;
    }
    
    .summary-container .blockquote-primary b {
        font-size: 14px !important;
        line-height: 1.3 !important;
    }
    
    .summary-container .btn {
        font-size: 13px !important;
    }
    
    .summary-container .btn-sm {
        font-size: 12px !important;
        padding: 6px 12px !important;
    }
}

/* 표 안의 이미지 크기 - 원본 비율 유지하면서 가로 넓게 */
.table-simple img {
    max-width: 250px;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: block;
    margin: 0 auto 10px auto;
}

/* 표 안의 텍스트 줄바꿈 처리 */
.table-simple td,
.table-simple th {
    word-break: keep-all;
    word-wrap: break-word;
    hyphens: auto;
}

/* 웹툰 이미지는 가로로 넓게 */
.table-simple img[src*="webtoon"] {
    max-width: 400px;
    height: auto;
}

/* 모바일에서 이미지 크기 조정 */
@media (max-width: 768px) {
    .table-simple img {
        max-width: 150px;
        height: auto;
    }
    
    .table-simple img[src*="webtoon"] {
        max-width: 280px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .table-simple img {
        max-width: 120px;
        height: auto;
    }
    
    .table-simple img[src*="webtoon"] {
        max-width: 240px;
        height: auto;
    }
}

/* 일반 스타일 - summary-list 클래스 */
.summary-list {
    margin-bottom: 0px;
}

.summary-list li {
    margin-bottom: 8px;
}

/* 모바일 환경에서 summary-list 추가 스타일링 */
@media (max-width: 768px) {
    .summary-list {
        margin-bottom: 0px !important;
        padding-left: 20px !important;
    }
    
    .summary-list li {
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-bottom: 10px !important;
    }
}

@media (max-width: 480px) {
    .summary-list {
        margin-bottom: 0px !important;
        padding-left: 18px !important;
    }
    
    .summary-list li {
        font-size: 13px !important;
        line-height: 1.4 !important;
        margin-bottom: 8px !important;
    }
    
    /* 작은 화면에서 표 스크롤 가능하게 */
    .table-simple {
        display: block !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        width: 100% !important;
    }
    
    .table-simple th,
    .table-simple td {
        white-space: normal !important;
        word-break: keep-all !important;
        min-width: 80px !important;
    }
}