/* ════════════════════════════════════════════════════════════
   bekah.ai — whitepaper.css
   문서형 레이아웃 · 화이트페이퍼 전용
   base.css / components.css 충돌 없음
   ════════════════════════════════════════════════════════════ */

/* ─── Page Wrapper ───────────────────────────────────────── */
.wp-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 3.5rem;
}

/* ─── Hero / Cover ───────────────────────────────────────── */
.wp-cover {
  position: relative;
  padding: 6rem 0 5rem;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
/* 배경 히브리어 대형 */
.wp-cover-heb {
  position: absolute;
  top: 50%; right: -4rem;
  transform: translateY(-50%);
  font-family: var(--f-display);
  font-size: clamp(12rem, 30vw, 24rem);
  font-weight: 300;
  line-height: 1;
  color: rgba(201, 146, 74, 0.04);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.03em;
  z-index: 0;
}
.wp-cover-inner {
  position: relative;
  z-index: 1;
}
/* 문서 메타 */
.wp-meta-row {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fade-up 0.8s var(--ease-out-expo) 0.4s forwards;
}
.wp-meta-tag {
  font-family: var(--f-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 146, 74, 0.3);
  border-radius: 1px;
  padding: 0.28rem 0.75rem;
}
.wp-meta-divider {
  width: 1px;
  height: 14px;
  background: var(--line);
}
.wp-meta-text {
  font-family: var(--f-body);
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--slate);
  letter-spacing: 0.08em;
}
/* 제목 */
.wp-cover-title {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  opacity: 0;
  animation: fade-up 1.1s var(--ease-out-expo) 0.55s forwards;
}
.wp-cover-title em { font-style: italic; color: var(--gold); }
/* 히브리어 부제 */
.wp-cover-hebrew {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(201, 146, 74, 0.55);
  margin-top: 0.6rem;
  letter-spacing: 0.04em;
  opacity: 0;
  animation: fade-up 1s var(--ease-out-expo) 0.75s forwards;
}
.wp-cover-subtitle {
  font-family: var(--f-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.75;
  max-width: 560px;
  margin-top: 1.8rem;
  opacity: 0;
  animation: fade-up 0.9s var(--ease-out-expo) 0.9s forwards;
}
/* 문서 속성 그리드 */
.wp-cover-attrs {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.8rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  opacity: 0;
  animation: fade-up 0.8s var(--ease-out-expo) 1.05s forwards;
}
.wp-attr {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.wp-attr-label {
  font-family: var(--f-body);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
}
.wp-attr-val {
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--white-dim);
  letter-spacing: 0.04em;
}

/* ─── Definition Section ─────────────────────────────────── */
.wp-def-section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--line);
}
.wp-section-eyebrow {
  font-family: var(--f-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.wp-section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px; height: 1px;
  background: var(--gold); opacity: 0.6;
}
.wp-section-title {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}
.wp-section-title em { font-style: italic; color: var(--gold); }

/* 정의 두 컬럼 */
.wp-def-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}
.wp-def-card {
  padding: 2rem 2.2rem;
  border: 1px solid var(--line);
  background: rgba(8, 12, 20, 0.5);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.wp-def-card:hover { border-color: rgba(201, 146, 74, 0.22); }
.wp-def-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 100%;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.wp-def-card:hover::before { opacity: 0.5; }
.wp-def-card-label {
  font-family: var(--f-body);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
  margin-bottom: 0.8rem;
}
.wp-def-card-title {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.8rem;
  letter-spacing: 0.01em;
}
.wp-def-card-title em { font-style: italic; color: var(--gold); }
.wp-def-card-body {
  font-family: var(--f-body);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.8;
}
.wp-def-card-body strong { color: var(--white); font-weight: 400; }

/* ─── Document Body (Preview) ────────────────────────────── */
.wp-preview-section {
  padding: 5rem 0 0;
  position: relative;
}

/* 챕터 헤더 */
.wp-chapter {
  margin-bottom: 4rem;
}
.wp-chapter-num {
  font-family: var(--f-body);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.65;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.wp-chapter-num::before {
  content: '';
  display: inline-block;
  width: 16px; height: 1px;
  background: var(--gold); opacity: 0.5;
}
.wp-chapter-title {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1.4rem;
}
.wp-chapter-title em { font-style: italic; color: var(--gold); }

/* 본문 텍스트 — 문서형 */
.wp-body-text {
  font-family: var(--f-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.9;
  margin-bottom: 1.4rem;
}
.wp-body-text strong { color: var(--white); font-weight: 400; }

/* 인용 블록 */
.wp-blockquote {
  margin: 2rem 0;
  padding: 1.6rem 2rem;
  border-left: 2px solid var(--gold);
  background: rgba(201, 146, 74, 0.04);
}
.wp-blockquote-text {
  font-family: var(--f-display);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
}
.wp-blockquote-text em { font-style: normal; color: var(--gold); }
.wp-blockquote-source {
  font-family: var(--f-body);
  font-size: 0.62rem;
  font-weight: 300;
  color: var(--slate);
  margin-top: 0.7rem;
  letter-spacing: 0.06em;
}

/* 데이터 포인트 그리드 */
.wp-data-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  margin: 2rem 0;
}
.wp-data-cell {
  padding: 1.5rem 1.6rem;
  border: 1px solid var(--line);
  background: rgba(8, 12, 20, 0.4);
}
.wp-data-val {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.wp-data-val span { color: var(--gold); }
.wp-data-label {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--white-dim);
  margin-top: 0.4rem;
}
.wp-data-sub {
  font-family: var(--f-body);
  font-size: 0.6rem;
  font-weight: 300;
  color: var(--slate);
  margin-top: 0.2rem;
  letter-spacing: 0.04em;
}

/* 페인포인트 리스트 */
.wp-pain-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 1.5rem 0;
}
.wp-pain-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease;
}
.wp-pain-row:first-child { border-top: 1px solid var(--line); }
.wp-pain-row:hover { background: rgba(201, 146, 74, 0.025); }
.wp-pain-cell {
  padding: 1rem 1.2rem;
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.5;
  border-right: 1px solid var(--line);
}
.wp-pain-cell:last-child { border-right: none; }
.wp-pain-cell.head {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  background: rgba(8, 12, 20, 0.3);
}
.wp-pain-cell strong { color: var(--white); font-weight: 400; }

