/**
 * Main Styles - Integrated CSS
 * 통합된 프론트엔드 CSS 파일
 * 
 * 이 파일은 다음 8개 파일을 통합한 것입니다:
 * - modern-style.css
 * - nav-style.css
 * - hero-contents-style.css
 * - sub-visual-style.css
 * - register-style.css
 * - footer-style.css
 * - summary-style.css
 * - site-config.css
 * 
 * 작성일: 2025년
 */

/* =====================================================
   1. 공통 모던 스타일 (modern-style.css)
   ===================================================== */

:root {
    /* 기본 : 0, 136, 204 */
    --primary-color-rgb: 59, 141, 62;
	/* --primary-color-rgb: 233, 85, 21; 오렌지색 */
	--primary-color: rgb(var(--primary-color-rgb));
	--primary-color-light: rgba(var(--primary-color-rgb), 0.1);
	--primary-color-light-hover: rgba(var(--primary-color-rgb), 0.78);
	--primary-color-bg: rgba(var(--primary-color-rgb), 0.08);
	--primary-color-bg-end: rgba(var(--primary-color-rgb), 0.03);
	--primary-color-border: rgba(var(--primary-color-rgb), 0.35);
	--secondary-color: #006da3;
	--accent-color: rgb(var(--primary-color-rgb));
	--info-color: #0088CC;
	--info-color-light: rgba(0, 136, 204, 0.1);
	--success-color: #28a745;
	--success-color-light: #e6f7ee;
	--background-color: #ffffff;
	--content-bg-color: #f9fafc;
	--text-color: #333;
	--text-light: #6c757d;
	--border-radius: 10px;
	--transition: all 0.3s ease;
	--border-color: #dee2e6;
}

body, button, a {
	font-family: 'Pretendard', sans-serif;
	line-height: 1.6;
}
html .bg-color-primary, html .bg-primary {
    background-color: var(--primary-color) !important;
}
html .blockquote-primary {
    border-color: var(--primary-color) !important;
}
.text-primary {
	color: var(--primary-color) !important;
}
.text-secondary {
	color: var(--secondary-color) !important;
}
.text-blue {
	color: var(--accent-color) !important;
}

@media (min-width: 992px) {
    #header .header-nav.header-nav-links nav > ul:not(:hover) > li > a.active {
        color: var(--accent-color);
    }
}

/* 그라데이션 텍스트 */
.text-color-gradient {
    background: -webkit-linear-gradient(left, var(--primary-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* 모던 카드 스타일 */
.modern-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    border: 1px solid #e9ecef;
    margin: 0;
}

.card-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-color));
    z-index: 2;
}

.card-content {
    position: relative;
    z-index: 2;
}

/* 모던 버튼 스타일 */
.btn-modern {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.7rem 1.75rem;
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}

.btn-modern:hover {
    background: var(--primary-color-light-hover);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

.btn-modern:active {
    transform: translateY(0);
}

.btn-text {
    margin-right: 0;
}

.btn-arrow {
    transition: transform 0.2s;
}

.btn-modern:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-modern.btn-lg {
    font-size: 1.05rem;
    padding: 0.85rem 2.2rem;
}

.btn-modern.btn-sm {
    font-size: 0.82rem;
    padding: 0.45rem 1.2rem;
}

/* 보조 버튼 */
.btn-modern.btn-secondary {
    background: #fff;
    border-color: var(--border-color);
    color: var(--text-color);
}

.btn-modern.btn-secondary:hover {
    background: #f5f5f5;
    border-color: #bbb;
    color: var(--text-color);
    transform: translateY(-2px);
}

/* 아웃라인 버튼 */
.btn-modern.btn-outline-secondary {
    background: #fff;
    border-color: var(--border-color);
    color: var(--text-light);
}

.btn-modern.btn-outline-secondary:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
    color: var(--text-color);
    transform: translateY(-2px);
}

/* primary 명시 (기본과 동일, 우선순위용) */
.btn-modern.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.btn-modern.btn-primary:hover {
    background: var(--primary-color-light);
    border-color: var(--primary-color);
    color: #fff;
}

/* 동의 박스 스타일 */
.agree-box {
    background-color: #f8f9fa;
    border-radius: 8px;
}

/* 동의 라디오 폼 스타일 */
.agree-radio-form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.agree-radio-form .form-check-inline {
    margin-right: 1.5rem;
}

/* 동의 인라인 그룹 */
.agree-inline-group {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}
.agree-inline-row {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.2rem;
    gap: 1rem;
}
.agree-inline-row + .agree-inline-row {
    border-top: 1px solid #e2e8f0;
}
.agree-inline-label {
    font-weight: 600;
    font-size: 0.92rem;
    white-space: nowrap;
    flex-shrink: 0;
}
.agree-inline-label--required {
    color: var(--primary-color);
}
.agree-inline-label--optional {
    color: #888;
}
.agree-inline-radios {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-left: auto;
}
.agree-inline-radios .form-check-label {
    margin-top: 0.4rem;
    font-size: 0.9rem;
}
.agree-inline-group .agree-error-box {
    border: none;
    border-top: 1px solid #e2e8f0;
    border-radius: 0;
    background: var(--primary-color-bg, #fdf0ee);
    margin: 0;
    padding: 0.45rem 1.2rem;
    font-size: 0.82rem;
}
@media (max-width: 768px) {
    .agree-inline-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 0.7rem 1rem;
    }
    .agree-inline-radios {
        margin-left: 0;
    }
}

/* 커스텀 체크박스 및 라디오 버튼 스타일 */
.form-check-input[type="radio"],
.form-check-input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 0.15rem;
    margin-right: 0.5rem;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    border: 2px solid #ddd;
    transition: all 0.2s ease;
    position: relative;
}

.form-check-input[type="radio"] {
    border-radius: 50%;
}

.form-check-input[type="checkbox"] {
    border-radius: 4px;
}

.form-check-input[type="radio"]:checked,
.form-check-input[type="checkbox"]:checked {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.form-check-input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
}

.form-check-input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    color: #fff;
    line-height: 1;
}

.form-check-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(var(--primary-color-rgb), 0.25);
}

.form-check-label {
    cursor: pointer;
    font-weight: 500;
    color: #555;
    transition: color 0.2s ease;
}

.form-check-input:checked + .form-check-label {
    color: var(--primary-color) !important;
    font-weight: 600;
}

/* 전체동의 체크박스 특별 스타일 */
#all_agree {
    width: 20px;
    height: 20px;
}

#all_agree + .form-check-label {
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
}

#all_agree:checked + .form-check-label {
    color: var(--primary-color) !important;
}

/* 전체동의 래퍼 스타일 */
.all-agree-wrapper {
    background-color: rgba(var(--primary-color-rgb), 0.05) !important;
    transition: all 0.3s ease;
}

.all-agree-wrapper:hover {
    background-color: rgba(var(--primary-color-rgb), 0.1) !important;
}

/* 마우스 오버 효과 */
.form-check:hover .form-check-input {
    border-color: var(--primary-color) !important;
}

.form-check:hover .form-check-label {
    color: var(--primary-color) !important;
}

/* 리스트 스타일 개선 */
.list-icons-style-3 li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
}

.list-icons-style-3 li i {
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 0.85rem;
}

/* 두번째 박스 아이콘 수정 */
.list-primary.list-icons-style-3 li i {
    font-size: 0.8rem;
    top: 5px;
}

/* 성공 아이콘 스타일 */
.list-success.list-icons-style-3 li i {
    font-size: 0.8rem;
    top: 5px;
    color: var(--primary-color);
}

/* 아이콘 배경 스타일 */
.list-icons-style-3.list-success li i {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(63, 164, 96, 0.1);
}

/* 최강력 아이콘 크기 축소 규칙 - !important 사용 */
.agree-box .list-icons li i.fa-check,
.list-success li i.fa-check,
.list-icons-style-3 li i.fa-check {
    font-size: 0.65rem !important;
    width: 14px !important;
    height: 14px !important;
    line-height: 14px !important;
    text-align: center !important;
    background-color: rgba(63, 164, 96, 0.1) !important;
    border-radius: 50% !important;
    top: 7px !important;
    color: var(--primary-color) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* 재사용 가능한 아이콘 클래스 */
.icon-small-check {
    font-size: 0.7rem !important;
    width: 16px !important;
    height: 16px !important;
    line-height: 16px !important;
    text-align: center !important;
    background-color: rgba(63, 164, 96, 0.1) !important;
    border-radius: 50% !important;
    top: 7px !important;
    color: var(--primary-color) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* 경고 아이콘 클래스 */
.icon-small-warning {
    font-size: 0.7rem !important;
    width: 16px !important;
    height: 16px !important;
    line-height: 16px !important;
    text-align: center !important;
    background-color: rgba(220, 53, 69, 0.1) !important;
    border-radius: 50% !important;
    top: 4px !important;
    color: var(--secondary-color) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.agree-box .list-icons li,
.list-success li,
.list-icons-style-3 li {
    padding-left: 24px !important;
    line-height: 1.4 !important;
}

/* 모던 폼 스타일 */
.form-control-modern {
    height: 3rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    border-radius: 8px;
    border: 1px solid #e9e9e9;
    background-color: #fff;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-control.form-control-focused,
.form-control-modern:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 2px rgba(var(--primary-color-rgb), 0.1) !important;
    background-color: #fff;
}

.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active,
.btn-primary:not(:disabled):not(.disabled):active {
    background-color: var(--primary-color-light-hover) !important;
    border-color: var(--primary-color) !important;
    box-shadow: none !important;
}

select.form-control-modern {
    padding-right: 2.5rem;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 8px 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.col-form-label {
    display: flex;
    align-items: center;
}

/* 테이블 스타일 */
.table-result {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.table-result thead th {
    background: linear-gradient(45deg, rgba(0,136,204,0.05), rgba(0,183,255,0.05));
    border: none;
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    color: #555;
    font-weight: 600;
    text-align: center;
}

.table-result tbody td {
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: none;
    padding: 1rem 1.25rem;
    text-align: center;
    vertical-align: middle;
    font-size: 0.9rem;
    color: #666;
    background-color: #fff;
}

.table-result tbody tr:last-child td {
    border-bottom: none;
}

.btn-view, .btn-edit {
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: none;
    border: none;
}

.btn-view {
    background-color: var(--info-color-light);
    color: var(--info-color);
}

.btn-edit {
    background-color: rgba(255,193,7,0.1);
    color: #FFC107;
}

.btn-view:hover {
    background-color: var(--info-color);
    color: #fff;
}

.btn-edit:hover {
    background-color: #FFC107;
    color: #fff;
}

.no-results {
    padding: 2rem !important;
}

/* 정보 박스 */
.bg-light-5 {
    background-color: rgba(var(--primary-color-rgb), 0.04);
}

.info-box {
    border-left: 4px solid #3FA460;
}

.info-box ul li {
    color: #777;
}

/* 반응형 조정 */
@media (max-width: 767px) {
    .card-content {
        padding: 1rem !important;
    }
    
    .form-control-modern {
        height: 2.5rem;
        padding: 0.5rem 1rem;
    }
    
    .btn-modern {
        padding: 0.6rem 1.4rem;
        font-size: 0.85rem;
    }
    
    .text-6 {
        font-size: 1.5rem !important;
    }
    
    .table-container {
        overflow-x: auto;
    }
    
    .table-result {
        min-width: 600px;
    }
}

/* 애니메이션 최적화 */
@media (prefers-reduced-motion: reduce) {
    .animated {
        transition-property: none !important;
        transform: none !important;
        animation: none !important;
    }
}

/* Register 페이지 스타일 */
/* 접수 페이지 그룹 스타일링 */
#cate1_ui .mr-4 {
    margin-right: 40px !important;
}

/* 동의 섹션 디자인 개선 */
.agree-item {
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.agree-item:hover { 
    border-color: var(--primary-color); 
    box-shadow: 0 0 10px rgba(63,164,96,0.1); 
}

.agree-item .form-check-inline { 
    margin-right: 20px; 
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

#all_agree_container {
    background-color: #e9f7ef;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 10px 15px;
    margin-top: 10px;
}

#agree02_text {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
    max-height: 300px;
    overflow-y: auto;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #555;
}

#agree02_text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

#agree02_text h4:first-of-type { 
    margin-top: 0; 
}

#agree02_text p { 
    margin-bottom: 0.75rem; 
}

#agree02_text .indent10 { 
    padding-left: 10px; 
}

#agree02_text::-webkit-scrollbar { 
    width: 8px; 
}

