/* common.css - 공통 스타일 (header, footer, 공통 컴포넌트) */

/* ===== Font Face: SUIT ===== */
@font-face {
    font-family: 'SUIT';
    font-weight: 100;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/SUIT-Thin.woff2') format('woff2');
}
@font-face {
    font-family: 'SUIT';
    font-weight: 200;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/SUIT-ExtraLight.woff2') format('woff2');
}
@font-face {
    font-family: 'SUIT';
    font-weight: 300;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/SUIT-Light.woff2') format('woff2');
}
@font-face {
    font-family: 'SUIT';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/SUIT-Regular.woff2') format('woff2');
}
@font-face {
    font-family: 'SUIT';
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/SUIT-Medium.woff2') format('woff2');
}
@font-face {
    font-family: 'SUIT';
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/SUIT-SemiBold.woff2') format('woff2');
}
@font-face {
    font-family: 'SUIT';
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/SUIT-Bold.woff2') format('woff2');
}
@font-face {
    font-family: 'SUIT';
    font-weight: 800;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/SUIT-ExtraBold.woff2') format('woff2');
}
@font-face {
    font-family: 'SUIT';
    font-weight: 900;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/SUIT-Heavy.woff2') format('woff2');
}

/* ===== Font Face: Pretendard ===== */
@font-face {
    font-family: 'Pretendard';
    font-weight: 100;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/Pretendard-Thin.woff') format('woff');
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 200;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/Pretendard-ExtraLight.woff') format('woff');
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 300;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/Pretendard-Light.woff') format('woff');
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/Pretendard-Regular.woff') format('woff');
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/Pretendard-Medium.woff') format('woff');
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/Pretendard-SemiBold.woff') format('woff');
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/Pretendard-Bold.woff') format('woff');
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 800;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/Pretendard-ExtraBold.woff') format('woff');
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 900;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/Pretendard-Black.woff') format('woff');
}

/* ===== CSS Variables: Font ===== */
:root {
    --font-SUIT: 'SUIT', sans-serif;
    --font-Pretendard: 'Pretendard', sans-serif;

    --fw-thin: 100;
    --fw-extralight: 200;
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;
    --fw-heavy: 900;
}

/* ===== CSS Variables: Color ===== */
:root {
    --main-brand-color: rgba(100, 84, 237, 1);
}



/* ===== Utility ===== */
/* IR (Image Replacement) - 스크린리더만 인식, 시각적으로 숨김 */
.hidden_text{
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

/* 모바일 전용 줄바꿈 */
.br_mo{
    display: none;
}


