/* =====================================================
   base.css — 전역 리셋 & 공통 변수
===================================================== */

:root {
    --primary:       #2d2d2d;
    --primary-light: #c8900a;
    --accent:        #c8900a;
    --bg-page:       #f5f5f4;
    --bg-card:       #ffffff;
    --border:        #e5e5e5;
    --text-main:     #1a1a1a;
    --text-sub:      #5a5a5a;
    --text-muted:    #9a9a9a;
    --up:            #dc2626;
    --dn:            #2563eb;
    --font-base:     'Noto Sans KR', sans-serif;

    /* MIS Be 브랜드 컬러 */
    --mis-gray:      #8a8a8a;
    --mis-orange:    #c8900a;
    --mis-orange-bg: #fff7ed;
    --mis-orange-bd: #fed7aa;
}

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

html, body {
    font-family: var(--font-base);
    font-size: 14px;
    color: var(--text-main);
    background: var(--bg-page);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
}

img {
    max-width: 100%;
    display: block;
}