#agree02_text::-webkit-scrollbar-track { 
    background: #f1f1f1; 
    border-radius: 10px; 
}

#agree02_text::-webkit-scrollbar-thumb { 
    background: #ccc; 
    border-radius: 10px; 
}

#agree02_text::-webkit-scrollbar-thumb:hover { 
    background: #aaa; 
}

/* 테이블 스타일 추가 */
.table-responsive table tr td { 
    font-size: 0.75rem; 
    text-align: center; 
    border: 1px solid #4e4e4e; 
}

/* 들여쓰기 스타일 */
.indent-20 {
    padding-left: 20px;
}

/* 워드 래핑 처리 */
.word-keep {
    word-break: keep-all;
    word-wrap: break-word;
}

/* 라디오 버튼 레이블 정렬 수정 */
.form-check {
    display: inline-flex;
    align-items: center;
    margin-bottom: 5px;
    margin-right: 0;
}

.form-radio-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 8px 15px;
    padding-top: 3px;
    width: 100%;
}

.form-check-input[type="radio"] {
    position: relative;
    top: 3px;
    margin-top: 0;
    margin-right: 6px;
}

.form-check-input[type="checkbox"] {
    position: relative;
    top: 3px;
    margin-top: -5px;
    margin-right: 6px;
}

.form-check-label {
    position: relative;
    line-height: 1.2;
    margin-bottom: 0;
    white-space: nowrap;
}

/* 반응형 조정 */
@media (max-width: 767px) {
    .form-radio-group {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

/* 커스텀 알림 모달 디자인 */
#alertModal .modal-content,
#confirmModal .modal-content {
  border-radius: 1.2rem;
  box-shadow: 0 8px 32px 0 rgba(var(--primary-color-rgb), 0.12), 0 1.5px 6px 0 rgba(0,0,0,0.08);
  border: none;
  padding: 0.5rem 0.5rem 0 0.5rem;
}
#alertModal .modal-body,
#confirmModal .modal-body {
  color: #222;
  font-size: 1.02rem;
  padding: 2.2rem 2rem 1.2rem 2rem;
  text-align: center;
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
  word-break: keep-all;
}
#alertModal .modal-footer,
#confirmModal .modal-footer {
  justify-content: center;
  background: none;
  border: none;
  padding-bottom: 2rem;
}
#alertModal .btn-primary,
#confirmModal .btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color) 100%);
  border: none;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.97rem;
  padding: 0.6rem 2.5rem;
  box-shadow: none;
  transition: all 0.18s;
}
#alertModal .btn-primary:focus,
#confirmModal .btn-primary:focus {
  box-shadow: none;
}
#alertModal .btn-primary:focus:not(:focus-visible),
#confirmModal .btn-primary:focus:not(:focus-visible) {
  outline: none;
}
/* 포커스(접근성 초기 포커스)를 호버와 분리 — 마우스로 연 모달에서 확인 버튼이 떠 보이던 현상 방지 */
#alertModal .btn-primary:hover,
#confirmModal .btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color) 100%) !important;
  border-color: var(--primary-color) !important;
  color: #fff !important;
  transform: translateY(-2px) scale(1.04);
  box-shadow: none !important;
}
#alertModal .btn-primary:active,
#confirmModal .btn-primary:active,
#alertModal .btn-primary:not(:disabled):not(.disabled):active,
#confirmModal .btn-primary:not(:disabled):not(.disabled):active {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color) 100%) !important;
  border-color: var(--primary-color) !important;
  color: #fff !important;
  transform: translateY(0) scale(1);
  box-shadow: none !important;
}
#alertModal .btn-primary:focus-visible,
#confirmModal .btn-primary:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 3px;
}
#alertModal .btn-secondary,
#confirmModal .btn-secondary {
  border-radius: 2rem;
  font-weight: 500;
  font-size: 0.97rem;
  padding: 0.6rem 2.5rem;
  background: #e5e7eb;
  color: #222;
  border: none;
  margin-left: 0.5rem;
  transition: all 0.18s;
}
#alertModal .btn-secondary:hover,
#confirmModal .btn-secondary:hover {
  background: #d1d5db;
  color: #111;
  transform: translateY(-2px) scale(1.04);
}
#alertModal .btn-secondary:focus-visible,
#confirmModal .btn-secondary:focus-visible {
  outline: 2px solid #9ca3af;
  outline-offset: 3px;
}
#alertModal .modal-dialog,
#confirmModal .modal-dialog {
  max-width: 370px;
}

/* =====================================================
   2. 네비게이션 스타일 (nav-style.css)
   ===================================================== */

#header .header-logo { margin: 1rem 1rem 0rem 0; }
#header .header-nav-main nav > ul > li > a.active,
#header .header-nav-main nav > ul > li > a.active:focus,
#header .header-nav-main nav > ul > li > a.active:hover { color: var(--accent-color) !important; }
#header .header-btn-collapse-nav {
	background: var(--primary-color) !important;
}
#header .header-nav.header-nav-links nav > ul li:hover > a {
	color: var(--primary-color) !important;
}
@media (max-width: 991px) {
	#header .header-nav-main:not(.header-nav-main-mobile-dark) nav > ul > li > a {
		color: var(--primary-color) !important;
	}
	#header .header-nav-main:not(.header-nav-main-mobile-dark) nav > ul > li > a.active {
		background: var(--primary-color) !important;
	}
}
@media (max-width: 575px){
	#header .header-logo img {
		width: 80% !important;
		height: auto !important;
	}
}

/* =====================================================
   3. 히어로 콘텐츠 스타일 (hero-contents-style.css)
   ===================================================== */

.bg {
	height: 500px;
	background-position: center;
	display: flex;
	align-items: center;
	position: relative;
}

#main_bg_item_1 {
	margin-top: 0rem;
	margin-left: 0rem;
	transition: var(--transition);
}

#main_bg_item_1:hover {
	transform: translateY(-5px);
}

#main_bg_item_2 {
	margin-top: 1rem;
	margin-left: 5px;
	transition: var(--transition);
}

#main_video {
	margin-top: 5rem;
	border: 5px solid #fff;
	border-radius: 10px;
}

.sns-wrap {
	text-align: left;
	display: flex;
	flex-wrap: wrap;
	margin-top: 1rem;
}

.sns-icon {
	display: inline-block;
	width: 4.5em;
	padding: 0 10px;
	transition: var(--transition);
}

.sns-icon img {
	transition: var(--transition);
}

.sns-icon:hover img {
	transform: scale(1.1);
}

.main-item-2 {
	text-align: center;
	align-self: flex-start;
}

.main-menu-cards {
	margin-top: 2rem;
	margin-bottom: 2rem;
}

/* ── 메뉴 카드 ── */
.main-menu-card {
	border-radius: 14px;
	overflow: hidden;
	transition: all 0.3s cubic-bezier(.4,0,.2,1);
	border: 1px solid #e8e8e8;
	height: 100%;
	background: #fff;
	position: relative;
}
.main-menu-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 3px;
	background: var(--primary-color);
	border-radius: 3px 3px 0 0;
	transition: width 0.3s ease;
}
.main-menu-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 28px rgba(0,0,0,0.1);
	border-color: var(--primary-color);
}
.main-menu-card:hover::after {
	width: 60%;
}

.main-menu-card .card-body {
	padding: 4rem 1rem 0rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	height: 100%;
}
.main-menu-card .icon-wrapper {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: var(--primary-color);
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 2rem;
	flex-shrink: 0;
	transition: all 0.3s ease;
}
.main-menu-card:hover .icon-wrapper {
	transform: scale(1.1) rotate(-5deg);
}

.main-menu-card i {
	font-size: 2.5rem;
	color: #fff;
	margin-bottom: 0;
}
.main-menu-card:hover i {
	color: #fff;
}

.main-menu-card .card-title {
	font-weight: 600;
	font-size: 1rem;
	color: var(--text-color);
	transition: var(--transition);
	line-height: 1.45;
	letter-spacing: -0.02em;
	margin-bottom: 0.35rem;
}
.main-menu-card:hover .card-title {
	color: var(--primary-color);
}
.main-menu-card .card-desc {
	font-size: 0.72rem;
	color: #999;
	line-height: 1.4;
	letter-spacing: -0.01em;
	transition: color 0.3s ease;
	flex: 1;
	display: flex;
	align-items: flex-start;
}
.main-menu-card:hover .card-desc {
	color: #777;
}
.main-menu-card .card-arrow {
	margin-top: 0.6rem;
	font-size: 0.75rem;
	color: #ccc;
	transition: all 0.3s ease;
}
.main-menu-card:hover .card-arrow {
	color: var(--primary-color);
	transform: translateX(3px);
}

