@font-face {
  font-family: Geist;
  src: url("https://cdn.jsdelivr.net/npm/geist@1.3.1/dist/fonts/geist-sans/Geist-Variable.woff2")
    format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
:root {
  color-scheme: light;
  --paper: #f6f5f3;
  --ink: #272a29;
  --muted: #666b68;
  --line: #dedfdb;
  --accent: #365f51;
  --sans: Geist, "Pretendard Variable", Arial, sans-serif;
  --display: Georgia, "Pretendard Variable", serif;
  --frame: 1120px;
}
* {
  box-sizing: border-box;
  letter-spacing: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  scrollbar-gutter: stable;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.65 var(--sans);
}
h1,
h2,
h3,
p {
  margin: 0;
}
button,
input,
select {
  font: inherit;
  color: inherit;
}
button,
a,
input {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
  opacity: 0.35;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: var(--accent);
}
button {
  background: transparent;
}
button,
input {
  border: 1px solid var(--line);
  border-radius: 6px;
}
button {
  min-height: 44px;
  padding: 8px 14px;
}
button:hover {
  background: #e9ece8;
}
input {
  padding: 10px 12px;
  min-height: 44px;
  background: #fff;
}
button:active {
  transform: translateY(1px);
}
:focus-visible {
  outline: 2px solid #32634a;
  outline-offset: 4px;
}
img {
  max-width: 100%;
  height: auto;
}
img[hidden] {
  display: none !important;
}
body:not(.ko) [lang="ko"],
body.ko [lang="en"] {
  display: none !important;
}
body.ko {
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.site-header {
  width: min(var(--frame), calc(100% - 64px));
  margin: auto;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 36px;
  border-bottom: 0;
}
.site-brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 23px;
  font-weight: 650;
  line-height: 1;
  min-width: 48px;
}
.site-brand span {
  color: var(--accent);
}
.site-navigation {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  font-size: 14px;
}
.site-navigation a {
  min-width: 28px;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.site-controls {
  display: flex;
  gap: 8px;
  align-items: center;
}
.site-controls button {
  font-size: 13px;
  white-space: nowrap;
  border-color: transparent;
}
#ttsToggle {
  width: 44px;
  font-size: 22px;
  padding: 0;
}
.site-controls button[aria-pressed="true"] {
  background: var(--ink);
  color: white;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 16px;
  transform: translateY(-150%);
  z-index: 100;
  background: white;
  padding: 12px 18px;
  border: 1px solid var(--accent);
}
.skip-link:focus {
  transform: none;
}
.pl-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
html[data-view="library"] #cv-start,
html[data-view="library"] [data-view-only="cv"],
html[data-view="cv"] #work-library,
html[data-view="cv"] [data-view-only="library"] {
  display: none;
}
html[data-view="cv"] .cv-link,
html[data-view="library"] .library-return {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 5px;
}
.hidden {
  display: none !important;
}
.reader * {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}
@media (max-width: 700px) {
  .site-header {
    width: calc(100% - 40px);
    height: auto;
    min-height: 80px;
    gap: 12px;
    flex-wrap: wrap;
    padding: 16px 0;
  }
  .site-navigation {
    gap: 16px;
    font-size: 13px;
  }
  .site-controls {
    gap: 6px;
  }
  .site-controls button {
    font-size: 12px;
    padding: 8px 10px;
  }
  .site-brand {
    font-size: 24px;
  }
  .site-controls #printCV {
    min-width: 96px;
  }
  html[data-view="cv"] .site-controls {
    width: 100%;
    justify-content: flex-end;
  }
  html[data-view="cv"] .site-header {
    min-height: 124px;
  }
}
@media (max-width: 390px) {
  .site-header {
    gap: 8px;
  }
  .site-navigation {
    gap: 10px;
  }
  .site-controls button {
    padding: 8px;
  }
  .site-brand {
    min-width: 38px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
.error-page {
  width: min(680px, calc(100% - 40px));
  margin: 100px auto;
}
.error-page h1 {
  font: normal 44px/1.2 var(--display);
  margin: 20px 0;
}
.error-page p {
  color: var(--muted);
  margin-bottom: 20px;
}
.error-page > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: underline;
  text-underline-offset: 5px;
}
@media print {
  body {
    background: white;
    color: black;
    font-size: 10pt;
  }
  .site-header,
  .skip-link,
  [data-view-only],
  #work-library {
    display: none !important;
  }
  html[data-view="library"] #cv-start {
    display: block !important;
  }
  a {
    color: black;
  }
  button {
    display: none !important;
  }
}
