@charset "utf-8";

.main_container {
	max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    font-family: 'Pretendard';
}

.main_container ::-webkit-scrollbar {
	display: none;
}

/* 메뉴 컨테이너 */
.notice_menu {
    display: inline-flex;
    align-items: center;
    gap: 78px;
    margin: 30px 0 20px 0;
}

/* 메뉴 아이템 */
.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;
}

/* 메뉴 호버 효과 */
.menu_item:hover {
    color: #CEAD6C;
}

/* 가로선 */
.menu_divider {
    width: 700px;
    height: 1px;
    background-color: #CEAD6C;
    margin: 20px auto 30px auto;
}

.contexts_container {
	font-family: 'Pretendard';
	font-size: 16px; 
	line-height: 22.4px; 
	font-weight: 400; 
	letter-spacing: -0.08px;
	color: #2a2a2a;
	background: transparent;
	border-radius: 0;
	border: none;
}

.section_content {
	text-align: left;
	margin-bottom: 60px;
}

.section_content:last-child {
	margin-bottom: 0;
}

.section_title {
	font-family: 'Pretendard';
	font-size: 24px;
	font-weight: 700;
	letter-spacing: -0.12px;
	margin-bottom: 15px;
	line-height: 28px;
}

.text_container {
	max-width: 900px;
	margin: 0 auto;
	padding: 30px 50px 50px 50px;
	text-align: center;
}

.star_container img {
	color: #CEAD6C;
}

.main_container .text_container .section_content ul {
	text-align: left;
	margin: 10px 0;
	padding-left: 20px;
	list-style: none;
}

.main_container .text_container .section_content ul li {
	padding: 5px 0;
	line-height: 22.4px;
	margin: 0;
	list-style: none;
}

/* 중첩 리스트 스타일 */
.main_container .text_container .section_content ul.nested-list {
	margin: 8px 0 0 0 !important;
	padding: 0 0 0 40px !important;
	list-style: disc outside !important;
}

.main_container .text_container .section_content ul.nested-list li {
	padding: 3px 0 0 5px !important;
	margin: 5px 0 !important;
	list-style: disc outside !important;
	list-style-type: disc !important;
	display: list-item !important;
}

/* 하위 섹션 제목 */
.subsection_title {
	font-family: 'Pretendard';
	font-size: 18px;
	font-weight: 600;
	letter-spacing: -0.1px;
	margin-top: 40px;
	margin-bottom: 10px;
	line-height: 25px;
}

/* 섹션 제목 바로 다음에 오는 첫 번째 하위 섹션 */
.section_title + .subsection_title,
.subsection_title:first-of-type {
	margin-top: 20px;
}

/* 강조 텍스트 - strong 태그 */
.text_container strong {
	font-weight: 700;
	font-size: 16px;
	letter-spacing: -0.08px;
}

/* 이탤릭 텍스트 */
.text_container i,
.text_container em {
	font-style: italic;
}

/* 회색 텍스트 - 부가 설명용 */
.text_container .gray,
.text_container gr {
	color: #7f7f7f;
	font-size: 14px;
}

/* 하이라이트 텍스트 */
.text_container .highlight,
.text_container span.highlight {
	background-color: #fff9e6;
	padding: 2px 4px;
	border-radius: 2px;
}
