/* /public/assets/css/legal/legal.css */

/* ── Legal ───────────────────────────────────────── */
.card-legal {
  padding: 40px;
}
.legal-section {
  margin-bottom: 10px;
}
.legal-section h2 {
  margin-bottom: 20px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
}
.legal-section h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}
.legal-section p {
  margin-bottom: 12px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.legal-section-highlight {
  margin-bottom: 30px;
  padding: 15px 20px;
  border-radius: 6px;
  background: var(--border-color);
  opacity: 0.85;
}
.legal-section-highlight h2 {
  margin-bottom: 8px;
}
.divider-line {
  height: 1px;
  margin: 30px 0;
  border: 0;
  background: var(--border-color);
}
.legal-contact-table {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 20px;
  width: 100%;
  margin-top: 10px;
}
.legal-contact-label {
  white-space: nowrap;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-secondary);
}
.legal-contact-value {
  font-weight: 600;
  line-height: 1.4;
}
.legal-content {
  margin-bottom: 20px;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 950px) {
  .card-legal {
    padding: 22px;
  }
  .legal-section h2 {
    font-size: 1.25rem;
  }
  .legal-section-highlight {
    padding: 12px 15px;
  }
  .check-list li {
    padding-left: 24px;
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .card-legal {
    padding: 20px 15px;
  }
  .legal-section h2 {
    font-size: 1.15rem;
  }
}
@media (max-width: 360px) {
  .legal-contact-table {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .legal-contact-label {
    padding-top: 4px;
  }
}
