@font-face {
    font-family: "Suit";
    font-style: normal;
    font-weight: 400;
    src: url("@/assets/fonts/Suit-Regular.woff2") format("woff2");
}
@font-face {
    font-family: "Suit";
    font-style: normal;
    font-weight: 500;
    src: url("@/assets/fonts/Suit-Medium.woff2") format("woff2");
}
@font-face {
    font-family: "Suit";
    font-style: normal;
    font-weight: 600;
    src: url("@/assets/fonts/Suit-SemiBold.woff2") format("woff2");
}
@font-face {
    font-family: "Suit";
    font-style: normal;
    font-weight: 700;
    src: url("@/assets/fonts/Suit-Bold.woff2") format("woff2");
}
@font-face {
    font-family: "Suit";
    font-style: normal;
    font-weight: 800;
    src: url("@/assets/fonts/Suit-ExtraBold.woff2") format("woff2");
}

/* 기본 초기화 */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 기본 설정 */
html,
body {
    height: 100%;
    font-size: 16px;
    line-height: 1.5;
    font-family: var(--font-main);
    color: var(--color-gray-90);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0 auto;
    word-break: keep-all;
}

h1,h2,h3,h4,h5,p,figure{
    margin: 0; padding: 0;
}

/* 이미지/링크 등 요소 초기화 */
img,video {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

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

button {
    all: unset;
    color: var(--color-pri-80);
    cursor: pointer;
    font: inherit;
}

ol,ul,li {
    list-style: none;
    margin: 0;
    padding: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

th, td {
    padding: 0;
    text-align: left;
    vertical-align: top;
    font-weight: normal;
    border: none;
}

input,textarea,select {
    font: inherit;
    color: inherit;
    border: none;
    background: none;
    outline: none;
}

/* 폼 요소 기본 스타일 제거 */
textarea {
    resize: none;
}

pre, code {
    margin: 0;
    padding: 0;
    font-family: inherit;
    font-size: inherit;
    white-space: pre-wrap;
    background: none;
    border: none;
    color: inherit;
}

/* 스크롤 숨기기 (선택) */
/*
::-webkit-scrollbar {
    display: none;
}
*/