/* ── 노트 외곽 박스(선반) ── */
.notebook-shelf {
	background: rgba(var(--primary-color-rgb), 0.04);
	border: 1px solid rgba(var(--primary-color-rgb), 0.12);
	border-radius: 16px;
	padding: 1.5rem 1.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.notebook-shelf__inner {
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 4rem;
	width: 100%;
}

/* ── 메뉴 카드: CSS 노트(일기장) 카드 ── */
.notebook-link {
	display: block;
	flex: 1;
	max-width: 160px;
	text-decoration: none !important;
	color: inherit;
}
.notebook-link:hover {
	color: inherit;
	text-decoration: none !important;
}
.notebook-card {
	position: relative;
	display: flex;
	width: 100%;
	height: 100%;
	min-height: 180px;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.notebook-card:hover {
	transform: translateY(-4px);
}

/* 스파인(왼쪽 링 바인딩 영역) */
.notebook-card__spine {
	position: relative;
	width: 18px;
	flex-shrink: 0;
	background: var(--primary-color);
	border-radius: 10px 0 0 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding: 18px 0;
	z-index: 2;
}
.notebook-card__ring {
	position: relative;
	left: -5px;
	display: block;
	width: 18px;
	height: 12px;
	border: 2.5px solid rgba(var(--primary-color-rgb), 0.6);
	border-radius: 6px;
	background: linear-gradient(180deg, #e8f0e8 0%, #c8d8c8 100%);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* 커버(메인 영역) */
.notebook-card__cover {
	flex: 1;
	position: relative;
	background: linear-gradient(160deg, rgba(var(--primary-color-rgb), 0.1) 0%, rgba(var(--primary-color-rgb), 0.18) 100%);
	border-radius: 0 12px 12px 0;
	border: 2px solid rgba(var(--primary-color-rgb), 0.35);
	border-left: none;
	padding: 1.5rem 1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	box-shadow: 2px 3px 12px rgba(var(--primary-color-rgb), 0.08);
	transition: box-shadow 0.3s ease;
}
.notebook-card:hover .notebook-card__cover {
	box-shadow: 4px 6px 20px rgba(var(--primary-color-rgb), 0.15);
}

/* 표지 위 장식 줄 */
.notebook-card__line {
	width: 58%;
	height: 2px;
	background: rgba(255, 255, 255, 0.65);
	border-radius: 1px;
	margin-bottom: 0.55rem;
}
.notebook-card__line:nth-child(2) {
	width: 42%;
	margin-bottom: 0;
}

/* 본문 (아이콘 + 제목) */
.notebook-card__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.6rem;
	margin-top: 1.2rem;
	padding-bottom: 0.5rem;
}
.notebook-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.6);
	color: var(--primary-color);
	font-size: 2.2rem;
	transition: transform 0.25s ease, background 0.25s ease;
}
.notebook-card:hover .notebook-card__icon {
	transform: scale(1.1) rotate(-5deg);
	background: rgba(255, 255, 255, 0.8);
}
.notebook-card__title {
	font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
	font-weight: 800;
	font-size: 1.3rem;
	line-height: 1.35;
	letter-spacing: -0.03em;
	color: rgba(var(--primary-color-rgb), 0.9);
	text-align: center;
	word-break: keep-all;
	margin-top: 0.3rem;
}
.notebook-card:hover .notebook-card__title {
	color: var(--primary-color);
}

/* 모바일 */
@media (max-width: 575px) {
	.notebook-card {
		min-height: 130px;
	}
	.notebook-card__spine {
		width: 14px;
		gap: 7px;
		padding: 10px 0;
		border-radius: 7px 0 0 7px;
	}
	.notebook-card__ring {
		width: 12px;
		height: 8px;
		border-width: 2px;
		border-radius: 4px;
		left: -3px;
	}
	.notebook-card__cover {
		border-radius: 0 9px 9px 0;
		padding: 1rem 0.5rem 0.7rem;
	}
	.notebook-card__line {
		margin-bottom: 0.3rem;
	}
	.notebook-card__body {
		gap: 0.25rem;
		margin-top: 0.6rem;
	}
	.notebook-card__cover {
		padding: 1.2rem 0.5rem 1rem;
	}
	.notebook-card__icon {
		width: 40px;
		height: 40px;
		font-size: 1.05rem;
	}
	.notebook-card__title {
		font-size: 0.78rem;
		line-height: 1.25;
		margin-top: 0.15rem;
	}
	.notebook-shelf {
		padding: 1rem 0.75rem;
		border-radius: 12px;
	}
	.notebook-shelf__inner {
		gap: 0.5rem;
	}
	.notebook-link {
		max-width: none;
	}
	.notebook-card {
		min-height: 120px;
	}
	.notebook-shelf {
		margin-bottom: 0.5rem;
	}
	.main-menu-cards > .col-lg-5 .promo-video-card {
		height: auto !important;
		margin-top: 2em;
	}
	.main-menu-cards .promo-video-card__wrap {
		flex: none;
		aspect-ratio: 16 / 9;
		min-height: 0;
	}
}

/* ── 홍보영상 카드 ── */
.promo-video-card {
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid #e8e8e8;
	background: #fff;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	min-height: 0;
}
.promo-video-card:hover {
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}
.promo-video-card__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 1.4rem;
	border-bottom: 2px solid var(--primary-color);
}
.promo-video-card__head span {
	font-size: 1.05rem;
	font-weight: 800;
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--text-color);
}
.promo-video-card__head span i {
	color: var(--primary-color);
	font-size: 1rem;
}
.promo-video-card__wrap {
	flex: 1 1 auto;
	position: relative;
	min-height: 200px;
	overflow: hidden;
	background: #000;
}
@media (min-width: 992px) {
	.main-menu-cards > .col-lg-5 .promo-video-card .promo-video-card__wrap {
		flex: 1 1 auto;
		min-height: 260px;
	}
}
.promo-video-card__wrap iframe,
.promo-video-card__wrap video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
	object-fit: cover;
	object-position: center;
	background: #000;
}

/* ── 공지사항 ── */
@media (max-width: 768px) {
	.notice {
		margin-top: 1rem;
	}
}

.notice-card {
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid #e8e8e8;
	height: 100%;
	background: #fff;
	transition: all 0.3s ease;
}
.notice-card:hover {
	box-shadow: 0 8px 28px rgba(0,0,0,0.06);
}

.notice-card .card-body {
	padding: 1.4rem 1.6rem;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.notice-card .card-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 0.7rem;
	margin-bottom: 0;
	border-bottom: 2px solid var(--primary-color);
}
.notice-card .card-title span {
	font-size: 1.05rem;
	font-weight: 800;
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--text-color);
}
.notice-card .card-title span i {
	color: var(--primary-color);
	font-size: 1rem;
}

/* 공지 리스트 */
.notice-list {
	flex: 1;
	display: flex;
	flex-direction: column;
}
.notice-list-item {
	padding: 0.6rem 0;
	border-bottom: 1px solid #f4f4f4;
	transition: all 0.2s ease;
}
.notice-list-item:first-child {
	padding-top: 0.8rem;
}
.notice-list-item:last-child {
	border-bottom: none;
}
.notice-list-item:hover .notice-text a {
	color: var(--primary-color);
}

.notice-list-item .notice-badge {
	display: inline-flex;
	align-items: center;
	padding: 2px 8px;
	border-radius: 3px;
	font-size: 0.68rem;
	font-weight: 700;
	background: var(--primary-color);
	color: #fff;
	margin-right: 8px;
	flex-shrink: 0;
	letter-spacing: 0.03em;
}

.notice-text {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 0.88rem;
	color: var(--text-color);
	margin-bottom: 0;
	display: flex;
	align-items: center;
}
.notice-text::before {
	display: none;
}
.notice-text a {
	font-size: 0.88rem;
	transition: color 0.2s ease;
	color: #555;
	text-decoration: none;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.notice-text a:hover {
	color: var(--primary-color);
}

.notice-date {
	font-size: 0.75rem;
	color: #bbb;
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
}

.notice-card .notice-empty {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #bbb;
	font-size: 0.88rem;
}

@media (max-width: 575px) {
	.main-menu-card .card-body {
		padding: 1.2rem 0.6rem 0rem !important;
	}
	.main-menu-card .icon-wrapper {
		width: 44px;
		height: 44px;
		margin-bottom: 0.7rem;
	}
	.main-menu-card i {
		font-size: 1.1rem;
	}
	.main-menu-card .card-title {
		font-size: 0.78rem;
		margin-bottom: 0.2rem;
	}
	.main-menu-card .card-desc {
		font-size: 0.62rem;
	}
	.main-menu-card .card-arrow {
		display: none;
	}
	.notice-card {
		margin-top: 0.5rem;
	}
	.notice-card .card-body {
		padding: 1rem;
	}
	.notice-text,
	.notice-text a {
		font-size: 0.8rem;
	}
	.notice-date {
		font-size: 0.68rem;
	}
	.notice-list-item {
		padding: 0.5rem 0;
	}
}

/* =====================================================
   4. 서브 비주얼 스타일 (sub-visual-style.css)
   ===================================================== */

.page-header1 {
    height: 300px;
    background-image: url(/assets/img/sub_bg_2025_1.jpg); 
    background-repeat: no-repeat;
    background-position: center; 
    background-color: #fff;
}

@media (max-width: 768px) {
    .page-header1 {
        height: 370px;
        background-image: url(/assets/img/bg--m_2025.png); 
        background-repeat: no-repeat;
        background-size: cover;
    }
}

@media (max-width: 414px) {
    .page-header1 {
        height: 340px;
    }
}
@media (max-width: 390px) {
    .page-header1 {
        height: 307px;
    }
}
@media (max-width: 375px) {
    .page-header1 {
        height: 307px;
    }
}

/* =====================================================
   5. 등록 페이지 스타일 (register-style.css)
   ===================================================== */

#pwdstatus {
	margin: 0 !important;
}

.info-section {
    border: 1px solid #e9ecef;
    border-radius: 20px;
    padding: 3rem 3rem;
}

.info-list { padding: 0 0.5rem; }

