/* HANDSUB Kakao Login — Next.js 기존 디자인 복제 (handsub 테마 변수, 라이트/다크 자동) */

/* 풀스크린 standalone — 사이드바·푸터 없이 중앙 정렬 (Next 로그인 화면) */
body.kkl-page { margin: 0; padding: 0; }
body.kkl-page .feed-shell, body.kkl-page .sidebar, body.kkl-page .mobilebar { display: none; }
.kkl-screen {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: var(--feed-bg, #0a0a0a);
	box-sizing: border-box;
}

/* 중앙 컨테이너 (Next: max-w-[400px]) */
.kkl-wrap {
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
}

/* ── 로그인 화면 ── */
.kkl-login__title {
	margin: 0 0 8px;
	font-size: 1.25rem;
	font-weight: 600;
	text-align: center;
	color: var(--feed-text, #0a0a0a);
}
.kkl-login__sub {
	margin: 0 0 40px;
	font-size: .875rem;
	line-height: 1.6;
	text-align: center;
	color: var(--feed-text-dim, #555);
}

/* 카카오 버튼 — 풀폭 알약, 브랜드 노란색 #FEE500 (Next 동일) */
.kkl-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 14px;
	font-size: .875rem;
	font-weight: 500;
	border-radius: 9999px;
	background: #FEE500;
	color: #191919;
	text-decoration: none;
	box-sizing: border-box;
	transition: opacity .15s ease;
}
.kkl-btn:hover { opacity: .9; }
.kkl-btn__icon { flex-shrink: 0; }

/* 돌아가기 */
.kkl-back {
	display: block;
	margin-top: 40px;
	font-size: .875rem;
	text-align: center;
	color: var(--feed-text-faint, #636363);
	text-decoration: none;
	transition: opacity .15s ease;
}
.kkl-back:hover { opacity: .7; }

/* ── 계정 화면 (.kkl-wrap 스코프로 테마 .single-body 글 스타일 덮어쓰기 방지) ── */
.kkl-wrap .kkl-greet {
	margin: 0 0 40px;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.3;
	color: var(--feed-text, #0a0a0a);
}
.kkl-wrap .kkl-section-label {
	margin: 0 0 16px;
	font-size: .875rem;
	font-weight: 600;
	color: var(--feed-text-faint, #636363);
}
.kkl-rows {
	display: flex;
	flex-direction: column;
}
.kkl-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 0;
	border-bottom: 1px solid var(--feed-border, #e5e5e5);
}
.kkl-row__label {
	font-size: .875rem;
	color: var(--feed-text-faint, #636363);
}
.kkl-row__value {
	font-size: .875rem;
	color: var(--feed-text, #0a0a0a);
	text-align: right;
	word-break: break-all;
}

/* 하단 액션 (로그아웃 · 홈으로) — Next식 텍스트 링크 */
.kkl-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 28px;
}
.kkl-wrap .kkl-logout,
.kkl-wrap .kkl-home {
	display: inline-block;
	padding: 8px 0;
	font-size: .875rem;
	color: var(--feed-text-faint, #636363);
	text-decoration: none;
	transition: color .15s ease;
}
.kkl-wrap .kkl-logout:hover,
.kkl-wrap .kkl-home:hover { color: var(--feed-text, #0a0a0a); }
