/* 부트스트랩 초기화 */


/* ===== 기본 박스 모델 정리 ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ===== 문서 구조 요소 초기화 ===== */
html, body {
    height: initial;
    font: inherit;
    line-height: 1.2;
    background: transparent;
    color: inherit;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

/* ===== 타이포그래피 기본 제거 ===== */
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
dl, dd, ol, ul, figure {
    margin: 0;
    padding: 0;
    font: inherit;
    font-weight: inherit;
}

/* ===== 리스트 스타일 제거 ===== */
ul, ol {
    list-style: none;
    padding-left: 0;
  }

/* ===== 폼 요소 초기화 ===== */
input, button, textarea, select {
    font: inherit;
    background: none;
    border: none;
    outline: none;
    appearance: none;
    box-shadow: none;
}

/* ===== 테이블 초기화 ===== */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* ===== 링크 초기화 ===== */
a {
    color: inherit;
    text-decoration: none;
}

/* ===== 이미지 & 미디어 요소 초기화 ===== */
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* ===== 기본 레이아웃을 위한 블록화 ===== */
main, section, article, aside, nav, header, footer {
    display: block;
}

.container {
    --bs-gutter-x: initial;
    --bs-gutter-y: initial;
    width: auto;
    padding-right: 0;
    padding-left: 0;
    margin-right: 0;
    margin-left: 0;
}