.info-item {
    display: flex;
    align-items: center;
    border-radius: 14px;
    background: #fff;
    margin-bottom: 1.1rem;
    padding: 0.5rem 1.5rem;
	border: 0.5px solid var(--primary-color-border);
}

.info-label {
    min-width: 180px;
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.info-value {
    font-size: 1.08rem;
    padding: 0.4rem 0rem;
    margin-left: 0.7rem;
    font-weight: 500;
    color: #222;
    flex: 1 1 0%;
    width: 100%;
    min-width: 0;
    word-break: break-word;
}
.info-value a {
    color: var(--primary-color);
    text-decoration: none;
}
.info-value a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
    overflow-wrap: break-word;
}

.input-group {
    flex-wrap: nowrap !important;
}

.input-group > .form-control,
.input-group > .btn {
    width: auto !important;
    min-width: 0;
    flex: none;
    display: inline-block;
    vertical-align: middle;
}

.team_info_box {
	padding: 3rem 3rem;
    border: 0.5px solid var(--primary-color-border) !important;
}

.email-icon {
	padding-top: 0.5rem;
}

input[type="file"] {
    padding: 0.5rem 0.5rem;
}

/* 이메일 입력 스타일 보완 */
.email-input-group {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
}

.email-input-group .email-id {
    flex: 2;
    min-width: 0;
}

.email-input-group .email-domain {
    flex: 2;
    min-width: 0;
}

.email-input-group .email-domain:focus {
	border: 0.5px solid var(--info-color);
}

.input-group-text {
    background-color: #f8f9fa;
    border-color: #ced4da;
    padding: 0.375rem 0.75rem;
}

.input-group .domain-select {
    flex: 2;
    min-width: 220px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* readonly 입력 필드 스타일 */
input[readonly] {
    background-color: #f8f9fa !important;
    cursor: default;
}

input[readonly]:focus {
    background-color: #f8f9fa !important;
    box-shadow: none !important;
}

/* 기존 이메일 스타일 유지 */
.email-input-group {
    width: 100%;
    display: flex;
}

.email-input-group .email-id {
    flex: 3;
    min-width: 0;
}

.email-input-group .email-domain {
    flex: 2;
    min-width: 0;
}

.input-group-text {
    background-color: #f8f9fa;
    border-color: #ced4da;
}

.input-group .domain-select {
    flex: 2;
    min-width: 120px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* 팀 정보 스타일 */
.team-member-info {
    border: 0.5px solid #e0e6ed;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 12px;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}
.team-member-info:last-child {
    margin-bottom: 0;
}
.team-member-label {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 100px;
    color: var(--primary-color);
    font-weight: 600;
}
.team-member-label i {
    margin-right: 8px;
    color: var(--primary-color);
    width: 16px;
    text-align: center;
}
.team-member-text {
    flex: 1;
    color: #212529;
}

@media (max-width: 767px) {
    .info-section {
        padding: 1.2rem 0.7rem !important;
    }
    .info-item { 
        flex-direction: column; 
        align-items: flex-start; 
        padding: 1rem 0.7rem; 
    }
    .info-label { 
        min-width: 0; 
        margin-bottom: 0.3rem;
		font-size: 0.9rem;
    }
    .info-value { 
        margin-left: 0;
		padding: 0.4rem 0rem;
    }	
	input[type="file"] {
		padding: 0.2rem 0.2rem;
	}
	.team_info_box {
		padding: 2rem 2rem;
	}
	
	.email-icon {
		padding-top: 0;
	}

	.email-input-group {
        flex-wrap: wrap !important;
    }
    
    /* 모바일에서 첫 줄: 이메일 ID 전체 차지 */
    .email-input-group > .email-id {
        flex: 1 0 100%;
        margin-bottom: 0.5rem;
        border-radius: 0.25rem;
    }
    
    /* 모바일에서 두번째 줄: @ + 도메인 입력란 */
    .email-input-group > .input-group-prepend {
        flex: 0 0 auto;
        margin-bottom: 0.5rem;
    }
    
    .email-input-group > .input-group-prepend .input-group-text {
        border-radius: 0.25rem 0 0 0.25rem;
    }
    
    .email-input-group > .email-domain {
        flex: 1;
        margin-bottom: 0.5rem;
        border-radius: 0 0.25rem 0.25rem 0;
    }
    
    /* 모바일에서 세번째 줄: 도메인 선택 드롭다운 */
    .email-input-group > .input-group-append {
        flex: 1 0 100%;
        margin-bottom: 0;
    }
    
    .email-input-group > .input-group-append > .domain-select {
        width: 100%;
        border-radius: 0.25rem;
    }

	.team_mobile_row {
		margin-left: -5px;
		margin-right: -5px;
	}

	.small, small {
		font-size: 0.8rem !important;
		font-weight: 400 !important;
		word-wrap: break-word;
	}
}

/* 주소 관련 스타일 추가 */
.address-input-group {
    display: flex;
    flex-wrap: nowrap;
    position: relative;
    width: 100%;
}

.zip-input {
    flex: 1;
    min-width: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.zip-button {
    white-space: nowrap;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background: var(--primary-color-light-hover) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
}

/* 모바일 대응 */
@media (max-width: 767px) {
    .address-input-group {
        flex-wrap: nowrap;
    }
    
    .zip-input {
        width: 60% !important;
    }
    
    .zip-button {
        width: 40% !important;
        font-size: 12px;
        padding-left: 8px;
        padding-right: 8px;
    }
    
    .zip-button i {
        margin-left: 5px !important;
    }
    
    .info-value .row {
        margin-right: 0;
        margin-left: 0;
    }
    
    .info-value .col-12 {
        padding-right: 0;
        padding-left: 0;
    }
}

.form-check-input:disabled ~ .form-check-label,
.form-check-label.disabled {
  color: #bbb !important;
  opacity: 0.5 !important;
  pointer-events: none !important;
  transition: none !important;
}
.form-check-input:disabled ~ .form-check-label:hover {
  color: #bbb !important;
  border-color: #ddd !important;
  background: none !important;
  cursor: not-allowed !important;
}

/* =====================================================
   6. 푸터 스타일 (footer-style.css)
   ===================================================== */

#footer .logo {
    text-align: right;
}
.bg-grey, .bg-color-grey {
    background-color: #f4f4f4 !important;
}

/* 연락처 영역 높이 조정 */
#footer .contact-info {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}
#footer .contact-info .d-flex {
    height: 30px;
    line-height: 1.2;
}
#footer .contact-item {
    padding: 0;
}

#footer .contact-item i {
    color: #3FA45F;
}

#footer .btn-privacy {
    color: #3FA45F;
    border-color: #3FA45F;
}

#footer .btn-privacy:hover {
    background-color: #3FA45F;
    color: #fff;
}
.img-fluid {
	height: 50px;
}
.footer-top .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.partner-logo-container {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0;
}

.partner-logo img {
  width: 100%;
  height: 50px;
  max-width: 180px;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.footer-top .row > div:last-child .partner-logo-container .partner-logo img {
  max-width: 200px !important;
}

@media (min-width: 992px) {
	.pl-lg-3, .px-lg-3 {
		padding-left: 1rem !important;
		padding-right: 1rem !important;
	}
}
@media(max-width: 768px) {
    #footer .logo {
        text-align: center;
    }
	#footer img {
		width: 70% !important;
	}
}

/* =====================================================
   7. 요약 페이지 스타일 (summary-style.css)
   ===================================================== */

/* 섹션 디자인 */
.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: 40px;
    background: #fff;
}

/* 테이블 스타일 */
.table-simple {
    width: 100%;
    border-collapse: collapse;
}

.table-simple ul {
	margin-bottom: 0px !important;
}

.table-simple th {
    background-color: var(--primary-color-bg) !important;
    padding: 12px;
    border: 1px solid var(--primary-color-border);
    color: var(--text-color);
}
.underline {
	text-decoration: underline;
}

.table-simple td {
    padding: 12px;
    border: 1px solid #eaeaea;
}

/* 시상 요약 인라인 */
.award-summary-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--primary-color-bg), var(--primary-color-bg-end));
    border: 1px solid var(--primary-color-border);
    border-radius: 8px;
    padding: 0.5rem 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 0.95rem;
}
.award-inline-badge b {
    font-size: 1.05em;
    color: var(--primary-color);
}
.award-inline-sep {
    opacity: 0.3;
    color: var(--primary-color);
}

/* 콜아웃 박스 */
.callout-box {
    display: flex;
    gap: 1rem;
    border-radius: 12px;
    padding: 1.2rem 1.4rem;
    align-items: flex-start;
}
.callout-box--warn {
    background: linear-gradient(135deg, #fff8f0 0%, #fff3e6 100%);
    border: 1px solid #ffd9b3;
}
.callout-box__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.callout-box--warn .callout-box__icon {
    background: #ff9933;
    color: #fff;
}
.callout-box__content {
    flex: 1;
    min-width: 0;
}
.callout-box__title {
    display: block;
    font-size: 0.95rem;
    color: #b36b00;
    margin-bottom: 0.4rem;
}
.callout-box__text {
    font-size: 0.88rem;
    color: #664400;
    line-height: 1.65;
    margin: 0;
}
.callout-box__text b {
    color: #b36b00;
}

.callout-box--info {
    background: linear-gradient(135deg, var(--primary-color-bg) 0%, var(--primary-color-bg-end) 100%);
    border: 1px solid var(--primary-color-border);
}
.callout-box--info .callout-box__icon {
    background: var(--primary-color);
    color: #fff;
}
.callout-box--info .callout-box__title {
    color: var(--primary-color);
}
.callout-box__list {
    font-size: 0.88rem;
    color: var(--text-color);
    line-height: 1.65;
    margin: 0 0 0.6rem;
    padding-left: 18px;
}
.callout-box__list li {
    margin-bottom: 4px;
}
.callout-box__list b {
    color: var(--primary-color);
}
.callout-box__note {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0 0 3px;
}
.callout-box__btn {
    display: inline-flex;
    align-items: center;
    margin-top: 0.6rem;
    padding: 0.4rem 1rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff !important;
    background: var(--primary-color);
    border-radius: 8px;
    text-decoration: none !important;
    transition: background 0.2s;
}
.callout-box__btn:hover {
    background: var(--secondary-color);
}

/* 다운로드 카드 - 카드 개수에 맞춰 한 줄 배치 */
.download-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem 0 1rem;
}
.dl-card {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    background: #fff;
    text-decoration: none !important;
    color: inherit !important;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}
