@charset "utf-8";

/* ============================= */
/* 기본 리셋 */
/* ============================= */

* {
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html, body {
    height:100%;
}

body {
    font-family:'Noto Sans KR','Malgun Gothic',sans-serif;
    background:#ffffff;
    color:#222;
}

/* 기존 그누보드 구조 제거 */

#hd,
#gnb,
#tnb,
#hd_wrapper,
#aside,
#ft,
#wrapper,
#container_wr,
#container {
    all: unset;
}

/* ============================= */
/* LAYOUT */
/* ============================= */

#layout {
    display:flex;
    min-height:100vh;
}

/* 좌측 메뉴 */

#lnb {
    width:260px;
    background:#0d2b4d;
    color:#fff;
    padding:40px 20px;
}

#lnb h2 {
    font-size:20px;
    margin-bottom:30px;
    font-weight:600;
}

#lnb ul {
    list-style:none;
}

#lnb li {
    margin-bottom:14px;
}

#lnb a {
    display:block;
    padding:10px 14px;
    border-radius:6px;
    color:#fff;
    text-decoration:none;
    transition:0.2s;
}

#lnb a:hover {
    background:#173d6b;
}

/* 우측 컨텐츠 */

#content {
    flex:1;
    padding:60px;
    background:#ffffff;
}

/* 타이포 */

h1 {
    font-size:32px;
    margin-bottom:20px;
}

h2 {
    font-size:24px;
    margin-bottom:12px;
}

p {
    margin-bottom:10px;
    line-height:1.6;
}

a {
    color:#1d4ed8;
}

a:hover {
    text-decoration:underline;
}
