/* 약관·방침 공용 스타일 — 피그마 가이드(#597:946) 기준
   컨테이너 1440 / padding 72 / 섹션 gap 74
   제목 32 SemiBold #000 · 조항헤딩 24 Medium #222 · 본문 24 Regular #222 (lh 1.54)
   값은 데스크탑 기준이며 좁은 화면에서 clamp로 축소 */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: #fff;
  color: #222222;
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
    system-ui, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.015em;
}
.legal {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 72px);
}
.legal__title {
  margin: 0 0 clamp(24px, 2.78vw, 40px);
  font-size: clamp(22px, 2.22vw, 32px);
  font-weight: 600;
  line-height: 1.5;
  color: #000000;
}
.legal__sections {
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 5vw, 72px);   /* 피그마: 섹션 간 간격 72px */
}
.legal .sec-title {
  margin: 0 0 clamp(14px, 2.08vw, 30px);  /* 피그마: 헤딩↔본문 30px (타이틀↔서브 40보다 좁게) */
  font-size: 16px;
  font-weight: 500;
  line-height: 1.54;
  color: #222222;
}
.legal .sec-body {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.54;
  color: #222222;
  white-space: pre-line;       /* 본문 줄바꿈(\n) 보존 */
  word-break: keep-all;
  overflow-wrap: anywhere;
}
