/* ===============================
   RESET CSS (hc-wrap scoped)
   =============================== */

/* 모든 요소 기본값 제거 */
.hc-wrap *,
.hc-wrap *::before,
.hc-wrap *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* 기본 설정 (body 대신 hc-wrap에 적용) */
.hc-wrap {
    font-size: 16px;
    font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
    line-height: 1.5;
    color: #222;
    -webkit-text-size-adjust: 100%;
}

/* 리스트 */
.hc-wrap ul,
.hc-wrap ol {
    list-style: none;
}

/* 링크 */
.hc-wrap a {
    text-decoration: none;
    color: inherit;
}

/* 이미지 */
.hc-wrap img {
    max-width: 100%;
    display: block;
    border: 0;
}

/* 버튼 */
.hc-wrap button {
    border: none;
    background: none;
    cursor: pointer;
    font: inherit;
}

/* input */
.hc-wrap input,
.hc-wrap textarea,
.hc-wrap select {
    font: inherit;
    border: none;
    outline: none;
}

/* 테이블 */
.hc-wrap table {
    border-collapse: collapse;
    border-spacing: 0;
}