.dl-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
.dl-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.dl-card--blue  { border-color: #a8d8f0; }
.dl-card--red   { border-color: #f5c6cb; background: #fffbfb; }
.dl-card--green { border-color: #b2e5c8; }
.dl-card--orange {
    border-color: rgba(243, 156, 18, 0.45);
    background: #fffbf5;
}
.dl-card--blue .dl-card__icon  { background: var(--info-color-light); color: var(--info-color); }
.dl-card--red .dl-card__icon   { background: #fde8e8; color: #c41e3a; }
.dl-card--green .dl-card__icon { background: var(--success-color-light); color: var(--success-color); }
.dl-card--orange .dl-card__icon {
    background: rgba(243, 156, 18, 0.18);
    color: #d68910;
}
.dl-card--blue:hover  { border-color: var(--info-color); }
.dl-card--red:hover   { border-color: #c41e3a; background: #fff5f5; box-shadow: 0 6px 18px rgba(196, 30, 58, 0.12); }
.dl-card--green:hover { border-color: var(--success-color); }
.dl-card--orange:hover {
    border-color: #f39c12;
    background: #fff8ef;
    box-shadow: 0 6px 18px rgba(243, 156, 18, 0.15);
}
.step-flow--group .step-flow__dl-card {
    margin-top: 12px;
    width: 100%;
    max-width: 100%;
    padding: 0.65rem 0.8rem;
    gap: 0.55rem;
    box-sizing: border-box;
}
.step-flow--group .step-flow__dl-card .dl-card__icon {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
    border-radius: 8px;
}
.step-flow--group .step-flow__dl-card .dl-card__title {
    font-size: 0.82rem;
}
.step-flow--group .step-flow__dl-card .dl-card__desc {
    font-size: 0.72rem;
}
.dl-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}
.dl-card__title {
    font-weight: 700;
    font-size: 0.9rem;
    color: #333;
    line-height: 1.3;
}
.dl-card__desc {
    font-size: 0.78rem;
    color: #999;
    margin-top: 2px;
}
.dl-card__arrow {
    font-size: 0.8rem;
    color: #bbb;
    flex-shrink: 0;
    transition: color 0.2s;
}
.dl-card:hover .dl-card__arrow { color: #666; }
@media (max-width: 768px) {
    .download-cards-row {
        grid-template-columns: 1fr;
    }
}

/* 리스트 스타일 */
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;
}

/* 접수방법 개인/단체 박스 */
.apply-method-box {
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 24px 24px 20px;
    margin-bottom: 20px;
}
.apply-method-box--personal {
    background: #fcfefb;
}
.apply-method-box--group {
    background: #fffcf7;
}
.apply-method-box__header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
.apply-method-box__badge {
    display: inline-block;
    font-size: .85rem;
    font-weight: 600;
    padding: 5px 16px;
    border-radius: 20px;
    color: #fff;
    margin-right: 10px;
    flex-shrink: 0;
}
.apply-method-box__title {
    font-size: 1.05rem;
    color: #333;
}

/* 개인 접수 블록: 요약 페이지 해당 구역만 글자 한 단계 확대 */
.apply-method-box--personal .apply-method-box__badge {
    font-size: 0.95rem;
}
.apply-method-box--personal .apply-method-box__title {
    font-size: 1.15rem;
}
.apply-method-box--personal .step-flow__num {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
}
.apply-method-box--personal .step-flow__text {
    font-size: 1.05rem;
}
.apply-method-box--personal .step-flow__arrow {
    font-size: 1.1rem;
}

.apply-method-box--group .apply-method-box__badge {
    font-size: 0.95rem;
}
.apply-method-box--group .apply-method-box__title {
    font-size: 1.15rem;
}
.apply-method-box--group .apply-method-box__header {
    flex-wrap: wrap;
    gap: 10px 14px;
    align-items: center;
}
.apply-method-box__group-notice {
    display: inline-flex;
    align-items: center;
    flex: 0 1 auto;
    max-width: 100%;
    min-width: 0;
    padding: 6px 10px;
    gap: 0.35rem;
    background: #fff8ef;
    border: 1px solid rgba(243, 156, 18, 0.35);
    border-radius: 8px;
    box-sizing: border-box;
}
.apply-method-box__group-notice-icon {
    color: #f39c12;
    flex-shrink: 0;
}
.apply-method-box--group .apply-method-box__group-hint {
    font-size: 0.93rem;
    color: #7a5200;
}
.apply-method-box--group .step-flow__num {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
}
.apply-method-box--group .step-flow__text {
    font-size: 1.05rem;
}
.apply-method-box--group .step-flow__arrow {
    font-size: 1.1rem;
}

/* 단체: 실물 우편 접수처 */
.apply-method-mailing {
    margin-top: 6px;
    margin-bottom: 14px;
    padding: 16px 18px;
    background: linear-gradient(180deg, #fffbf7 0%, #fff6eb 100%);
    border: 1px solid rgba(243, 156, 18, 0.28);
    border-radius: 12px;
}
.apply-method-mailing__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 700;
    color: #7a5200;
    margin: 0 0 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(243, 156, 18, 0.22);
}
.apply-method-mailing__title i {
    color: #f39c12;
    font-size: 0.95rem;
}
.apply-method-mailing__body {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    align-items: flex-start;
    justify-content: space-between;
}
.apply-method-mailing__address {
    flex: 1 1 260px;
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.65;
    color: #333;
    word-break: keep-all;
}
.apply-method-mailing__zip {
    display: inline-block;
    margin-right: 8px;
    padding: 4px 10px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #7a5200;
    background: rgba(243, 156, 18, 0.14);
    border-radius: 6px;
    vertical-align: middle;
}
.apply-method-mailing__tel {
    flex: 0 1 auto;
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.65;
    color: #333;
}
.apply-method-mailing__tel-label {
    color: #555;
    margin-right: 8px;
    font-size: inherit;
    font-weight: 500;
}
.apply-method-mailing__tel-num {
    font-size: inherit;
    font-weight: 700;
    color: #c07000;
    text-decoration: none;
    white-space: nowrap;
}
.apply-method-mailing__tel-num:hover {
    text-decoration: underline;
    color: #a55d00;
}

/* 접수방법 절차 도식 */
.step-flow {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 16px 0;
    margin-bottom: 12px;
}
.step-flow__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    background: #f8faf8;
    border: 1px solid #e0e8e0;
    border-radius: 12px;
    padding: 20px 16px 16px;
    max-width: 260px;
}
.step-flow__item:hover {
    border-color: #2ecc71;
    box-shadow: 0 2px 8px rgba(46,204,113,.12);
}
.step-flow__item-main {
    flex: 1;
    min-width: 0;
    align-self: stretch;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
}
.step-flow--group .step-flow__item {
    background: #fdf8f0;
    border-color: #ede0cc;
}
.step-flow--group .step-flow__item:hover {
    border-color: #f39c12;
    box-shadow: 0 2px 8px rgba(243,156,18,.12);
}
.step-flow__num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #2ecc71;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    flex-shrink: 0;
}
.step-flow__num--orange {
    background: #f39c12;
}
.step-flow__text {
    text-align: center;
    font-size: .95rem;
    line-height: 1.6;
    color: #333;
    word-break: keep-all;
    margin-top: auto;
    margin-bottom: auto;
}
.step-flow__arrow {
    display: flex;
    align-items: center;
    color: #bbb;
    font-size: 1rem;
    flex-shrink: 0;
    margin: 0 14px;
}
@media (max-width: 600px) {
    .step-flow {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .step-flow__item {
        flex-direction: row;
        max-width: 100%;
        width: 100%;
        gap: 14px;
        padding: 14px 16px;
        border-radius: 10px;
    }
    .step-flow__num {
        width: 30px;
        height: 30px;
        font-size: .85rem;
        margin-bottom: 0;
    }
    .step-flow__text {
        text-align: left;
        font-size: .9rem;
    }
    .step-flow__arrow {
        transform: rotate(90deg);
        margin: 2px 0;
    }
    .apply-method-box--personal .step-flow__num {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
    }
    .apply-method-box--personal .step-flow__text {
        font-size: 1rem;
    }
    .apply-method-box--group .step-flow__num {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
    }
    .apply-method-box--group .step-flow__text {
        font-size: 1rem;
    }
    .apply-method-box--group .apply-method-box__group-hint {
        font-size: 0.88rem;
    }
    .apply-method-mailing {
        padding: 14px;
    }
    .apply-method-mailing__title {
        font-size: 0.92rem;
    }
    .apply-method-mailing__address,
    .apply-method-mailing__tel {
        font-size: 0.82rem;
        flex: 1 1 100%;
    }
    .apply-method-mailing__zip {
        font-size: 1rem;
        padding: 3px 8px;
    }
    .apply-method-mailing__tel-num {
        white-space: normal;
    }
    .apply-method-mailing__tel {
        padding-top: 10px;
        margin-top: 2px;
        border-top: 1px dashed rgba(243, 156, 18, 0.3);
    }
}

.txt-notice-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.txt-notice-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 4px;
    font-size: .85rem;
    color: #666;
    word-break: keep-all;
}
.txt-notice-list li::before {
    content: "※";
    position: absolute;
    left: 0;
    color: #999;
}

/* 모바일 환경에서 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;
    }
}

/* =====================================================
   8. 사이트 설정 - 관리자 알림 (site-config.css)
   ===================================================== */

.admin-notification-bar {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52); 
    color: white; 
    text-align: center; 
    padding: 12px 20px; 
    position: fixed; 
    bottom: 0; 
    left: 0; 
    width: 100%; 
    z-index: 9999; 
    font-weight: 500; 
    box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
    border-top: 2px solid rgba(255,255,255,0.2);
    font-size: 14px;
}

.admin-notification-btn {
    color: #fff; 
    text-decoration: none; 
    background: rgba(255,255,255,0.2); 
    padding: 6px 12px; 
    border-radius: 20px; 
    font-size: 12px;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.admin-notification-close-btn {
    background: none; 
    border: none; 
    color: white; 
    font-size: 16px; 
    cursor: pointer; 
    padding: 0; 
    margin-left: 10px;
    opacity: 0.7;
}

.admin-notification-toast {
    position: fixed; 
    top: 20px; 
    right: 20px; 
    background: linear-gradient(135deg, #ff6b6b, #ee5a52); 
    color: white; 
    padding: 15px 20px; 
    border-radius: 10px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    max-width: 350px;
    font-size: 14px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

/* =====================================================
   카운트다운 모던 스타일
   ===================================================== */
.countdown-modern {
    padding: 0.8rem 0;
    margin-top: 25em;
    margin-right: 0em;
}
.countdown-modern--inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.countdown-modern__label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
.countdown-modern__label i {
    margin-right: 0.3rem;
    color: #fff;
}
.countdown-modern__tiles {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.cd-tile {
    display: flex;
    align-items: baseline;
    gap: 2px;
    background: #fff;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 0.35rem 0.55rem;
}
.cd-tile__num {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.cd-tile__unit {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--secondary-color);
}
.cd-tile__sep {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}
.countdown-modern__ended {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-light);
    padding: 0.4rem 0.8rem;
    background: #f5f5f5;
    border-radius: 8px;
    display: inline-block;
}
@media (max-width: 576px) {
    .countdown-modern--inline { flex-wrap: wrap; gap: 0.4rem; }
    .cd-tile { padding: 0.25rem 0.4rem; }
    .cd-tile__num { font-size: 1rem; }
}

html body .tabs .nav-tabs .nav-link:hover, html.dark body .tabs .nav-tabs .nav-link:hover, html body .tabs .nav-tabs .nav-link:focus, html.dark body .tabs .nav-tabs .nav-link:focus, html body .tabs .nav-tabs li.active .nav-link, html.dark body .tabs .nav-tabs li.active .nav-link, html body .tabs .nav-tabs.nav-justified .nav-link:hover, html.dark body .tabs .nav-tabs.nav-justified .nav-link:hover, html body .tabs .nav-tabs.nav-justified .nav-link:focus, html.dark body .tabs .nav-tabs.nav-justified .nav-link:focus
 {
    border-top-color: var(--primary-color);
}

html body .tabs .nav-tabs .nav-link, html.dark body .tabs .nav-tabs .nav-link, html body .tabs .nav-tabs .nav-link:hover, html.dark body .tabs .nav-tabs .nav-link:hover, html body .tabs .nav-tabs li.active .nav-link, html.dark body .tabs .nav-tabs li.active .nav-link {
    color: var(--primary-color);
}

/* =====================================================
   일기장 신청 (/register/diary_apply.php)
   ===================================================== */
.diary-apply-page {
	max-width: 1080px;
	margin-left: auto;
	margin-right: auto;
}

/* --- header --- */
.diary-apply-header {
	margin-bottom: 1.75rem;
}
.diary-apply-lead {
	font-size: 0.95rem;
	color: var(--text-light);
	line-height: 1.65;
	max-width: 36rem;
	margin: 0.75rem auto 0;
	word-break: keep-all;
}
@media (min-width: 768px) {
	.diary-apply-header.text-md-left .diary-apply-lead {
		margin-left: 0;
		margin-right: 0;
	}
}

/* --- two-column grid --- */

/* --- card (flex column → actions always bottom) --- */
.diary-apply-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	height: 100%;
	padding: 2.25rem 1.5rem 2rem;
}
@media (min-width: 992px) {
	.diary-apply-card {
		padding: 2.5rem 2rem 2.25rem;
	}
}

/* icon badge */
.diary-apply-card__badge {
	width: 68px;
	height: 68px;
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	margin-bottom: 1.25rem;
	transition: transform 0.3s ease;
}
.diary-apply-card--group .diary-apply-card__badge {
	background: #e9f7ec;
	color: var(--success-color);
}
.diary-apply-card--personal .diary-apply-card__badge {
	background: #fff3e8;
	color: #d35400;
}
.diary-apply-card:hover .diary-apply-card__badge {
	transform: translateY(-3px);
}

/* chip label */
.diary-apply-card__chip {
	display: inline-block;
	padding: 0.2rem 0.75rem;
	border-radius: 20px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 0.85rem;
}
.diary-apply-card--group .diary-apply-card__chip {
	background: #e9f7ec;
	color: #1a7d32;
}
.diary-apply-card--personal .diary-apply-card__chip {
	background: #fff3e8;
	color: #bf5b00;
}

/* 단체 카드 — 상단 문구 강조 블록 (단색, 그라데이션 없음) */
.diary-apply-card--group .diary-apply-card__emphasis {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	text-align: center;
	width: 100%;
	max-width: 22rem;
	margin: 0 auto 1rem;
	padding: 1.2rem 1.25rem 1.1rem;
	background: #f4fbf6;
	border: 1px solid #cfe8d6;
	border-radius: 12px;
	box-shadow: none;
}
.diary-apply-card--group .diary-apply-card__emphasis .diary-apply-card__title {
	font-size: 1.45rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: #14532a;
	letter-spacing: -0.03em;
	line-height: 1.2;
}
.diary-apply-card--group .diary-apply-card__lead {
	font-size: 1rem;
	font-weight: 600;
	color: #1e4628;
	line-height: 1.55;
	margin: 0 0 0.75rem;
	word-break: keep-all;
}

/* 개인 카드 — 상단 강조 블록 (단체 emphasis와 동일 레이아웃, 피치 톤) */
.diary-apply-card--personal .diary-apply-card__emphasis {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	text-align: center;
	width: 100%;
	max-width: 22rem;
	margin: 0 auto 1rem;
	padding: 1.2rem 1.25rem 1.1rem;
	background: #fff8f2;
	border: 1px solid #f0dcc8;
	border-radius: 12px;
	box-shadow: none;
}
.diary-apply-card--personal .diary-apply-card__emphasis .diary-apply-card__title {
	font-size: 1.45rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: #8b4513;
	letter-spacing: -0.03em;
	line-height: 1.2;
}
.diary-apply-card--personal .diary-apply-card__lead {
	font-size: 1rem;
	font-weight: 600;
	color: #6b3a0a;
	line-height: 1.55;
	margin: 0 0 0.75rem;
	word-break: keep-all;
}

/* 강조 블록 3번째 줄 — 단체/개인 동일 규격 */
/* custom.css 전역 p { font-size: 1.1em !important } 대비 */
.diary-apply-card__tagline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.3rem;
	margin: 0 auto;
	padding: 0.28rem 0.65rem;
	font-size: 0.95rem !important;
	font-weight: 700;
	line-height: 1.35 !important;
	border-radius: 6px;
	box-shadow: none;
	width: auto;
	max-width: 100%;
	box-sizing: border-box;
	word-break: keep-all;
}
.diary-apply-card__tagline i {
	font-size: 0.8rem !important;
	flex-shrink: 0;
}
.diary-apply-card__tagline--warn {
	color: #9b2c2c;
	background: #fdecea;
	border: 1px solid #e8b4b8;
}
.diary-apply-card__tagline--info {
	color: #5c4a3a;
	background: #f5ebe0;
	border: 1px solid #e8d5c4;
}
/* 보조 안내 (단체·개인 공통) — 하단 버튼 행과 동일 너비, 가운데 정렬 */
.diary-apply-card__sub {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.5rem 0.65rem;
	width: 100%;
	max-width: none;
	align-self: stretch;
	margin: 0;
	padding: 0.85rem 1rem;
	font-size: 0.9rem;
	font-weight: 500;
	line-height: 1.6;
	text-align: center;
	word-break: keep-all;
	border: none;
	background: transparent;
	box-sizing: border-box;
}
.diary-apply-card__sub-icon {
	flex-shrink: 0;
	width: 1.35rem;
	text-align: center;
	font-size: 1rem;
	line-height: 1.5;
}
.diary-apply-card__sub-text {
	flex: 0 1 auto;
	min-width: 0;
	max-width: 100%;
	color: var(--text-color);
	text-align: center;
}
.diary-apply-card--group .diary-apply-card__sub-icon {
	color: #2e9e47;
}
.diary-apply-card--personal .diary-apply-card__sub-icon {
	color: #b8651b;
}

/* text */
.diary-apply-card__title {
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--text-color);
	letter-spacing: -0.03em;
	margin-bottom: 0.5rem;
	line-height: 1.25;
}
.diary-apply-card__desc {
	font-size: 0.9rem;
	color: var(--text-light);
	line-height: 1.7;
	max-width: 25rem;
	margin: 0 auto;
	word-break: keep-all;
}
.diary-apply-card__note {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin-top: 0.5rem;
	font-size: 0.8rem;
	font-weight: 700;
	color: #c0392b;
	background: #fdecea;
	border: 1px solid #f5c6cb;
	padding: 0.25rem 0.75rem;
	border-radius: 6px;
	animation: diary-note-pulse 2s ease-in-out infinite;
}
@keyframes diary-note-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.7; transform: scale(1.03); }
}
.diary-apply-card--personal .diary-apply-card__note {
	color: #bf5b00;
	background: #fff3e8;
}

