/* Phase 2N-I trust and policy conversion bridge.
   Static CSS only: no route, backend, form, portal, payment, or vendor changes. */

.legal-page {
  max-width: 1080px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: clamp(44px, 7vw, 68px);
  line-height: 0.98;
}

.legal-page h2 {
  margin-top: 34px;
}

.policy-bridge {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: 40px 0 32px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-left: 6px solid rgba(22, 164, 119, 0.55);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(14, 31, 36, 0.08);
}

.policy-bridge h2 {
  margin-top: 0;
  margin-bottom: 10px;
}

.policy-bridge p {
  max-width: 720px;
  margin-bottom: 0;
}

.policy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.policy-note {
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid #f0b7a4;
  border-radius: 14px;
  background: #fff8f5;
}

.policy-note p {
  margin: 0;
  color: #6b2f20;
  font-weight: 750;
}

@media (max-width: 780px) {
  .policy-bridge {
    grid-template-columns: 1fr;
  }

  .policy-actions {
    justify-content: flex-start;
  }

  .policy-actions .button {
    width: 100%;
  }
}
