/* Privacy Policy page */
.privacy-policy-page {
  padding: 2rem 1rem 4rem;
  max-width: 680px;
  margin: 0 auto;
  font-weight: 400;
}

.privacy-policy__title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.privacy-policy__updated {
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.8;
  margin-bottom: 2.5rem;
  color: var(--secondary-color);
}

.privacy-policy__prose {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--secondary-color);
}

.privacy-policy__actions {
  margin-bottom: 2rem;
}

.privacy-policy__preferences-button {
  padding: 1rem 1.5rem;
  border-radius: 20px;
  border: 2px solid transparent;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  font-family: "Rubik", sans-serif;
  font-size: 0.96rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease,
    border-color 0.2s ease;
}

.privacy-policy__preferences-button:hover {
  background-color: transparent;
  border-color: var(--primary-color);
}

.privacy-policy__preferences-button:active {
  transform: scale(0.98);
}

.privacy-policy__prose p {
  margin-bottom: 1rem;
}

.privacy-policy__prose h2 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--secondary-color);
  margin-top: 2.25rem;
  margin-bottom: 0.6rem;
}

.privacy-policy__prose h2:first-of-type {
  margin-top: 0;
}

.privacy-policy__prose ul {
  margin: 0 0 1rem;
  padding-left: 1.4rem;
}

.privacy-policy__prose li {
  margin-bottom: 0.6rem;
}

/* Only labels at start of list items get medium weight, not full bold */
.privacy-policy__prose li strong {
  font-weight: 500;
}

.privacy-policy__prose a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.privacy-policy__prose a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .privacy-policy__title {
    font-size: 1.75rem;
  }

  .privacy-policy__preferences-button {
    width: 100%;
  }

  .privacy-policy__prose h2 {
    font-size: 1.1rem;
  }
}

@media (hover: none) {
  .privacy-policy__preferences-button:hover {
    background-color: var(--primary-color);
    border-color: transparent;
  }
}
