@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css');

:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    'Pretendard',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    system-ui,
    sans-serif;
  color: #202124;
  background: #f5f7fb;
}

.page {
  display: grid;
  place-items: start center;
  padding: 40px 16px;
}

.card {
  width: min(100%, 860px);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.breadcrumb {
  margin: 0 0 10px;
  font-size: 14px;
  color: #6b7280;
}

h1 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.desc {
  margin: 16px 0 28px;
  max-width: 760px;
  color: #4b5563;
  line-height: 1.65;
}

.policy {
  border-top: 1px solid #eef1f5;
  padding-top: 24px;
}

.policy section + section {
  margin-top: 22px;
}

.policy h2 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.4;
}

.policy p,
.policy li {
  margin: 0;
  color: #374151;
  line-height: 1.7;
}

.policy ul {
  margin: 0;
  padding-left: 18px;
}

.policy li + li {
  margin-top: 6px;
}

@media (max-width: 640px) {
  .card {
    padding: 20px;
  }
}
