/* 모바일 공통 스타일 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.mobile-body {
    padding-top: 120px; /* 헤더 높이만큼 여백 (상단 바 60px + 탭 50px + 여유 10px) */
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

/* 모바일 컨테이너 */
.mobile-container {
    width: 100%;
    min-height: 100vh;
    padding-bottom: 60px;
}

/* Skip Navigation */
#skip_navi {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

#skip_navi a:focus,
#skip_navi a:active {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #000;
    color: #fff;
    z-index: 10000;
}

