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

html,
body {
  height: 100%;
  font-family: sans-serif;
  line-height: 1.5;
}

ol,
ul {
  list-style: none;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
}

/*
 * Visually-hidden heading utility.
 *
 * The pages carry no <h1> at all — the visible page titles are images or <h2>s —
 * which leaves crawlers and screen readers without a top-level heading. This exposes
 * one to both without changing the visual design. `clip-path` (not `display:none`)
 * is required: hidden-by-display text is ignored by assistive tech and discounted
 * by search engines.
 */
.SrOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
