@charset "UTF-8";
@font-face {
  font-family: "HakgyoansimSantteutdotum";
  src: url("./fonts/HakgyoansimSantteutdotumL.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "HakgyoansimSantteutdotum";
  src: url("./fonts/HakgyoansimSantteutdotumM.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg: #fff;
  --text: #111;
  --muted: #888;
  --border: #e8e8e8;
  --max-width: 640px;
}

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

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

ul {
  color: var(--muted);
  font-size: 14px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "HakgyoansimSantteutdotum", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

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

.is-link {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: lightskyblue;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 52px;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-name {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.site-name a {
  text-decoration: none;
}

.site-nav {
  display: flex;
  gap: 24px;
}
.site-nav a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.site-nav a:hover, .site-nav a.active {
  color: var(--text);
}

main {
  padding-bottom: 80px;
}

.intro {
  margin-bottom: 52px;
}
.intro p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  max-width: 500px;
}
.intro p + p {
  margin-top: 8px;
}

.intro-heading {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.services-quick {
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 20px;
}

.service-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 6px;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
.service-btn:hover {
  border-color: var(--text);
  background: #fafafa;
}

.service-btn-name {
  font-size: 14px;
  font-weight: 500;
}

.service-btn-desc {
  font-size: 13px;
  color: var(--muted);
}

.service-btn-arrow {
  font-size: 13px;
  color: var(--muted);
}

.page-heading {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 40px;
}

.service-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.service-item:first-of-type {
  border-top: 1px solid var(--border);
}
.service-item h2 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 6px;
}
.service-item p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 16px;
  max-width: 440px;
}

.service-item-link {
  display: inline-block;
  font-size: 13px;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.service-item-link:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.notes-list {
  border-top: 1px solid var(--border);
}

.note-item {
  border-bottom: 1px solid var(--border);
}

.note-summary {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.note-summary::-webkit-details-marker {
  display: none;
}
.note-summary::before {
  content: "▶";
  font-size: 9px;
  color: var(--muted);
  flex-shrink: 0;
  position: relative;
  top: -1px;
}

details[open] > .note-summary::before {
  content: "▼";
}

.note-title {
  font-size: 15px;
  font-weight: 500;
}

.note-author {
  font-size: 13px;
  color: var(--muted);
}

.note-entries {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 4px 0 20px 18px;
}

.note-entry {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  align-items: start;
}

.note-date {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}

.note-quote {
  font-size: 14px;
  color: var(--text);
}

.note-page {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}

.empty-state {
  font-size: 14px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-footer span {
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 480px) {
  .service-btn {
    flex-wrap: wrap;
    gap: 4px;
  }
  .service-btn-arrow {
    display: none;
  }
  .note-entry {
    grid-template-columns: 54px 1fr;
  }
  .note-entry .note-page {
    display: none;
  }
}

/*# sourceMappingURL=styles.css.map */
