/*
 * SalamXP PDPA page — styling for the legal-entity credit block only.
 *
 * The rest of the page content (h2/h3/ul/table) renders inside the theme's `.prose` wrapper
 * (Tailwind Typography), which already has real heading sizes/table styles compiled into
 * assets/css/app.css (confirmed live -- .prose h1/h2/h3 styled, see content-typography.css's own
 * header comment for how that was found). Only `.sx-pdpa-entity` is bespoke markup this plugin
 * introduces, so -- same reason as every other hand-written CSS file in this directory -- it needs
 * its own rules; Tailwind's build never scanned this file's class names.
 */
.sx-pdpa-entity {
  margin-top: 2rem;
  padding: 24px 28px;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 1px solid #a7f3d0;
  border-radius: 1.25rem;
}
.sx-pdpa-entity h4 {
  font-size: 0.6875rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #059669;
  margin: 0 0 12px;
}
.sx-pdpa-entity p {
  font-size: 13.5px;
  line-height: 1.7;
  color: #1f2937;
  margin: 0 0 10px;
}
.sx-pdpa-entity .sx-pdpa-en {
  color: #6b7280;
  font-size: 12.5px;
}
.sx-pdpa-entity .sx-pdpa-certs {
  font-size: 12px;
  color: #059669;
  font-weight: 600;
}
.sx-pdpa-entity .sx-pdpa-copyright {
  font-size: 11.5px;
  color: #6b7280;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #a7f3d0;
}
