/* ════════════════════════════════════════════════════
   BASIC PAGE — basic-page.css
   Used for: Privacy Policy, Terms, About, etc.
   ════════════════════════════════════════════════════ */

.basic-page {
  max-width: 740px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
}

.basic-page-content {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

body:has(article.basic-page) h1 {
  max-width: 740px !important;
  margin: 0 auto !important;
}

/* ── HEADINGS ── */
.basic-page-content h2,
.basic-page-content h3,
.basic-page-content h4 {
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 2rem 0 0.5rem;
  color: #1a1a1a;
}

.basic-page-content h2 { font-size: 1.35rem; }
.basic-page-content h3 { font-size: 1.1rem; }

/* ── PARAGRAPHS ── */
.basic-page-content p {
  margin: 0 0 1.1rem;
}

/* ── STRONG ── */
.basic-page-content strong {
  font-weight: 700;
  color: #1a1a1a;
}

/* ── LINKS ── */
.basic-page-content p a {
  color: #e91e8c;
  text-decoration: none;
  border-bottom: 1px solid rgba(233, 30, 140, 0.3);
  transition: border-color 0.2s;
}

.basic-page-content p a:hover {
  border-color: #e91e8c;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .basic-page {
    padding: 1.5rem 0.75rem 3rem;
  }

  .basic-page-content {
    font-size: 0.95rem;
  }
}