/**
 * OUR Legal Page Styles
 *
 * Styling for privacy policy, terms of service, and other legal pages
 * using the OUR theme design tokens.
 */

/* Legal header */
.our-legal-header {
  background: #fff;
  border-bottom: 1px solid var(--our-color-gray-200);
  padding: 0.75rem 0;
}

.our-legal-header__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.our-legal-header__back {
  font-size: 0.875rem;
  color: var(--our-color-primary);
  text-decoration: none;
}

.our-legal-header__back:hover {
  text-decoration: underline;
}

/* Legal page wrapper */
.our-legal-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.our-legal-container {
  background: #fff;
  border-radius: var(--our-radius-lg, 12px);
  border: 1px solid var(--our-color-gray-200);
  padding: 2.5rem;
}

@media (max-width: 768px) {
  .our-legal-wrapper {
    padding: 1.5rem 1rem 3rem;
  }
  .our-legal-container {
    padding: 1.5rem;
  }
}

/* Title */
.our-legal-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--our-color-gray-900);
  margin: 0 0 0.5rem;
}

/* Updated date */
.our-legal-updated {
  font-size: 0.875rem;
  color: var(--our-color-gray-500);
  margin: 0 0 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--our-color-gray-200);
}

/* Legal content typography */
.our-legal-content h2 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--our-color-gray-900);
  margin: 2rem 0 0.75rem;
}

.our-legal-content h2:first-child {
  margin-top: 0;
}

.our-legal-content h3 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--our-color-gray-800);
  margin: 1.5rem 0 0.5rem;
}

.our-legal-content p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--our-color-gray-700);
  margin: 0 0 1rem;
}

.our-legal-content ul,
.our-legal-content ol {
  margin: 0.5rem 0 1rem 1.5rem;
  padding: 0;
}

.our-legal-content li {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--our-color-gray-700);
  margin-bottom: 0.35rem;
}

.our-legal-content a {
  color: var(--our-color-primary);
  text-decoration: underline;
}

.our-legal-content a:hover {
  color: var(--our-color-primary-dark);
}

.our-legal-content strong {
  font-weight: 600;
  color: var(--our-color-gray-800);
}

/* Legal links at bottom */
.our-legal-links {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--our-color-gray-200);
  text-align: center;
  font-size: 0.875rem;
}

.our-legal-links a {
  color: var(--our-color-primary);
  text-decoration: none;
}

.our-legal-links a:hover {
  text-decoration: underline;
}

.our-legal-links__sep {
  margin: 0 0.75rem;
  color: var(--our-color-gray-400);
}

/* Legal footer */
.our-legal-footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.8125rem;
  color: var(--our-color-gray-500);
}
