/* ------------------------------------------------------ */
/* 14. 논문투고 안내 페이지 스타일 */
/* ------------------------------------------------------ */

.submission-section {
    
    padding: 20px;
}

.submission-section h4 {
    font-size: 1.4em;
    color: #0056b3;
    border-bottom: 2px solid #0056b3;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.summary {
    background-color: #f7f7ff; /* 요약 박스는 연한 배경색 */
}

.bullet-list-1{
    margin-left: 75px;
    font-style: italic;
    color:#777;
}

/* 강조 텍스트 */
.highlight-text {
    padding: 10px;
    background-color: #fffacd; /* 노란색 계열 배경 */
    border: 1px dashed #ffc107;
    margin-top: 15px;
    font-weight: bold;
    color: #333;
    
}

/* 일반 리스트 스타일 */
.bullet-list, .numbered-list {
    margin-left: 20px;
    line-height: 1.6;
    margin-bottom: 15px;
    color:#555;
}

.bullet-list li, .numbered-list li {
    margin-bottom: 8px;
}

li.no-bullet {
    list-style-type: none;
}

/* 링크 스타일 */
/* 링크 스타일 */
a.rule-link:link {
    color: #d9534f; /* 강조 색상 */
    font-weight: bold;
    text-decoration: underline;
    transition: color 0.2s;
}

a.rule-link:hover {
    color: #c9302c;
}

.rule-title {
    font-weight: bold;
}

.contact-details p{
    margin-left: 30px;
}

/* ------------------------------------------------------ */
/* 14.1. 다운로드 버튼 스타일 */
/* ------------------------------------------------------ */

/* 💡 버튼 컨테이너: Flexbox로 수평 정렬 */
.download-links {
    display: flex;
    justify-content: center; /* 버튼들을 가운데 정렬 */
    gap: 15px; /* 버튼 간 간격 */
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.download-btn {
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 0.95em;
    font-weight: bold;
    white-space: nowrap; /* 버튼 텍스트가 줄바꿈되지 않도록 함 */
    transition: background-color 0.2s;
}

/* 💡 주 버튼 스타일 (투고신청서) */
.primary-btn {
    background-color: #007bff;
    color: white;
    border: 1px solid #007bff;
}

.primary-btn:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* 💡 보조 버튼 스타일 (샘플 논문) */
.secondary-btn {
    background-color: white;
    color: #007bff;
    border: 1px solid #007bff;
}

.secondary-btn:hover {
    background-color: #e6f7ff;
    color: #0056b3;
}

@media (max-width: 768px) {
    /* 테이블을 감싸는 div를 만들어 스크롤 가능하게 함 (HTML 변경 필요) */
    .bullet-list li, .numbered-list li{
        margin-left: -30px;
    }
    .bullet-list-1{
        margin-left: 0px;
    }

    .highlight-text{
        /* 💡 줄바꿈 처리 추가 */
        overflow-wrap: break-word; /* 최신 표준 속성 */
        word-wrap: break-word; /* 구형 브라우저 호환을 위한 이전 속성 */
    }

    .submission-section {
        padding: 10px;
    }

    /* 💡 모바일: 버튼을 수직으로 쌓고 너비를 100%로 확장 */
    .download-links {
        flex-direction: column;
        align-items: center; /* 가운데 정렬 유지 */
        gap: 10px;
    }
    
    .download-btn {
        width: 90%; /* 화면에 꽉 차도록 너비 설정 */
        text-align: center;
        padding: 12px;
    }
}