/* Privacy policy page styles. Shared source; run sync.sh after editing. */

.pp-page {
  padding-top: calc(var(--nav-h) + 48px);
  padding-bottom: 80px;
}

.pp-layout {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.pp-main {
  flex: 1;
  min-width: 0;
}

.pp-sidebar {
  width: 260px;
  flex-shrink: 0;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.pp-header {
  margin-bottom: 20px;
}

.pp-header .pill {
  margin-bottom: 18px;
}

.pp-header .title-lg {
  margin-bottom: 16px;
}

.pp-section {
  margin-bottom: 14px;
  scroll-margin-top: calc(var(--nav-h) + 24px);
}

.pp-section-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}

.pp-section p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 10px;
}

.pp-section p:last-child {
  margin-bottom: 0;
}

.pp-bullets {
  margin-bottom: 0;
}

.pp-bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 6px 0;
}

.pp-bullet-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--on-bg);
  flex-shrink: 0;
  margin-top: 8px;
}

.pp-bullet p {
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.pp-sub {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  margin-top: 14px;
}

.toc-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
}

.toc-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  background: none;
  transition: color 0.18s, background 0.18s;
  cursor: pointer;
  margin-bottom: 4px;
}

.toc-btn:hover {
  color: var(--on-bg);
  background: var(--surface-bg);
}

.toc-btn.is-active {
  color: var(--bg);
  background: var(--on-bg);
}

.toc-mobile {
  margin-bottom: 20px;
}

@media (max-width: 1119px) {
  .pp-sidebar {
    width: 220px;
  }
}

@media (max-width: 759px) {
  .pp-layout {
    flex-direction: column;
  }

  .pp-sidebar {
    display: none;
  }

  .toc-mobile {
    display: block;
  }
}

@media (min-width: 760px) {
  .toc-mobile {
    display: none;
  }
}