/* --- actions → pushed to bottom --- */
.diary-apply-actions {
	display: flex;
	gap: 10px;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
	margin-top: auto;
	padding-top: 1rem;
}

/* 단체 카드: 개인 다운로드와 동일 가로(row) 버튼 */
.diary-apply-card--group .diary-apply-actions {
	flex-direction: row;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	gap: 10px;
	max-width: 100%;
}
.diary-apply-card--group .diary-apply-actions .diary-apply-btn--row {
	flex: 1 1 calc(50% - 5px);
	min-width: 0;
	width: auto;
	max-width: none;
}
@media (max-width: 575px) {
	.diary-apply-card--group .diary-apply-actions {
		flex-direction: column;
	}
	.diary-apply-card--group .diary-apply-actions .diary-apply-btn--row {
		flex: 1 1 auto;
		width: 100%;
	}
}

/* --- buttons --- */
.diary-apply-btn {
	flex: 1 1 140px;
	max-width: 220px;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	text-align: center;
	padding: 1.15rem 0.85rem;
	border-radius: 12px;
	border: 1px solid var(--border-color);
	background: #fff;
	font-weight: 600;
	font-size: 0.88rem;
	color: var(--text-color);
	text-decoration: none;
	line-height: 1.35;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
	box-sizing: border-box;
}
.diary-apply-btn__icon {
	font-size: 1.4rem;
	transition: transform 0.2s ease;
}
.diary-apply-btn__text {
	display: block;
	font-size: 1rem;
	word-break: keep-all;
}

/* green variant */
.diary-apply-btn--green {
	border-color: #c5e6cb;
}
.diary-apply-btn--green .diary-apply-btn__icon {
	color: #2e9e47;
}
a.diary-apply-btn--green:hover {
	border-color: #2e9e47;
	background: #f5fbf6;
}
.diary-apply-btn--green.diary-apply-btn--row {
	border-color: #c5e6cb;
}
.diary-apply-btn--green .diary-apply-btn__leading {
	background: #eaf7ee;
	color: #2e9e47;
}
a.diary-apply-btn--green.diary-apply-btn--row:hover .diary-apply-btn__trailing {
	color: #2e9e47;
}

