/* ==========================================================================
   개인정보처리방침 페이지 (privacy.html) 전용 스타일
   landing.css의 다크 네이비 테마를 그대로 계승
   ========================================================================== */

#pv-main {
  padding: 56px 0 80px;
}

.pv-container {
  max-width: 760px;
}

.pv-title {
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 8px;
}

.pv-updated {
  font-size: 13px;
  color: var(--lp-text-tertiary);
  margin-bottom: 28px;
}

.pv-intro {
  font-size: 14px;
  line-height: 1.8;
  color: var(--lp-text-secondary);
  margin-bottom: 14px;
}

.pv-section {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--lp-border-soft);
}

.pv-section h2 {
  font-size: 16.5px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--lp-text-primary);
}

.pv-section p {
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--lp-text-secondary);
  margin-bottom: 10px;
}

.pv-list {
  margin: 8px 0 10px 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pv-list li {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--lp-text-secondary);
  list-style: disc;
}

.pv-table {
  width: 100%;
  margin: 12px 0;
  border-collapse: collapse;
  font-size: 13px;
  background: var(--lp-bg-secondary);
  border: 1px solid var(--lp-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.pv-table th, .pv-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--lp-border-soft);
  color: var(--lp-text-secondary);
  vertical-align: top;
}

.pv-table thead th {
  background: var(--lp-bg-tertiary);
  color: var(--lp-text-primary);
  font-weight: 700;
  font-size: 12.5px;
}

.pv-table tbody tr:last-child td {
  border-bottom: none;
}

.pv-contact-box {
  margin-top: 8px;
  padding: 16px 18px;
  background: var(--lp-bg-secondary);
  border: 1px solid var(--lp-border);
  border-radius: var(--radius-md);
}

.pv-contact-box p {
  font-size: 13px;
  color: var(--lp-text-secondary);
  margin-bottom: 4px;
}

.pv-contact-box a {
  color: var(--lp-cyan);
  text-decoration: underline;
}

.pv-footnote {
  margin-top: 40px;
  font-size: 12px;
  line-height: 1.7;
  color: var(--lp-text-tertiary);
  padding-top: 20px;
  border-top: 1px dashed var(--lp-border);
}

/* ==========================================================================
   반응형
   ========================================================================== */
@media (max-width: 760px) {
  #pv-main { padding: 36px 0 60px; }
  .pv-title { font-size: 24px; }
  .pv-table { font-size: 12px; }
  .pv-table th, .pv-table td { padding: 10px 10px; }
}
