/*!
 * jenny-editor-krds.css — KRDS(대한민국 디자인시스템) 토큰 스킨
 * jenny-editor.css 다음에 로드하면 색·서체가 KRDS 디자인 토큰 값으로 전환된다.
 * KRDS 클래스명을 재사용하지 않고 CSS 변수(--je-*)만 오버라이드한다(충돌 방지 원칙).
 * 서체: 호스트 페이지가 Pretendard GOV 를 로컬 제공하면 자동 사용(외부 요청 없음).
 * Copyright (c) JennySoft. All rights reserved.
 */

.jenny-editor,
.jenny-viewer {
	/* KRDS 색상 토큰 (Primary #246BEB, Gray scale, Danger #EB003B) */
	--je-blue: #246beb;    /* KRDS Primary-60 */
	--je-ink: #1e2124;     /* KRDS Gray-90  (white 대비 16.2:1) */
	--je-muted: #464c53;   /* KRDS Gray-70  (Gray-5 대비 7.9:1) */
	--je-line: #cdd1d5;    /* KRDS Gray-30 */
	--je-soft: #f4f5f6;    /* KRDS Gray-5 */
	--je-bg: #ffffff;
	--je-danger: #eb003b;  /* KRDS Danger  (white 대비 4.6:1) */

	font-family: "Pretendard GOV", Pretendard, "Segoe UI", "Malgun Gothic", Arial, sans-serif;
}

/* KRDS 라운드·포커스 토큰 */
.jenny-editor { border-radius: 8px; }
.jenny-editor .jenny-btn,
.jenny-editor .jenny-mode-tab { border-radius: 6px; }

/* 활성 상태를 KRDS Primary 계열로 (아이콘 대비 4.5:1 이상 유지) */
.jenny-editor .jenny-btn.active {
	background: #e8f0fe;   /* KRDS Primary-5 근사 */
	border-color: #b1ccfb;
	color: #1a56b8;        /* #e8f0fe 대비 5.9:1 */
}
.jenny-editor .jenny-mode-tab.active,
.jenny-editor .jenny-popup-ok {
	background: var(--je-blue);
	border-color: var(--je-blue);
	color: #fff;           /* #246BEB 대비 4.8:1 */
}

/* 콘텐츠 영역 KRDS 보조 색 */
.jenny-content blockquote {
	border-left-color: #8a949e;  /* KRDS Gray-50 */
	background: #f4f5f6;
	color: #33363d;
}
.jenny-content th { background: #eceef0; }
.jenny-content a { color: #0b50d0; } /* KRDS Primary-70: white 대비 6.4:1 */
