/* bill-of-rights.css — Creator Bill of Rights page styles.
   Owns: hero, rights cards, commitments, enforcement sections.
   Does NOT own: sidebar, app-shell layout (see sidebar.css). */

/* ── Page container ────────────────────────────────────── */
.bor-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

/* ── Hero ───────────────────────────────────────────────── */
.bor-hero {
  text-align: center;
  margin-bottom: 3.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #2A2A2A;
}
.bor-badge {
  display: inline-block;
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255,77,109,0.08);
  color: #FF4D6D;
  border: 1px solid rgba(255,77,109,0.25);
  border-radius: 4px;
  padding: 4px 12px;
  margin-bottom: 1.5rem;
}
.bor-title {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 0.75rem;
}
.bor-subtitle {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #FF4D6D;
  margin: 0 0 1.5rem;
}
.bor-intro {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #E0E0E0;
  max-width: 640px;
  margin: 0 auto;
}
.bor-intro strong {
  color: #fff;
}

/* ── Rights cards ──────────────────────────────────────── */
.bor-rights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.bor-card {
  background: #1A1A1A;
  border-left: 4px solid #FF4D6D;
  border-radius: 8px;
  padding: 2rem 2rem 2rem 2.25rem;
  position: relative;
}
.bor-card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FF4D6D;
  color: #000;
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.bor-card h3 {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.75rem;
  line-height: 1.3;
}
.bor-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #E0E0E0;
  margin: 0;
}

/* ── Divider ───────────────────────────────────────────── */
.bor-divider {
  height: 1px;
  background: #2A2A2A;
  border: none;
  margin: 0 0 3.5rem;
}

/* ── Commitments section ───────────────────────────────── */
.bor-commitments {
  margin-bottom: 3.5rem;
}
.bor-commitments h2 {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 1.5rem;
}
.bor-commit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.bor-commit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #E0E0E0;
  padding: 0.75rem 1rem;
  background: #1A1A1A;
  border-radius: 6px;
}
.bor-commit-list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FF4D6D;
  flex-shrink: 0;
  margin-top: 0.5rem;
}

/* ── Enforcement section ───────────────────────────────── */
.bor-enforcement {
  background: #1A1A1A;
  border-radius: 10px;
  padding: 2.5rem;
  border: 1px solid rgba(255,77,109,0.15);
}
.bor-enforcement h2 {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 1rem;
}
.bor-enforcement p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #E0E0E0;
  margin: 0 0 1.25rem;
}
.bor-enforcement-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.bor-enforcement-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: rgba(255,77,109,0.1);
  color: #FF4D6D;
  border: 1px solid rgba(255,77,109,0.3);
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s;
}
.bor-enforcement-link:hover {
  background: rgba(255,77,109,0.18);
  border-color: rgba(255,77,109,0.5);
}
.bor-enforcement-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 640px) {
  .bor-page {
    padding: 2rem 1rem 3rem;
  }
  .bor-card {
    padding: 1.5rem 1.25rem 1.5rem 1.5rem;
  }
  .bor-enforcement {
    padding: 1.5rem;
  }
  .bor-enforcement-links {
    flex-direction: column;
  }
  .bor-enforcement-link {
    justify-content: center;
  }
}
