/* === Bridge Digital — legal page styles ====================================
   Loaded only by privacy-policy / terms-and-conditions / cookie-policy.
   Long-form text layout: an amber-eyebrowed hero, then a single-column
   reading column with amber-bordered section headings.
   ----------------------------------------------------------------------- */

.legal-hero {
  padding: 160px 6vw 60px;
  border-bottom: 1px solid var(--border);
  background: var(--gray);
}
.legal-inner {
  max-width: 820px;
  margin: 0 auto;
  width: 100%;
}

.legal-eyebrow {
  font-family: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.legal-eyebrow::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--yellow);
}

.legal-hero h1 {
  font-family: 'Onest', sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 18px;
  font-weight: 700;
}

.legal-updated {
  color: var(--muted);
  font-size: 14px;
  font-family: 'Geist Mono', ui-monospace, monospace;
  letter-spacing: 0.5px;
}

.legal-content {
  padding: 64px 6vw 96px;
}
.legal-content h2 {
  font-family: 'Onest', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin: 48px 0 16px;
  padding-left: 14px;
  border-left: 3px solid var(--yellow);
  line-height: 1.3;
}
.legal-content h2:first-child { margin-top: 0; }

.legal-content h3 {
  font-family: 'Onest', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin: 28px 0 10px;
}

.legal-content p {
  font-size: 16px;
  line-height: 1.75;
  color: #2a3f4d;
  margin-bottom: 16px;
}

.legal-content ol,
.legal-content ul {
  margin: 12px 0 18px 28px;
  padding: 0;
}
.legal-content ol li,
.legal-content ul li {
  font-size: 16px;
  line-height: 1.75;
  color: #2a3f4d;
  margin-bottom: 10px;
  padding-left: 6px;
}
.legal-content ol ol {
  margin-top: 8px;
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(246,146,32,0.5);
  text-underline-offset: 3px;
  transition: color 0.2s, text-decoration-color 0.2s;
}
.legal-content a:hover {
  color: var(--yellow);
  text-decoration-color: var(--yellow);
}

.legal-content strong { color: var(--white); font-weight: 600; }

@media (max-width: 600px) {
  .legal-hero { padding-top: 130px; }
  .legal-content h2 { font-size: 20px; }
}
