/* 2026 경기도 청년주간 — Design Tokens
 * 이 파일은 head 최하단에 로드되어 그누보드/Tailwind보다 우선합니다.
 */
html:root,
:root {
  --color-blue: #1695CC;
  --color-orange: #E9562D;
  --color-yellow: #F4CC5A;
  --color-green: #35A85D;
  --color-cream: #FFF7DF;
  --color-black: #111111;
  --color-white: #FFFFFF;
  --color-gray-50: #F7F7F7;
  --color-gray-100: #EFEFEF;
  --color-gray-200: #D9D9D9;
  --color-gray-500: #888888;
  --color-gray-700: #444444;

  --color-empathy: var(--color-blue);
  --color-diagnosis: var(--color-green);
  --color-challenge: var(--color-orange);

  --font-display: 'HsSantoki', 'Pretendard', sans-serif;
  --font-body: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --header-height: 122px;
  --container-width: 1280px;
  --container-max: 1280px;
  --container-gutter: 40px;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 100px;

  --border: 2px solid var(--color-black);
  --border-strong: 3px solid var(--color-black);
  --shadow: 6px 6px 0 var(--color-black);
  --shadow-sm: 4px 4px 0 var(--color-black);
  --shadow-hover: 8px 8px 0 var(--color-black);

  --radius-none: 0;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

html body,
html body.spielen-site {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-black);
  background: var(--color-cream);
}

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

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

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

h1,
h2,
h3,
h4,
.display-title,
.section-title,
.sub-visual__title {
  font-family: var(--font-display) !important;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
}

p {
  margin: 0;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

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

address {
  font-style: normal;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 200;
  background: var(--color-black);
  color: var(--color-white);
  padding: 12px 20px;
  font-weight: 700;
}

.skip-link:focus {
  top: 16px;
}

:focus-visible {
  outline: 3px solid var(--color-black);
  outline-offset: 3px;
}

@media (max-width: 1023px) {
  html:root,
  :root {
    --header-height: 72px;
  }
}

@media (max-width: 767px) {
  html:root,
  :root {
    --header-height: 72px;
  }
}
