/* assets/css/content-page.css
   Shared content/prose page system for legal and info pages. */

.content-page-shell {
  min-height: 100vh;
  padding-top: 96px;
  padding-bottom: 56px;
}

.content-page-card {
  border-radius: 18px;
  border: 1px solid var(--cizgi-color-border-soft, rgba(148, 163, 184, 0.3));
  box-shadow: var(--cizgi-shadow-md, 0 18px 40px rgba(0, 0, 0, 0.3));
}

.content-page-prose {
  max-width: 72ch;
}

.content-page-prose p,
.content-page-prose li,
.content-page-prose td,
.content-page-prose th {
  line-height: 1.72;
}

/* Legal pages mapping */
body:not(.page-about) .legal-page-wrapper {
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 60px;
}

body:not(.page-about) .legal-card {
  border-radius: 18px;
}

body:not(.page-about) .legal-card p,
body:not(.page-about) .legal-card li,
body:not(.page-about) .legal-card td,
body:not(.page-about) .legal-card th {
  line-height: 1.72;
}

/* About page mapping */
.page-about .about-content-section .glass-card {
  border-radius: 18px;
}

.page-about .about-prose {
  max-width: 72ch;
}

@media (max-width: 767.98px) {
  .content-page-shell {
    padding-top: 84px;
    padding-bottom: 28px;
  }

  .content-page-card {
    border-radius: 14px;
  }
}
