
/* ===== 전체 배경 ===== */
body {
    background: #F0F0F0 !important;
    margin: 0;
    font-family: 'Noto Sans KR', sans-serif;
}

/* ===== 최대 너비 1120px 중앙 정렬 래퍼 ===== */
.klle-outer {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    background: #F0F0F0;
}

.klle-wrap {
    display: flex;
    width: 1120px;
    max-width: 1120px;
    min-height: 100vh;
    background: #fff;
}

/* ===== 사이드바 560px ===== */
.klle-sidebar {
    width: 560px;
    min-width: 560px;
    background: #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 56px 56px 64px 0;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.klle-sidebar-top {
    display: flex;
    flex-direction: column;
}
.klle-sidebar-logo {
    margin-bottom: 48px;
}
.klle-sidebar-logo img {
    height: 56px;
    width: auto;
    object-fit: contain;
}

/* 헤더 로고 */
.klle-header-logo img {
    height: 36px;       /* height만 고정 */
    width: auto;        /* width는 자동 */
    object-fit: contain;
    flex-shrink: 0;
}
.klle-sidebar-intro {
    margin-bottom: 28px;
}
.klle-sidebar-sub {
    font-size: 1.25rem;
    color: #7D7D7D;
    margin-bottom: 10px;
    font-weight: 400;
}
.klle-sidebar-sub strong {
    font-weight: 700;
    color: #111;
}
.klle-sidebar-desc {
    font-size: 1.25rem;
    color: #7D7D7D;
    line-height: 1.2;
}
.klle-sidebar-divider {
    width: 1px;
    height: 80px;
    background: #ccc;
    margin-left: 2px;
    margin-bottom: 48px;
}
.klle-sidebar-title {
    margin-top: 0;
}
.klle-sidebar-title p {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a1a2e;
    line-height: 1.35;
}
.klle-sidebar-title-blue {
    color: #1560bd !important;
    font-size: 2.5rem !important;
}



/* ===== 메인 560px ===== */
.klle-main {
    width: 560px;
    min-width: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
}

/* ===== 헤더 ===== */
.klle-header {
    background: #fff;
    display: flex;
    flex-direction: column;  /* 세로 2줄 */
    align-items: center;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.klle-header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.klle-header-logo img,
.klle-header-logo svg {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}
.klle-header-logo-txt h2 {
    font-size: 12px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
}
.klle-header-logo-txt p {
    font-size: 8px;
    color: #999;
}
.klle-header-logo-txt strong {
    font-weight: 900;
    font-size: 10px;
}
/* 상단 로고 영역 */
.klle-header-top {
    width: 100%;
    display: flex;
    justify-content: center;  /* 중앙 정렬 */
    align-items: center;
    padding: 16px 0 12px;
}
.klle-header-logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.klle-header-logo img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

/* 하단 네비 */
.klle-nav {
    width: 100%;
    display: flex;
    justify-content: center;  /* 중앙 정렬 */
    align-items: flex-end;
    height: 48px;
}
.klle-nav-item {
    height: 48px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    font-size: 1.25rem;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s;
    white-space: nowrap;
    text-decoration: none;
}
.klle-nav-item:hover { color: #1560bd; }
.klle-nav-item.active {
    color: #1560bd;
    font-weight: 700;
    border-bottom: 3px solid #1560bd;
}

/* ===== 스크롤 영역 ===== */
.klle-scroll {
    flex: 1;
    overflow-y: auto;
}
.klle-scroll::-webkit-scrollbar { width: 4px; }
.klle-scroll::-webkit-scrollbar-thumb { background: #ddd; border-radius: 2px; }

/* ===== 하단 CTA ===== */
.klle-cta {
    border-top: 1px solid #e8e8e8;
    background: #fff;
    height: 68px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 10px;
    flex-shrink: 0;
}
.klle-btn-naver {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #03C75A;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 7px 12px;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Noto Sans KR', sans-serif;
    white-space: nowrap;
}
.klle-btn-kakao {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #FEE500;
    color: #3A1D1D;
    border: none;
    border-radius: 6px;
    padding: 7px 12px;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Noto Sans KR', sans-serif;
    white-space: nowrap;
}
.klle-btn-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
}
.klle-btn-icon-kakao { background: rgba(0,0,0,0.08); }
.klle-tel {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}
.klle-tel-num {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
}
.klle-tel-hours {
    font-size: 9px;
    color: #888;
    margin-top: 1px;
}

/* ===== 푸터 ===== */
.klle-footer {
    border-top: 1px solid #e8e8e8;
    background: #F5F5F5;
    padding: 24px 20px;
    flex-shrink: 0;
}
.klle-footer-info {
    margin-bottom: 16px;
}
.klle-footer-info p {
    font-size: 0.75rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
}
.klle-footer-info p:last-child {
    margin-bottom: 0;
}
.klle-footer-copy {
    font-size: 0.75rem;
    color: #888;
    margin-top: 8px;
}
.klle-footer-social {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.klle-footer-social a img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

/* ===== 모바일 ===== */
@media (max-width: 768px) {
    .klle-wrap {
        width: 100%;
        max-width: 100%;
    }
    .klle-sidebar { display: none; }
    .klle-main {
        width: 100%;
        min-height: 100dvh;
    }
    .klle-header { padding: 0 16px; }
    .klle-nav-item { padding: 0 8px; font-size: 12px; }
    .klle-cta { padding: 0 12px; gap: 8px; }
    .klle-tel-num { font-size: 14px; }
}