/* 솔루션 블록 */
.wp-solution-list {
  display: flex;
  flex-direction: column;
  gap: 1.5px;
  margin: 1.5rem 0;
}
.wp-solution-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 1.4rem;
  padding: 1.4rem 1.4rem 1.4rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.wp-solution-item:first-child { border-top: 1px solid var(--line); }
.wp-sol-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(201, 146, 74, 0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
  background: var(--ink-deep);
  position: relative; z-index: 1;
}
.wp-sol-title {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.35rem;
  padding-top: 0.3rem;
  letter-spacing: 0.01em;
}
.wp-sol-title em { font-style: italic; color: var(--gold); }
.wp-sol-desc {
  font-family: var(--f-body);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.65;
}

/* ─── Fade-out 오버레이 (preview 하단) ───────────────────── */
.wp-fadeout {
  position: relative;
  /* 마지막 콘텐츠 바로 아래 위치 */
  height: 240px;
  margin-top: -180px;          /* 콘텐츠와 겹침 */
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(4, 6, 9, 0.7) 40%,
    rgba(4, 6, 9, 0.96) 75%,
    var(--ink-deep) 100%
  );
  z-index: 2;
}
/* 잠금 아이콘 */
.wp-fadeout-lock {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.wp-fadeout-lock-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(201, 146, 74, 0.1);
  border: 1px solid rgba(201, 146, 74, 0.25);
  display: flex; align-items: center; justify-content: center;
}
.wp-fadeout-lock-icon svg { width: 14px; height: 14px; color: var(--gold); opacity: 0.75; }
.wp-fadeout-lock-text {
  font-family: var(--f-body);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.65;
  white-space: nowrap;
}

