:root {
  color-scheme: light dark;
  font-family: "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", "Nanum Gothic", sans-serif;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: #f4f6f8;
  color: #172027;
  font-family: "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", "Nanum Gothic", sans-serif;
}

.site-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 24px 18px 52px;
  box-sizing: border-box;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  margin: 0 0 28px;
  font-size: 14px;
}

.site-nav a {
  color: #1f5f54;
  text-decoration: none;
  font-weight: 700;
}

.site-nav a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero {
  padding: 12px 0 20px;
}

.eyebrow {
  margin: 0 0 8px;
  color: #42606b;
  font-size: 14px;
  font-weight: 700;
}

h1 {
  margin: 0 0 14px;
  color: #102028;
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.22;
  letter-spacing: 0;
}

h2 {
  margin: 30px 0 10px;
  color: #15303b;
  font-size: 24px;
  line-height: 1.35;
  letter-spacing: 0;
}

h3 {
  margin: 20px 0 8px;
  color: #20313a;
  font-size: 18px;
  line-height: 1.4;
}

p {
  margin: 0 0 12px;
  color: #304650;
  font-size: 16px;
  line-height: 1.72;
}

ul,
ol {
  margin: 8px 0 16px;
  padding-left: 22px;
}

li {
  margin: 6px 0;
  color: #304650;
  font-size: 16px;
  line-height: 1.65;
}

.content-section {
  padding: 22px 0;
  border-top: 1px solid #dfe7ea;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.link-card {
  display: block;
  min-height: 104px;
  padding: 16px;
  border: 1px solid #d8e3e6;
  border-radius: 8px;
  background: #ffffff;
  color: #20313a;
  text-decoration: none;
  box-sizing: border-box;
}

.link-card strong {
  display: block;
  margin-bottom: 6px;
  color: #173f38;
  font-size: 16px;
}

.link-card span {
  color: #53666e;
  font-size: 14px;
  line-height: 1.55;
}

.note {
  padding: 14px 16px;
  border-left: 4px solid #1e6b5e;
  background: #eaf4f1;
  color: #20313a;
}

.note p {
  margin: 0;
}

.table-wrap {
  overflow-x: auto;
  margin: 14px 0 18px;
}

table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: #ffffff;
}

th,
td {
  padding: 12px;
  border: 1px solid #d8e3e6;
  text-align: left;
  vertical-align: top;
  color: #304650;
  font-size: 15px;
  line-height: 1.55;
}

th {
  background: #edf4f5;
  color: #20313a;
}

a {
  color: #1e6b5e;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.updated {
  margin-top: 30px;
  color: #68777d;
  font-size: 13px;
}

@media (max-width: 640px) {
  .site-page {
    padding: 20px 16px 44px;
  }

  .link-card {
    min-height: 0;
  }
}
