/* ============================================================
   PRIVACY POLICY PAGE — PHONE (default, < 768px)
   ============================================================ */

/* ---- HEADER ---- */
.pp-header {
  padding: 82px 15px 30px;
}

.pp-title {
  font-family: 'Komrile', 'Georgia', serif;
  font-weight: 400;
  font-size: 45px;
  line-height: 0.95;
  color: var(--merlot);
  font-feature-settings: 'liga' 0;
  font-style: normal;
}

/* ---- CONTENT ---- */
.pp-content {
  display: flex;
  flex-direction: column;
  padding: 0 15px 0;
}

.pp-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.pp-section-last {
  gap: 0;
}

.pp-section-inner {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pp-section-label {
  font-family: 'PP Neue Montreal', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--merlot);
  width: 175px;
}

.pp-section-text {
  display: flex;
  flex-direction: column;
  gap: 40px;
  font-family: 'PP Neue Montreal', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: var(--merlot);
}

.pp-section-text p {
  margin: 0;
  overflow-wrap: break-word;
}

.pp-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 15px;
}

/* ============================================================
   TABLET  (768px – 1199px)
   ============================================================ */
@media (min-width: 768px) {
  .pp-header {
    padding: 107px 25px 50px;
  }

  .pp-title {
    font-size: 70px;
  }

  .pp-content {
    padding: 0 25px 140px;
  }

  .pp-section {
    gap: 50px;
  }

  .pp-section-inner {
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
  }

  .pp-section-label {
    flex: 0 0 175px;
    padding-top: 2px;
    width: auto;
  }

  .pp-section-text {
    flex: 1 1 0;
    max-width: 570px;
    min-width: 0;
    font-size: 14px;
    gap:12px

  }

  .pp-divider {
    margin-bottom: 50px;
  }
}

/* ============================================================
   DESKTOP  (≥ 1200px)
   ============================================================ */
@media (min-width: 1200px) {
  .pp-header {
    padding: 113px 40px 60px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
  }

  .pp-title {
    font-size: 100px;
  }

  .pp-content {
    padding: 0 40px 200px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
  }

  .pp-section {
    gap: 80px;
  }

  .pp-section-inner {
    gap: 0;
  }

  .pp-section-label {
    flex: 0 0 175px;
  }

  /* push text to the right — matches Figma: ~950px offset on 1600px canvas */
  .pp-section-text {
    flex: 0 0 570px;
    margin-left: auto;
    font-size: 16px;
  }

  .pp-divider {
    margin-bottom: 20px;
  }
  .pp-content .page-inner {
    gap: 20px;
  }
}
