/* common.css - 공통 스타일 */

/* 기본 리셋 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Malgun Gothic', 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* 링크 기본 스타일 */
a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* 리스트 기본 스타일 */
ul, ol {
    list-style: none;
}

/* 이미지 기본 스타일 */
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

/* 클리어픽스 */
.clearfix:after {
    content: '';
    display: table;
    clear: both;
}

/* 공통 컨테이너 */
.inner {
    width: 1190px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* 모든 주요 섹션이 자연스럽게 스크롤되도록 */
#wrapper {
    position: static;
    width: 100%;
}

#header, #menu, section {
    position: static;
    display: block;
    width: 100%;
}

/* 반응형 기본 설정 */
@media (max-width: 768px) {
    .inner {
        padding: 0 15px;
    }
}