/* Iron Shore Roofing -- About page: featured Trust & Transparency lead-in,
   inserted by about-trust.js directly above the existing three-card values
   grid. Reuses .section-* typography tokens where practical and matches
   the existing .value-card / .value-icon color language (dark card bg,
   brand blue icon badge) so it reads as part of the same design system.
   Selectors are scoped to .trust-lead / .tl-* -- never touches nav,
   footer, or any existing rule. */

.trust-lead {
  display: flex;
  align-items: center;
  gap: 40px;
  background: rgb(17, 24, 39);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 36px 40px;
}

.trust-lead-art {
  flex: 0 0 auto;
}

.trust-lead-badge {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 20px;
  background: var(--color-accent, #1a5fd4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tl-handshake {
  width: 52px;
  height: 52px;
  color: #fff;
}

.trust-lead-doc {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgb(17, 24, 39);
  border: 2px solid var(--color-accent, #1a5fd4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-lead-doc svg {
  width: 22px;
  height: 22px;
  color: var(--color-accent, #1a5fd4);
}

.trust-lead-copy {
  flex: 1 1 auto;
}

.trust-lead-kicker {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent, #1a5fd4);
  margin: 0 0 6px;
}

.trust-lead-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: #fff;
  margin: 0 0 10px;
}

.trust-lead-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgb(137, 152, 173);
  margin: 0;
  max-width: 640px;
}

@media (max-width: 700px) {
  .trust-lead {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
    gap: 20px;
  }
  .trust-lead-text {
    max-width: none;
  }
}
