/* LEGAL HERO (navy banner above legal prose) */
.legal-hero {
  background: var(--navy);
  padding: 140px 48px 64px;
}
.legal-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.legal-hero-label {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.legal-hero h1 {
  font-weight: 300;
  font-size: 40px;
  line-height: 1.15;
  color: var(--white);
  max-width: 800px;
}

/* LEGAL CONTENT (typography for ported prose using existing class structure) */
.legal-content {
  background: var(--white);
  padding: 80px 48px;
}
.legal-content-inner {
  max-width: 820px;
  margin: 0 auto;
}
.box-block-wrap-group {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.box-block-wrap {
  border-bottom: 1px solid rgba(137, 136, 123, 0.12);
  padding-bottom: 32px;
}
.box-block-wrap:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.box-block-wrap_header {
  margin-bottom: 16px;
}
.box-block-wrap_title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 20px;
  color: var(--charcoal);
  line-height: 1.3;
  letter-spacing: 0.01em;
  text-transform: none;
}
.box-block-wrap-body {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--warm-gray);
  line-height: 1.7;
}
.box-block-wrap-body p {
  margin-bottom: 16px;
}
.box-block-wrap-body p:last-child {
  margin-bottom: 0;
}
.box-block-wrap-body strong,
.box-block-wrap-body b {
  color: var(--charcoal);
  font-weight: 500;
}
.box-block-wrap-body a {
  color: var(--blue);
  border-bottom: 1px solid rgba(0, 119, 250, 0.25);
  transition: border-color 0.2s;
}
.box-block-wrap-body a:hover {
  border-color: var(--blue);
}
.box-block-wrap-body h5 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--charcoal);
  margin: 16px 0 8px;
}
.box-block-wrap-body ol,
.box-block-wrap-body ul {
  margin: 0 0 16px 24px;
  padding: 0;
}
.box-block-wrap-body li {
  margin-bottom: 8px;
  line-height: 1.65;
}
.box-block-wrap-body li:last-child {
  margin-bottom: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .legal-hero {
    padding: 100px 24px 48px;
  }
  .legal-hero h1 {
    font-size: 28px;
  }
  .legal-content {
    padding: 56px 24px;
  }
  .box-block-wrap_title {
    font-size: 18px;
  }
  .box-block-wrap-body {
    font-size: 16px;
  }
}