/* peach variant */
.diary-apply-btn--peach {
	border-color: #f0d4bc;
}
.diary-apply-btn--peach .diary-apply-btn__icon {
	color: #d97230;
}
a.diary-apply-btn--peach:hover {
	border-color: #d97230;
	background: #fffaf6;
}

/* 가로형 다운로드 (문서 · 라벨 · 다운로드) */
.diary-apply-card--personal .diary-apply-actions {
	flex-direction: row;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	gap: 10px;
}
.diary-apply-card--personal .diary-apply-actions .diary-apply-btn--row {
	flex: 1 1 calc(50% - 5px);
	min-width: 0;
	width: auto;
	max-width: none;
}
@media (max-width: 575px) {
	.diary-apply-card--personal .diary-apply-actions {
		flex-direction: column;
	}
	.diary-apply-card--personal .diary-apply-actions .diary-apply-btn--row {
		flex: 1 1 auto;
		width: 100%;
	}
}
.diary-apply-btn--row {
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	gap: 0.85rem;
	padding: 0.95rem 1.1rem;
	max-width: none;
	flex: 1 1 auto;
	width: 100%;
	text-align: left;
	border-color: #f5cfc4;
	border-radius: 14px;
}
.diary-apply-btn__leading {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: #fff0eb;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.15rem;
	color: #c73e32;
	flex-shrink: 0;
}
.diary-apply-btn--row .diary-apply-btn__text {
	flex: 1 1 auto;
	text-align: left;
	font-size: 1.05rem;
	font-weight: 600;
	min-width: 0;
}
.diary-apply-btn__trailing {
	font-size: 1.2rem;
	color: #8a8a8a;
	flex-shrink: 0;
	opacity: 0.9;
}
a.diary-apply-btn--row:hover .diary-apply-btn__trailing {
	color: #d97230;
}

/* shared hover */
a.diary-apply-btn:hover {
	color: var(--text-color);
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

/* disabled */
.diary-apply-btn.is-disabled {
	opacity: 0.4;
	cursor: not-allowed;
	pointer-events: none;
}

/* --- divider between columns (desktop: vertical, mobile: horizontal) --- */
@media (min-width: 992px) {
	.diary-apply-col--right {
		position: relative;
	}
	.diary-apply-col--right::before {
		content: "";
		position: absolute;
		top: 10%;
		bottom: 10%;
		left: 0;
		width: 1px;
		background: #e8e8e8;
	}
}
@media (max-width: 991px) {
	.diary-apply-col--right {
		position: relative;
		margin-top: 1.25rem;
		padding-top: 1.75rem;
	}
	.diary-apply-col--right::before {
		content: "";
		position: absolute;
		top: 0;
		left: 10%;
		right: 10%;
		height: 1px;
		background: #e8e8e8;
	}
	.diary-apply-btn {
		max-width: none;
	}
}

/* =====================================================
   단체 일기장 신청 안내 블록 (/register/diary_group_apply.php)
   ===================================================== */
.diary-group-guide {
	background: #f5fbf6;
	border: 1px solid #d4eadc;
	border-radius: 14px;
	padding: 1rem 1.1rem 0.95rem;
	box-shadow: 0 2px 12px rgba(40, 167, 69, 0.06);
}
@media (min-width: 768px) {
	.diary-group-guide {
		padding: 1.15rem 1.35rem 1.05rem;
	}
}
.diary-group-guide__title {
	font-size: 1.15rem;
	font-weight: 700;
	color: #1e5c2e;
	letter-spacing: -0.02em;
	margin: 0 0 0.65rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid rgba(40, 167, 69, 0.25);
	display: flex;
	align-items: center;
	gap: 0.55rem;
}
.diary-group-guide__title i {
	font-size: 1.25rem;
	opacity: 0.9;
}
.diary-group-guide__list {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
}
.diary-group-guide__item {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	font-size: 1rem;
	line-height: 1.55;
	color: #3d4549;
	word-break: keep-all;
}
@media (min-width: 768px) {
	.diary-group-guide__item {
		font-size: 1.05rem;
		line-height: 1.6;
		gap: 0.6rem;
	}
}
.diary-group-guide__icon {
	flex-shrink: 0;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #e8f5eb;
	color: var(--success-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	margin-top: 0.12rem;
}
.diary-group-guide__text strong {
	color: #222;
	font-weight: 700;
}
.diary-group-guide__badge {
	display: inline-block;
	padding: 0.12rem 0.5rem;
	margin: 0 0.1rem;
	border-radius: 6px;
	font-size: 0.88em;
	font-weight: 700;
	color: #155d24;
	background: #d4f0dc;
	vertical-align: baseline;
}
.diary-group-guide__item--highlight {
	margin-top: 0.1rem;
	padding: 0.65rem 0.75rem 0.65rem 0.65rem;
	background: #e8f6ec;
	border: 1px solid #9fd4ae;
	border-left: 4px solid var(--success-color);
	border-radius: 10px;
}
.diary-group-guide__icon--highlight {
	background: #c8ebd4;
	color: #1e7a34;
}
.diary-group-guide__item--highlight .diary-group-guide__text {
	color: #1a3d24;
	font-weight: 500;
}
.diary-group-guide__link {
	font-weight: 700;
	color: #155d24;
	text-decoration: underline;
	text-underline-offset: 2px;
}
.diary-group-guide__link:hover {
	color: #0d3d18;
}
.diary-group-guide__item--alert {
	margin-top: 0.15rem;
	padding: 0.65rem 0.75rem 0.65rem 0.7rem;
	margin-left: -0.25rem;
	margin-right: -0.25rem;
	background: #fff8e8;
	border: 1px solid #f0d9a8;
	border-radius: 10px;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}
@media (min-width: 768px) {
	.diary-group-guide__item--alert {
		padding: 0.75rem 0.9rem;
		margin-left: 0;
		margin-right: 0;
	}
}
.diary-group-guide__icon--alert {
	background: #fff3d6;
	color: #b8860b;
}
.diary-group-guide__item--alert .diary-group-guide__text {
	color: #4a3d2a;
}
.diary-group-guide__item--alert .diary-group-guide__text strong {
	color: #2c2416;
}

/* --- motion pref --- */
@media (prefers-reduced-motion: reduce) {
	.diary-apply-card__badge,
	.diary-apply-btn,
	.diary-apply-btn__icon {
		transition: none;
	}
	.diary-apply-card:hover .diary-apply-card__badge,
	a.diary-apply-btn:hover {
		transform: none;
	}
}

/* =============================================================
   APPLYGATE — 참가부문 선택 (개인전 / 단체전)
   ============================================================= */
.applygate-header {
	margin-bottom: 1.5rem;
}
.applygate-header__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.3rem 1rem;
	border-radius: 2rem;
	background: rgba(var(--primary-color-rgb), 0.1);
	color: var(--primary-color);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	margin-bottom: 0.75rem;
}
.applygate-header__badge i {
	font-size: 0.72rem;
}
.applygate-header__title {
	font-size: 1.7rem;
	color: var(--text-color);
	letter-spacing: -0.03em;
	margin-bottom: 0.45rem;
	line-height: 1.3;
	text-transform: none;
}
.applygate-header__sub {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--text-color);
	letter-spacing: -0.02em;
	margin-bottom: 0;
}
.applygate-header__divider {
	width: 40px;
	height: 3px;
	border-radius: 3px;
	background: var(--primary-color);
	margin: 1rem auto 0;
	opacity: 0.6;
}

/* --- card --- */
.applygate-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 2.2rem 1.5rem 1.8rem;
	border: 2px solid #e8ecf1;
	border-radius: 16px;
	background: #fff;
	text-decoration: none !important;
	color: inherit;
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
	height: 100%;
	position: relative;
}
.applygate-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 28px rgba(0,0,0,0.08);
	text-decoration: none !important;
	color: inherit;
}
.applygate-card--personal:hover {
	border-color: var(--success-color);
}
.applygate-card--group:hover {
	border-color: #e67e22;
}

/* label chip */
.applygate-card__label {
	display: inline-block;
	padding: 0.5rem 2rem;
	border-radius: 10px;
	font-size: 1.3rem;
	font-weight: 800;
	letter-spacing: 0.03em;
	margin-bottom: 1.5rem;
}
.applygate-card__label--green {
	background: #e9f7ec;
	color: #1a7d32;
}
.applygate-card__label--orange {
	background: #fff3e8;
	color: #bf5b00;
}

/* visual (character images) */
.applygate-card__visual {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	min-height: 180px;
	margin-bottom: 1.5rem;
	transition: transform 0.3s ease;
}
.applygate-card:hover .applygate-card__visual {
	transform: scale(1.05);
}
.applygate-card__char {
	height: 170px;
	width: auto;
	object-fit: contain;
	filter: drop-shadow(0 2px 6px rgba(0,0,0,0.08));
}
.applygate-card__visual--multi {
	gap: 0.4rem;
}
.applygate-card__char--center {
	height: 170px;
}
.applygate-card__char--side {
	height: 130px;
}

/* arrow */
.applygate-card__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #f0f2f5;
	color: #999;
	font-size: 0.85rem;
	transition: background 0.25s ease, color 0.25s ease;
}
.applygate-card--personal:hover .applygate-card__arrow {
	background: var(--success-color);
	color: #fff;
}
.applygate-card--group:hover .applygate-card__arrow {
	background: #e67e22;
	color: #fff;
}

/* --- 안내 바 --- */
.applygate-notice-bar {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}
.applygate-notice-bar__item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 1rem;
	background: #f8f9fa;
	border: 1px solid #eef0f2;
	border-radius: 12px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.applygate-notice-bar__item:hover {
	border-color: #dde1e5;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.applygate-notice-bar__icon {
	flex-shrink: 0;
	width: 34px;
	height: 34px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.85rem;
}
.applygate-notice-bar__icon--orange {
	background: #fff3e8;
	color: #bf5b00;
}
.applygate-notice-bar__icon--green {
	background: #e9f7ec;
	color: #1a7d32;
}
.applygate-notice-bar__text {
	font-size: 0.88rem;
	line-height: 1.55;
	color: #555;
	word-break: keep-all;
}
.applygate-notice-bar__text strong {
	color: var(--text-color);
	font-weight: 700;
}
@media (max-width: 575px) {
	.applygate-notice-bar__item {
		gap: 0.6rem;
		padding: 0.65rem 0.8rem;
	}
	.applygate-notice-bar__icon {
		width: 30px;
		height: 30px;
		font-size: 0.75rem;
		border-radius: 8px;
	}
	.applygate-notice-bar__text {
		font-size: 0.82rem;
	}
}

