@charset "utf-8";
/* 250520 releasenote */


/* 레이아웃 */
.release_note_wrap {
	width: 1100px;
	margin: 0 auto;
}

.release_note_tit {
	font-family: 'NS', sans-serif;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.33;
	letter-spacing: -1.08px;
	color: #212529;
	margin-bottom: 40px;
}


/* 리스트 아이템 */
.release_note_wrap .release_list {
	display: flex;
	flex-direction: column;
}

.release_note_wrap .list_item {
	border-top: 1px solid #c6cdd4;
	margin-top: -1px;
	font-family: 'Pretendard', sans-serif;
}

.release_note_wrap .list_item:first-child {
	margin-top: 0;
}

/* 헤더 버튼 행 */
.release_note_wrap .list_btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 24px;
	cursor: pointer;
}

.release_note_wrap .ver_date_wrap {
	display: flex;
	align-items: center;
	gap: 16px;
	min-width: 163px;
	flex-shrink: 0;
	line-height: 1.5;
}

.release_note_wrap .ver_txt {
	font-size: 16px;
	font-weight: 600;
	letter-spacing: -0.16px;
	color: #868e96;
}

/* 날짜는 펼쳐진 상태에서만 표시 */
.release_note_wrap .date_txt {
	display: none;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: -0.16px;
	color: #adb5bd;
}