/* ─── Download Section ───────────────────────────────────── */
.wp-download-section {
  padding: 5rem 0;
  border-top: 1px solid var(--line);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.wp-download-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(201, 146, 74, 0.05) 0%, transparent 65%);
  pointer-events: none;
}
.wp-download-inner {
  position: relative;
  z-index: 1;
}
.wp-download-heb {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--gold);
  opacity: 0.65;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.wp-download-title {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.9rem;
}
.wp-download-title em { font-style: italic; color: var(--gold); }
.wp-download-sub {
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 2.2rem;
}
.wp-download-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}
.wp-download-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-body);
  font-size: 0.68rem;
  font-weight: 300;
  color: var(--slate);
  letter-spacing: 0.06em;
}
.wp-download-meta-item svg { width: 14px; height: 14px; color: var(--gold); opacity: 0.6; flex-shrink: 0; }
.wp-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-deep);
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 2px;
  padding: 0.9rem 2rem;
  cursor: pointer;
  transition: background 0.25s ease;
  text-decoration: none;
}
.wp-download-btn:hover { background: var(--gold-lt); border-color: var(--gold-lt); }
.wp-download-btn svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ─── Access Modal (레이어) ──────────────────────────────── */
.wp-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1300;
  background: rgba(4, 6, 9, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out-expo);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.wp-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.wp-modal {
  width: 100%;
  max-width: 520px;
  background: #0A0F1A;
  border: 1px solid rgba(201, 146, 74, 0.2);
  border-radius: 4px;
  overflow: hidden;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.35s var(--ease-out-expo);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.wp-modal-overlay.open .wp-modal {
  transform: translateY(0) scale(1);
}
/* 모달 헤더 */
.wp-modal-head {
  padding: 1.4rem 1.8rem 1.2rem;
  border-bottom: 1px solid var(--line);
  background: rgba(13, 27, 46, 0.5);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.wp-modal-head-left { display: flex; align-items: center; gap: 0.9rem; }
.wp-modal-lock-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(201, 146, 74, 0.1);
  border: 1px solid rgba(201, 146, 74, 0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wp-modal-lock-icon svg { width: 16px; height: 16px; color: var(--gold); opacity: 0.85; }
.wp-modal-head-title {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.wp-modal-head-sub {
  font-family: var(--f-body);
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-top: 0.15rem;
  opacity: 0.75;
}
.wp-modal-close {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--slate);
  flex-shrink: 0;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.wp-modal-close:hover { border-color: rgba(245,240,232,0.2); color: var(--white); }
.wp-modal-close svg { width: 12px; height: 12px; }
/* 모달 바디 */
.wp-modal-body { padding: 1.8rem; }
.wp-modal-notice {
  padding: 1rem 1.2rem;
  border: 1px solid rgba(201, 146, 74, 0.18);
  background: rgba(201, 146, 74, 0.04);
  border-radius: 2px;
  margin-bottom: 1.6rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
.wp-modal-notice-icon { width: 15px; height: 15px; color: var(--gold); opacity: 0.7; flex-shrink: 0; margin-top: 1px; }
.wp-modal-notice-text {
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.6;
}
.wp-modal-notice-text strong { color: var(--white); font-weight: 400; }
/* 모달 라디오 선택 */
.wp-modal-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
}
.wp-modal-option {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.wp-modal-option:hover { border-color: rgba(201,146,74,0.25); background: rgba(201,146,74,0.03); }
.wp-modal-option.selected { border-color: rgba(201,146,74,0.4); background: rgba(201,146,74,0.06); }
.wp-modal-radio {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--slate);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s ease;
}
.wp-modal-option.selected .wp-modal-radio {
  border-color: var(--gold);
}
.wp-modal-option.selected .wp-modal-radio::after {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.wp-modal-option-label {
  font-family: var(--f-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--white-dim);
}
.wp-modal-option.selected .wp-modal-option-label { color: var(--white); }
.wp-modal-option-sub {
  font-family: var(--f-body);
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--slate);
  margin-top: 0.1rem;
}
/* 모달 이메일 입력 */
.wp-modal-form { display: flex; flex-direction: column; gap: 0.8rem; }
.wp-modal-input-row { display: grid; grid-template-columns: 1fr auto; gap: 0.6rem; }
.wp-modal-input {
  background: rgba(245, 240, 232, 0.04);
  border: 1px solid rgba(245, 240, 232, 0.14);
  border-radius: 2px;
  padding: 0.7rem 1rem;
  font-family: var(--f-body);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
}
.wp-modal-input:focus { border-color: rgba(201, 146, 74, 0.45); }
.wp-modal-input::placeholder { color: var(--slate); }
.wp-modal-input.error { border-color: rgba(220, 38, 38, 0.5); }
.wp-modal-submit {
  background: var(--gold);
  border: none;
  border-radius: 2px;
  padding: 0.7rem 1.2rem;
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-deep);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
  flex-shrink: 0;
}
.wp-modal-submit:hover { background: var(--gold-lt); }
.wp-modal-note {
  font-family: var(--f-body);
  font-size: 0.62rem;
  font-weight: 300;
  color: var(--slate);
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
/* 모달 성공 */
.wp-modal-success {
  display: none;
  padding: 1.5rem 0 0.5rem;
  text-align: center;
}
.wp-modal-success.show { display: block; animation: fade-up 0.5s var(--ease-out-expo); }
.wp-modal-success-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(110, 231, 183, 0.1);
  border: 1px solid rgba(110, 231, 183, 0.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.wp-modal-success-icon svg { width: 20px; height: 20px; color: #6EE7B7; }
.wp-modal-success-title {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.wp-modal-success-sub {
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.6;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .wp-page         { padding: 0 2rem; }
  .wp-def-grid     { grid-template-columns: 1fr; gap: 1.5px; }
  .wp-data-grid    { grid-template-columns: 1fr 1fr; }
  .wp-pain-row     { grid-template-columns: 1fr; }
  .wp-pain-cell.head { display: none; }
  .wp-pain-cell    { border-right: none; border-bottom: 1px solid var(--line); padding: 0.7rem 1rem; }
  .wp-pain-cell:last-child { border-bottom: none; }
  .wp-pain-row:first-child { display: none; } /* 헤더 행 숨김 */
}
@media (max-width: 768px) {
  .wp-page         { padding: 0 1.5rem; }
  .wp-cover        { padding: 4.5rem 0 4rem; }
  .wp-cover-heb    { display: none; }
  .wp-cover-attrs  { gap: 1.2rem; }
  .wp-data-grid    { grid-template-columns: 1fr 1fr; }
  .wp-modal        { margin: 0; }
  .wp-modal-input-row { grid-template-columns: 1fr; }
  .wp-modal-submit { width: 100%; padding: 0.75rem; }
  .wp-def-section,
  .wp-preview-section,
  .wp-download-section { padding-top: 4rem; }
}
