/* 캔바 대체 비교 페이지 스타일
   컨셉: 인쇄소 색분리 registration mark (인쇄 도구 주제와 어울리는 시각 장치)
   폰트: Pretendard (한글 최적화 오픈소스) */

@font-face {
  font-family: 'Pretendard';
  src: url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/woff2/PretendardVariable.woff2') format('woff2-variations');
  font-weight: 45 920;
}

:root {
  --paper: #FAFAF6;
  --ink: #1C1B17;
  --ink-soft: #56534A;
  --line: #DEDACD;
  --cyan: #0090C7;
  --magenta: #D6006E;
  --yellow: #E8A200;
  --card-bg: #FFFFFF;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Malgun Gothic', sans-serif;
  font-weight: 420;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.marks {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}
.marks span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
}
.marks span:nth-child(1) { background: var(--cyan); }
.marks span:nth-child(2) { background: var(--magenta); }
.marks span:nth-child(3) { background: var(--yellow); }

.eyebrow {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 10px;
}

h1 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}

.lede {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 58ch;
  margin: 0 0 40px;
}

h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 56px 0 4px;
}

.section-note {
  color: var(--ink-soft);
  font-size: 14px;
  margin: 0 0 20px;
}

/* 비교 표 */
.compare {
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: var(--card-bg);
}

.row {
  display: grid;
  grid-template-columns: 96px 1fr;
  border-top: 1px solid var(--line);
}
.row:first-child { border-top: none; }

.row-head {
  padding: 18px 16px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border-right: 1px solid var(--line);
  background: #FCFBF8;
}
.row-head .dot {
  width: 8px; height: 8px; border-radius: 50%;
  margin-top: 7px; flex-shrink: 0;
}
.row-head .name {
  font-weight: 700;
  font-size: 15px;
}

.row-body { padding: 16px 18px; }

.spec-line {
  display: flex;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 6px;
}
.spec-line:last-child { margin-bottom: 0; }
.spec-label {
  color: var(--ink-soft);
  min-width: 68px;
  flex-shrink: 0;
}
.desc {
  margin-top: 10px;
  font-size: 14.5px;
  color: var(--ink);
}
.best-for {
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.best-for b { color: var(--ink); font-weight: 600; }

/* 상황별 추천 */
.pick-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pick-list li {
  display: flex;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
}
.pick-list li:first-child { border-top: none; }
.pick-list .mark {
  width: 8px; height: 8px; border-radius: 50%;
  margin-top: 8px; flex-shrink: 0;
}
.pick-list b { font-weight: 700; }

footer {
  margin-top: 64px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
}

a { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: underline; }

@media (max-width: 480px) {
  h1 { font-size: 26px; }
  .row { grid-template-columns: 1fr; }
  .row-head { border-right: none; border-bottom: 1px solid var(--line); }
}