/* 접힌 상태에서 헤더 행 안에 표시되는 제목 */
/* min-width: 0 — flex 자식에서 ellipsis가 동작하려면 반드시 필요 */
.release_note_wrap .list_title_inline {
	flex: 1;
	min-width: 0;
	font-size: 20px;
	font-weight: 600;
	line-height: 28px;
	letter-spacing: -0.3px;
	color: #212529;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}


/* 아코디언 내용 영역 */
.release_note_wrap .list_contents {
	display: none;
	padding: 0 24px 24px;
}

.release_note_wrap .contents_left {
	width: 423px;
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.release_note_wrap .contents_main_tit {
	font-size: 28px;
	font-weight: 600;
	line-height: 1.29;
	letter-spacing: -0.42px;
	color: #212529;
}

.release_note_wrap .icon_plus {
	display: block;
	width: 20px;
	height: 20px;
	background-color: #212529;
	-webkit-mask: url('../img/renewal/svg/icon-plus.svg') no-repeat center / contain;
	mask: url('../img/renewal/svg/icon-plus.svg') no-repeat center / contain;
	flex-shrink: 0;
}

.release_note_wrap .btn_more_txt {
	font-size: 15px;
	font-weight: 500;
	line-height: 24px;
	letter-spacing: -0.15px;
	color: #212529;
}

.release_note_wrap .contents_right {
	width: 515px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding-bottom: 28px;
}

.release_note_wrap .contents_sub_tit {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.56;
	letter-spacing: -0.18px;
	color: #212529;
}

.release_note_wrap .contents_desc {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: -0.16px;
	color: #676f77;
}


/* btn_toggle (토글 화살표) — [이벤트] hover / active / disabled / focus */
.release_note_wrap .btn_toggle {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	padding: 4px;
	flex-shrink: 0;
	transition: background 0.2s ease;
}

.release_note_wrap .btn_toggle:hover {
	background: #f4f6f7;
}

.release_note_wrap .btn_toggle:active {
	background: #e7eaed;
}

.release_note_wrap .btn_toggle:disabled {
	background: #fff;
	cursor: default;
}

.release_note_wrap .btn_toggle:disabled .icon_arrow {
	background-color: #868e96;
}

/* 키보드 탭 이동 시 포커스 링 — 마우스 클릭 시에는 표시 안 됨 */
.release_note_wrap .btn_toggle:focus {
	outline: none;
}

.release_note_wrap .btn_toggle:focus-visible {
	outline: 2px solid #212529;
	outline-offset: 2px;
}

.release_note_wrap .icon_arrow {
	display: block;
	width: 24px;
	height: 24px;
	background-color: #212529;
	-webkit-mask: url('../img/renewal/svg/icon-arrow-down.svg') no-repeat center / contain;
	mask: url('../img/renewal/svg/icon-arrow-down.svg') no-repeat center / contain;
	transition: transform 0.3s ease;
}


/* btn_more (자세히 보기) — [이벤트] hover / active / disabled / focus */
.release_note_wrap .btn_more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: 132px;
	height: 40px;
	padding: 8px 20px 8px 16px;
	background: #fff;
	border: 1px solid #c6cdd4;
	border-radius: 100px;
	text-decoration: none;
	white-space: nowrap;
	box-sizing: border-box;
	transition: background 0.2s ease;
}

.release_note_wrap .btn_more:hover {
	background: #f4f6f7;
}

.release_note_wrap .btn_more:active {
	background: #e7eaed;
}

/* 키보드 탭 이동 시 포커스 링 — 마우스 클릭 시에는 표시 안 됨 */
.release_note_wrap .btn_more:focus {
	outline: none;
}

.release_note_wrap .btn_more:focus-visible {
	outline: 2px solid #212529;
	outline-offset: 2px;
	border-radius: 100px;
}

.release_note_wrap .btn_more.disabled,
.release_note_wrap .btn_more[aria-disabled="true"] {
	background: #f4f6f7;
	pointer-events: none;
}

.release_note_wrap .btn_more.disabled .btn_more_txt,
.release_note_wrap .btn_more[aria-disabled="true"] .btn_more_txt {
	color: #adb5bd;
}

.release_note_wrap .btn_more.disabled .icon_plus,
.release_note_wrap .btn_more[aria-disabled="true"] .icon_plus {
	background-color: #adb5bd;
}


/* on 상태 (아코디언 펼쳐진 상태) — [이벤트] .list_item.on 클래스 토글 */
.release_note_wrap .list_item.on .date_txt {
	display: block;
}

.release_note_wrap .list_item.on .list_btn {
	padding-bottom: 12px;
}

.release_note_wrap .list_item.on .list_title_inline {
	display: none;
}

.release_note_wrap .list_item.on .list_contents {
	display: flex;
	gap: 114px;
	justify-content: space-between;
}

.release_note_wrap .list_item.on .icon_arrow {
	transform: rotate(180deg);
}

/* btn_load_more (콘텐츠 더보기) — [이벤트] hover / active / disabled / focus */
.release_note_wrap .btn_load_more {
	display: flex;
	align-items: center;
	gap: 4px;
	width: 74px;
	margin: 60px auto 0;
	padding: 0 4px;
	background: transparent;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.2s ease;
}

.release_note_wrap .btn_load_more_txt {
	font-family: 'Pretendard', sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	letter-spacing: -0.16px;
	color: #495057;
}

.release_note_wrap .btn_load_more .icon_arrow_down {
	display: block;
	width: 20px;
	height: 20px;
	background-color: #495057;
	-webkit-mask: url('../img/renewal/svg/icon-arrow-down.svg') no-repeat center / contain;
	mask: url('../img/renewal/svg/icon-arrow-down.svg') no-repeat center / contain;
	flex-shrink: 0;
}

.release_note_wrap .btn_load_more:hover {
	background: #f4f6f7;
}

.release_note_wrap .btn_load_more:active,
.release_note_wrap .btn_load_more.selected {
	background: #e7eaed;
}

.release_note_wrap .btn_load_more:active .btn_load_more_txt,
.release_note_wrap .btn_load_more.selected .btn_load_more_txt {
	color: #212529;
}

.release_note_wrap .btn_load_more:active .icon_arrow_down,
.release_note_wrap .btn_load_more.selected .icon_arrow_down {
	background-color: #212529;
}

/* 키보드 탭 이동 시 포커스 링 — 마우스 클릭 시에는 표시 안 됨 */
.release_note_wrap .btn_load_more:focus {
	outline: none;
}

.release_note_wrap .btn_load_more:focus-visible {
	outline: 2px solid #212529;
	outline-offset: 2px;
}

.release_note_wrap .btn_load_more.disabled,
.release_note_wrap .btn_load_more[aria-disabled="true"] {
	pointer-events: none;
}

.release_note_wrap .btn_load_more.disabled .btn_load_more_txt,
.release_note_wrap .btn_load_more[aria-disabled="true"] .btn_load_more_txt {
	color: #adb5bd;
}

.release_note_wrap .btn_load_more.disabled .icon_arrow_down,
.release_note_wrap .btn_load_more[aria-disabled="true"] .icon_arrow_down {
	background-color: #adb5bd;
}


/* 마크다운 렌더링 스타일 */
.release_note_wrap .contents_desc h1,
.release_note_wrap .contents_desc h2 {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.56;
	letter-spacing: -0.18px;
	color: #212529;
	margin-bottom: 8px;
}

.release_note_wrap .contents_desc p {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: -0.16px;
	color: #676f77;
	margin-top: 4px;
}

.release_note_wrap .contents_desc ul {
	padding-left: 20px;
	list-style: disc;
}

.release_note_wrap .contents_desc li {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	color: #676f77;
}
