/* Legal/text pages: privacy, terms, about, faq */

.text-page {
  text-align: left;
  padding: 2rem 0;
}

.text-page .page-title {
  font-size: 2.5rem;
  font-weight: 600;
}

.text-page .last-updated {
  color: var(--placeholder-color);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.text-page section {
  margin-bottom: 2.5rem;
}

.text-page h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 2rem;
  color: var(--text-color);
}

.text-page h3 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
  color: var(--text-color);
}

.text-page p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.text-page ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.text-page li {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.text-page a {
  color: var(--text-color);
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.text-page a:hover {
  opacity: 0.7;
}

.text-page strong {
  font-weight: 600;
}

@media (max-width: 768px) {
  .text-page {
    padding: 1rem 0;
  }

  .text-page h1 {
    font-size: 2rem;
  }

  .text-page h2 {
    font-size: 1.5rem;
  }

  .text-page h3 {
    font-size: 1.1rem;
  }

  .text-page p,
  .text-page li {
    font-size: 0.95rem;
  }
}
