/* ============================================================
   AUXIONMARKETS — Legal / Inner Page Shared Styles
   ============================================================ */

.legal-page {
  padding: 120px 0 80px 0;
  min-height: 100vh;
  background: var(--bg-primary);
}

.legal-page .container {
  max-width: 860px;
}

.legal-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.legal-breadcrumb a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition-fast);
}
.legal-breadcrumb a:hover { text-decoration: underline; }
.legal-breadcrumb .bc-sep {
  color: var(--text-muted);
  opacity: 0.4;
}

.legal-hero {
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-light);
}
.legal-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.legal-hero .legal-updated {
  font-size: 13px;
  color: var(--text-muted);
}
.legal-hero .legal-updated strong {
  color: var(--text-dark);
  font-weight: 600;
}

.legal-body h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 48px 0 16px 0;
  letter-spacing: -0.02em;
}
.legal-body h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 32px 0 12px 0;
}
.legal-body p {
  font-size: 15px;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 20px;
}
.legal-body ul,
.legal-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.legal-body li {
  font-size: 15px;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 8px;
}
.legal-body strong {
  color: var(--text-dark);
  font-weight: 600;
}

.legal-body .highlight-box {
  background: var(--bg-secondary);
  border-left: 4px solid var(--accent);
  padding: 24px 28px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 32px 0;
}
.legal-body .highlight-box p {
  margin-bottom: 0;
  font-size: 14px;
}

.legal-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}
.legal-body th {
  text-align: left;
  background: var(--bg-secondary);
  color: var(--text-dark);
  padding: 14px 16px;
  font-weight: 600;
  border-bottom: 2px solid var(--border-light);
}
.legal-body td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-light);
  color: #64748b;
}

/* Contact page specific */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
}
.contact-card {
  background: var(--bg-secondary);
  border-radius: 16px;
  padding: 40px 32px;
  border: 1px solid var(--border-light);
  transition: transform 0.3s ease;
}
.contact-card:hover { transform: translateY(-4px); }
.contact-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 16px 0 12px 0;
}
.contact-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}
.contact-card .contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #d4a843);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.contact-card .contact-icon svg { width: 24px; height: 24px; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .legal-page { padding: 100px 0 60px 0; }
}
