@charset "utf-8";
/* ============================================
   RESET
   - 브라우저 기본값 정리만 담당
   - 폰트, 컬러, 버튼/폼 디자인, 반응형 클래스는 넣지 않음
============================================ */

html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100%;
}

main,
article,
aside,
footer,
header,
nav,
section,
figcaption,
figure,
picture {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
pre {
  margin: 0;
}

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

fieldset,
legend {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

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

caption,
th,
td {
  padding: 0;
  text-align: left;
  font-weight: inherit;
  vertical-align: middle;
}

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

img,
picture,
svg,
canvas,
video,
iframe {
  display: block;
  max-width: 100%;
  border: 0;
}

button,
input,
select,
textarea {
  margin: 0;
  font: inherit;
  color: inherit;
}

button {
  padding: 0;
  border: 0;
  background: none;
}

textarea {
  resize: vertical;
}

hr {
  margin: 0;
  border: 0;
}

address,
em,
cite,
i {
  font-style: normal;
}

strong,
b {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub { bottom: -0.25em; }
sup { top: -0.5em; }

[hidden] {
  display: none !important;
}

/* ============================================
   Mobile Touch / Selection Reset
   - 모바일 탭 하이라이트, 이미지 선택/드래그 방지
============================================ */

a,
button,
label,
[role="button"],
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

a,
button,
label,
[role="button"] {
  touch-action: manipulation;
}

button,
a,
img,
svg,
picture,
canvas,
video,
.material-symbols-rounded,
.material-symbols-outlined,
.material-symbols-sharp {
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

img,
svg {
  -webkit-touch-callout: none;
}

/* 마우스 클릭 때만 불필요한 포커스 테두리 제거 */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

/* 키보드 접근성 포커스는 유지 */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--point);
  outline-offset: 3px;
}