/* privacy.css — 개인정보처리방침 전용 (애드포유 디자인 토큰 기반) */

/* 헤더: privacy 페이지는 히어로가 없으므로 네이비 솔리드 바로 고정 */
.page-privacy header {
  position: relative;
  height: 90px;
  background: var(--main-color);
}
.page-privacy nav ul li a { color: #fff; }
.page-privacy nav ul li a.dark-nav { color: #fff; }

/* 페이지 타이틀 */
.policy-hero {
  background: #f5f7fb;
  border-bottom: 1px solid #e5e8ef;
  padding: 56px 20px 44px;
  text-align: center;
}
.policy-hero h1 {
  font-size: 34px;
  font-weight: 800;
  color: var(--main-color);
  margin-bottom: 10px;
}
.policy-hero p { font-size: 16px; color: #5b6472; }

/* 본문 */
.policy-wrap { max-width: 900px; margin: 0 auto; padding: 48px 24px 80px; }
.policy-intro {
  font-size: 15px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e5e8ef;
}
.policy-section { margin-bottom: 40px; }
.policy-section h2 {
  font-size: 20px;
  font-weight: 800;
  color: #1a1f2e;
  margin-bottom: 14px;
  padding-left: 12px;
  border-left: 4px solid var(--main-color);
}
.policy-section p { font-size: 15px; color: #555; line-height: 1.9; margin-bottom: 10px; }
.policy-section ul { margin: 0 0 10px; padding-left: 20px; }
.policy-section li { font-size: 15px; color: #555; line-height: 1.9; margin-bottom: 6px; }
.policy-section strong { color: #1a1f2e; font-weight: 700; }

.policy-highlight {
  background: rgba(1, 48, 136, 0.05);
  border: 1px solid rgba(1, 48, 136, 0.18);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 15px;
  color: #1a1f2e;
  line-height: 1.8;
}
.policy-highlight strong { color: var(--main-color); }

.policy-table { width: 100%; border-collapse: collapse; margin: 4px 0 8px; font-size: 14.5px; }
.policy-table th, .policy-table td {
  border: 1px solid #e5e8ef;
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}
.policy-table th { background: #f5f7fb; font-weight: 700; color: #1a1f2e; white-space: nowrap; }
.policy-table td { color: #555; }
.policy-table td[data-label="구분"] { font-weight: 700; color: #1a1f2e; }

.policy-contact {
  background: #f5f7fb;
  border: 1px solid #e5e8ef;
  border-radius: 12px;
  padding: 22px 24px;
}
.policy-contact p { margin-bottom: 6px; font-size: 15px; color: #555; }
.policy-contact a { color: var(--main-color); text-decoration: none; }

.policy-effective {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #e5e8ef;
  font-size: 14px;
  color: #888;
  line-height: 1.9;
}

@media (max-width: 600px) {
  .policy-hero h1 { font-size: 26px; }
  .policy-section h2 { font-size: 18px; }

  /* 표 → 카드형 (헤더 숨기고 셀마다 항목명 표시) */
  .policy-table thead { display: none; }
  .policy-table, .policy-table tbody { display: block; width: 100%; }
  .policy-table tr {
    display: block;
    border: 1px solid #e5e8ef;
    border-radius: 8px;
    padding: 8px 12px;
    margin-bottom: 10px;
  }
  .policy-table th, .policy-table td {
    display: block;
    width: 100%;
    border: none;
    padding: 4px 0;
    white-space: normal;
  }
  .policy-table th { background: transparent; }
  .policy-table td[data-label]::before {
    content: attr(data-label);
    display: block;
    font-weight: 700;
    color: #1a1f2e;
    font-size: 12px;
    margin-bottom: 2px;
  }
}
