/* ==========================================================================
   Trust Center Clone Test (post 15560, clone of live post 3311).
   Shared shell (hero/breadcrumb/accordion) lives in
   inc/legal-page/assets/legal-page.css — this file only covers this page's
   own content section (.tc-*) and CTA spacing.
   ========================================================================== */

.tc-page { overflow-x: clip; }

.tc-body {
  background: #fff;
  padding: 72px 0;
}
@media (max-width: 767px) {
  .tc-body { padding: 48px 0; }
}

/* Elementor's typography_text_transform:capitalize on every H2 widget —
   applied via CSS so stored text (including "Trust and Compliance
   Document"'s lowercase "and") stays byte-identical to live's source. */
.tc-page .tc-h2 {
  font-family: 'Public Sans', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: capitalize;
  color: #233963;
  margin: 0 0 24px;
}
.tc-page .tc-h2--spaced { margin-top: 48px; }
@media (max-width: 767px) {
  .tc-page .tc-h2 { font-size: 26px; }
}

/* Color confirmed against live's actual computed style on the sibling
   Cookie Preferences page (getComputedStyle → rgb(30,46,76) = #1E2E4C),
   which also matches the Figma design's body-text token. */
.tc-intro {
  font-family: 'Public Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #1E2E4C;
  max-width: 78ch;
  margin-bottom: 40px;
}
.tc-intro p { margin: 0; }

/* Certification badge strip embedded inside the "Compliance" accordion
   item's own body content (separate from the final CTA's own badge row,
   which comes from the reused Hello_Child_CTA_Banner component). Live has
   two independent copies of this strip with different mobile logo widths
   (this one: 42px at <=768px; the CTA banner's own badges are unaffected
   since they're the shared component's fixed 80x80 size) — kept as two
   separate instances, not deduplicated. */
.tc-cert-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}
.tc-cert-badges img { width: 65px; height: auto; display: block; }
@media (max-width: 768px) {
  .tc-cert-badges img { width: 42px; }
}

.tc-cta { padding: 0 0 96px; }
@media (max-width: 767px) {
  .tc-cta { padding: 0 0 56px; }
}
