/* public/css/legal.css — Terms & Privacy pages */

body.legal-body { min-height: 100vh; }

.legal-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 100px 24px 60px;
}

/* ---- Header ---- */
.legal-header {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}

.legal-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.legal-header h1 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.legal-meta {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
}
.legal-meta strong {
  color: var(--text);
  font-weight: 600;
}

/* ---- Sections ---- */
.legal-section {
  margin-bottom: 32px;
}

.legal-section h2 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--text);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.legal-section h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-top: 20px;
  margin-bottom: 10px;
}

.legal-section p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-section ul {
  margin: 0 0 16px 0;
  padding-left: 22px;
}

.legal-section li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 6px;
}

.legal-section strong {
  color: var(--text);
  font-weight: 600;
}

.legal-section code {
  font-family: var(--font-mono);
  font-size: 13px;
  background: var(--bg-3);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--green);
}

/* ---- Footer note (di dalam konten) ---- */
.legal-footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.legal-footer p {
  font-size: 12px;
  color: var(--text-dim);
  margin: 0 0 4px 0;
}

/* ---- Responsive ---- */
@media (max-width: 640px) {
  .legal-main { padding: 80px 20px 40px; }
  .legal-header h1 { font-size: 30px; }
  .legal-section h2 { font-size: 17px; }
  .legal-section p,
  .legal-section li { font-size: 14px; }
}