@charset "UTF-8";

/**
 * @File: reset.css
 * @Author: 디지털웍스
 * @Date: 2026-07-09
 * @Description: CSS 리셋
 * @Note: public/contents 정적 HTML 전용 스타일
 */

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

* {
  padding: 0;
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  text-rendering: optimizespeed;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

a {
  color: inherit;
  text-underline-offset: 3px;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

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

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-text-fill-color: #000;
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px #fff inset;
  transition: background-color 5000s ease-in-out 0s;
}

input:autofill,
input:autofill:hover,
input:autofill:focus,
input:autofill:active {
  -webkit-text-fill-color: #000;
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px #fff inset;
  transition: background-color 5000s ease-in-out 0s;
}

button {
  cursor: pointer;
  background: transparent;
  border: none;
}

textarea {
  resize: vertical;
}

ul,
ol,
dl,
dt,
dd {
  list-style: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

a,
button,
input,
textarea,
select {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