/* applygate — 일기장 제출 안내(모달 본문) */
.applygate-modal-templates {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
#alertModal.applygate-guide-open .modal-dialog {
	max-width: 640px;
}
#alertModal.applygate-guide-open .modal-body {
	max-height: none;
	overflow: visible;
	padding: 1.5rem 1.75rem 1rem;
	text-align: left;
	font-size: 0.9rem;
	line-height: 1.6;
	color: var(--text-color);
	font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
	word-break: keep-all;
}
/* 단체전 안내 모달 — 확인 버튼(게이트 카드 오렌지 톤)
   전역 .btn-primary:focus { background-color … !important } 가 포커스 시 녹색으로 덮어쓰므로 !important 로 고정 */
#alertModal.applygate-guide-open.applygate-guide-open--group .modal-footer .btn-primary,
#alertModal.applygate-guide-open.applygate-guide-open--group .modal-footer .btn-primary:focus {
	background: linear-gradient(135deg, #e67e22 0%, #d35400 100%) !important;
	background-color: #d35400 !important;
	border: none !important;
	border-color: transparent !important;
	color: #fff !important;
	box-shadow: none !important;
}
#alertModal.applygate-guide-open.applygate-guide-open--group .modal-footer .btn-primary:hover {
	background: linear-gradient(135deg, #eb9035 0%, #e67e22 100%) !important;
	border-color: transparent !important;
	color: #fff !important;
	box-shadow: 0 4px 14px rgba(211, 84, 0, 0.35) !important;
	transform: translateY(-2px) scale(1.04);
}
#alertModal.applygate-guide-open.applygate-guide-open--group .modal-footer .btn-primary:active,
#alertModal.applygate-guide-open.applygate-guide-open--group .modal-footer .btn-primary:not(:disabled):not(.disabled):active {
	background: linear-gradient(135deg, #eb9035 0%, #e67e22 100%) !important;
	border-color: transparent !important;
	color: #fff !important;
	box-shadow: 0 2px 8px rgba(211, 84, 0, 0.25) !important;
	transform: translateY(0) scale(1);
}
#alertModal.applygate-guide-open.applygate-guide-open--group .modal-footer .btn-primary:focus-visible {
	outline: 2px solid #d35400;
	outline-offset: 3px;
}
#alertModal.applygate-guide-open .applygate-modal-guide {
	--applygate-guide-fs: 0.9rem;
	--applygate-guide-fs-sm: 0.875rem;
	font-size: var(--applygate-guide-fs);
	line-height: 1.65;
	color: var(--text-color);
}
#alertModal.applygate-guide-open .applygate-modal-guide__head {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.5rem;
	margin-bottom: 0.35rem;
}
#alertModal.applygate-guide-open .applygate-modal-guide__head-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.12) 0%, rgba(var(--primary-color-rgb), 0.06) 100%);
	color: var(--primary-color);
	font-size: 1.15rem;
}
#alertModal.applygate-guide-open .applygate-modal-guide__head-title {
	font-size: 1.25rem;
	letter-spacing: -0.02em;
	line-height: 1.35;
}
/* 단체전 모달 헤더 — 게이트 카드 오렌지 라벨(#bf5b00 / #fff3e8) 톤 */
#alertModal.applygate-guide-open .applygate-modal-guide__head--group .applygate-modal-guide__head-icon {
	background: linear-gradient(135deg, rgba(243, 156, 18, 0.22) 0%, rgba(191, 91, 0, 0.1) 100%);
	color: #bf5b00;
}
#alertModal.applygate-guide-open .applygate-modal-guide__head--group .applygate-modal-guide__head-title {
	background: none;
	-webkit-background-clip: unset;
	background-clip: unset;
	-webkit-text-fill-color: #bf5b00;
	color: #bf5b00;
}
#alertModal.applygate-guide-open .applygate-modal-guide__hr {
	margin: 0.65rem 0 1rem;
	border: 0;
	border-top: 1px solid #e9ecef;
	opacity: 1;
}
#alertModal.applygate-guide-open .applygate-modal-guide__lead {
	border: 1px solid #e9ecef;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
#alertModal.applygate-guide-open .applygate-modal-guide__lead-text {
	font-size: var(--applygate-guide-fs);
	line-height: 1.65;
	color: var(--text-color);
	margin-bottom: 0.5rem;
}
#alertModal.applygate-guide-open .applygate-modal-guide__lead-text:last-child {
	margin-bottom: 0;
}
#alertModal.applygate-guide-open .applygate-modal-guide__lead-text strong {
	color: var(--text-color);
	font-weight: 700;
}
/* 접수 게이트 안내 — 콜론 뒤 본문 들여쓰기 */
#alertModal.applygate-guide-open .applygate-notice__after-colon {
	display: block;
	padding-left: 0em;
	margin-top: 0.2rem;
	text-indent: 0;
}
/* 접수 게이트 모달 — 요약 페이지 단체 플로우와 동일 dl-card 스타일 */
#alertModal.applygate-guide-open .applygate-modal-guide__dl-wrap {
	margin: 0.85rem 0 0;
	display: flex;
	justify-content: center;
}
#alertModal.applygate-guide-open .applygate-modal-guide__dl-card {
	width: 50%;
	max-width: 50%;
	margin-top: 0;
	padding: 0.65rem 0.8rem;
	gap: 0.55rem;
	box-sizing: border-box;
}
#alertModal.applygate-guide-open .applygate-modal-guide__dl-card .dl-card__icon {
	width: 34px;
	height: 34px;
	font-size: 0.95rem;
	border-radius: 8px;
}
#alertModal.applygate-guide-open .applygate-modal-guide__dl-card .dl-card__title {
	font-size: 0.82rem;
}
#alertModal.applygate-guide-open .applygate-modal-guide__dl-card .dl-card__desc {
	font-size: 0.72rem;
}
#alertModal.applygate-guide-open .applygate-modal-guide__section-title {
	display: flex;
	align-items: center;
	font-size: 1rem;
	letter-spacing: -0.02em;
	line-height: 1.4;
}
#alertModal.applygate-guide-open .applygate-modal-guide__list {
	margin-top: 0.35rem;
}
#alertModal.applygate-guide-open .applygate-modal-guide__list-item {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	margin-bottom: 0.65rem;
	font-size: var(--applygate-guide-fs-sm);
	line-height: 1.6;
	color: var(--text-color);
}
#alertModal.applygate-guide-open .applygate-modal-guide__list-item:last-child {
	margin-bottom: 0;
}
#alertModal.applygate-guide-open .applygate-modal-guide__bullet {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	margin-top: 0.1rem;
	border-radius: 50%;
	background: #e9f7ec;
	color: var(--success-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.65rem;
}
#alertModal.applygate-guide-open .applygate-modal-guide__list-text strong {
	font-weight: 700;
	color: var(--text-color);
}
#alertModal.applygate-guide-open .applygate-modal-guide__panel {
	margin-top: 1.15rem;
	padding: 1.1rem 1.15rem 1rem;
	border: 2px solid #e8ecf1;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
#alertModal.applygate-guide-open .applygate-modal-guide__panel-head {
	margin-bottom: 0.85rem;
	text-align: center;
}
#alertModal.applygate-guide-open .applygate-modal-guide__panel-head .applygate-card__label {
	margin-bottom: 0;
}
#alertModal.applygate-guide-open .applygate-modal-guide__panel-caption {
	font-size: 1rem;
	letter-spacing: -0.02em;
}
#alertModal.applygate-guide-open .applygate-modal-guide__panel-row {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	margin-bottom: 0.5rem;
}
#alertModal.applygate-guide-open .applygate-modal-guide__panel-row:last-of-type {
	margin-bottom: 0;
}
#alertModal.applygate-guide-open .applygate-modal-guide__dot {
	flex-shrink: 0;
	width: 6px;
	height: 6px;
	margin-top: 0.55rem;
	border-radius: 50%;
	background: var(--primary-color);
	opacity: 0.85;
}
#alertModal.applygate-guide-open .applygate-modal-guide__panel-text {
	font-size: var(--applygate-guide-fs-sm);
	line-height: 1.6;
	color: var(--text-color);
}
#alertModal.applygate-guide-open .applygate-modal-guide__panel-meta {
	display: flex;
	align-items: flex-start;
	margin-top: 1rem;
	padding-top: 0.85rem;
	border-top: 1px solid #eef0f2;
	font-size: var(--applygate-guide-fs-sm);
	color: var(--text-light);
	line-height: 1.55;
}
#alertModal.applygate-guide-open .applygate-modal-guide__panel-meta strong {
	color: var(--text-color);
	font-weight: 700;
}
#alertModal.applygate-guide-open .applygate-modal-guide .diary-group-guide__item {
	font-size: var(--applygate-guide-fs-sm);
	line-height: 1.6;
}
#alertModal.applygate-guide-open .applygate-modal-guide .diary-group-guide__text {
	font-size: inherit;
	line-height: inherit;
}
#alertModal.applygate-guide-open .applygate-modal-guide__alert.diary-group-guide__item--alert {
	margin-left: 0;
	margin-right: 0;
}

/* responsive */
@media (max-width: 767px) {
	.applygate-header__title {
		font-size: 1.3rem;
	}
	.applygate-header__sub {
		font-size: 1.1rem;
	}
	.applygate-card {
		padding: 1.8rem 1.2rem 1.5rem;
	}
	.applygate-card__label {
		font-size: 1.1rem;
		padding: 0.4rem 1.5rem;
	}
	.applygate-card__visual {
		min-height: 130px;
	}
	.applygate-card__char {
		height: 130px;
	}
	.applygate-card__char--center {
		height: 130px;
	}
	.applygate-card__char--side {
		height: 95px;
	}
	#alertModal.applygate-guide-open .modal-body {
		max-height: none;
		overflow: visible;
		padding: 1.25rem 1.15rem 0.85rem;
	}
	#alertModal.applygate-guide-open .applygate-modal-guide__head-title {
		font-size: 1.12rem;
	}
}