/* =============================================
   SMIKKIE — LEGAL & TEXT PAGES CSS
   ============================================= */

.legal-header {
  background: var(--purple-light);
  padding: 60px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.legal-header h1 {
  font-size: 42px;
  font-weight: 900;
  color: var(--purple);
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.legal-header p {
  font-size: 16px;
  color: var(--gray);
  font-weight: 600;
}

.legal-content {
  padding: 60px 0 80px;
}
.legal-content__inner {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.legal-text h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  margin: 40px 0 16px;
}
.legal-text h2:first-child {
  margin-top: 0;
}
.legal-text h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  margin: 24px 0 12px;
}
.legal-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 16px;
}
.legal-text ul {
  margin-bottom: 24px;
  padding-left: 24px;
}
.legal-text li {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 8px;
  position: relative;
}
.legal-text li::before {
  content: "•";
  color: var(--purple);
  font-weight: bold;
  position: absolute;
  left: -16px;
}
.legal-text a {
  color: var(--purple);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(91,45,142,0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--transition);
}
.legal-text a:hover {
  text-decoration-color: var(--purple);
}

@media (max-width: 768px) {
  .legal-header { padding: 40px 0; }
  .legal-header h1 { font-size: 32px; }
  .legal-content { padding: 40px 0; }
  .legal-content__inner { padding: 24px; border-radius: var(--radius-md); }
  .legal-text h2 { font-size: 20px; }
}
