@charset "utf-8";

/* 공지 페이지 전용 스타일 */

/* 메뉴 컨테이너 */
.notice_menu {
    display: inline-flex;
    align-items: center;
    gap: 78px;
}

.text_container {
	height: 400px;
	padding: 10px 50px 0px 50px !important;
	overflow-y: auto;
}

/* 메뉴 아이템 */
.menu_item {
    color: #7f7f7f;
    font-family: 'Pretendard';
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    letter-spacing: -0.6px;
    line-height: 17px;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

/* 활성화된 메뉴 */
.menu_item.active {
    color: #CEAD6C;
    font-weight: 600;
}

/* 메뉴 호버 효과 */
.menu_item:hover {
    color: #CEAD6C;
}

/* 가로선 */
.menu_divider {
    width: 700px;
    height: 1px;
    background-color: #CEAD6C;
    margin: 20px auto 30px auto;
}

/* 섹션 콘텐츠 */
.section_content {
	text-align: left;
	margin-bottom: 50px;
	padding: 20px 0;
	border-bottom: 1px solid rgba(206, 173, 108, 0.2);
}

.section_content:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.section_title {
	font-family: 'Pretendard';
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -0.12px;
	margin-bottom: 20px;
	line-height: 30px;
	color: #CEAD6C;
	padding-bottom: 10px;
}

/* 하위 섹션 제목 */
.subsection_title {
	font-family: 'Pretendard';
	font-size: 18px;
	font-weight: 600;
	letter-spacing: -0.1px;
	margin-top: 25px;
	margin-bottom: 12px;
	line-height: 26px;
	color: #4a4a4a;
	padding-left: 12px;
	border-left: 3px solid #CEAD6C;
}

/* 리스트 스타일 */
.section_content ul {
	margin: 0;
	padding: 0 0 0 20px;
	text-align: left;
	list-style: disc;
	list-style-position: outside;
}

.section_content ul li {
	margin: 10px 0;
	padding: 0 0 0 8px;
	line-height: 24px;
	color: #2a2a2a;
}

.section_content ul li::marker {
	color: #CEAD6C;
}

/* 중첩 리스트 (들여쓰기) */
.section_content ul ul.nested-list {
	margin: 8px 0 0 0;
	padding-left: 30px;
	list-style: circle;
}

.section_content ul ul.nested-list li {
	margin: 6px 0;
	padding: 0 0 0 8px;
	line-height: 22px;
	color: #4a4a4a;
	font-size: 15px;
}

.section_content ul ul.nested-list li::marker {
	color: #CEAD6C;
}

/* 링크 스타일 */
.section_content a {
	color: #CEAD6C;
	text-decoration: underline;
	transition: color 0.3s ease;
}

.section_content a:hover {
	color: #d4b876;
}

/* 강조 텍스트 */
.section_content b,
.section_content strong {
	color: #CEAD6C;
	font-weight: 600;
}

/* 안내 박스 */
.notice-box {
	background-color: rgba(206, 173, 108, 0.08);
	border-left: 4px solid #CEAD6C;
	padding: 20px;
	margin: 20px 0;
	border-radius: 4px;
}

.notice-box p {
	margin: 8px 0;
	line-height: 24px;
	color: #4a4a4a;
}

.notice-box p:first-child {
	margin-top: 0;
}

.notice-box p:last-child {
	margin-bottom: 0;
}

/* 이미지 스타일 */
.section_content img {
	max-width: 200px;
	height: auto;
	display: block;
	margin: 20px 0;
	border: 2px solid #CEAD6C;
	border-radius: 8px;
	padding: 10px;
	background: white;
}
