/* Trust bar — four guarantees, said once.
 *
 * Icon above the label rather than beside it: four stacked pairs read as a
 * band, four side-by-side pairs read as a sentence that ran out of room. The
 * icons carry the brand yellow into the middle of an otherwise quiet page.
 */

.cc_vt72n7bb_VwYn6tBHet .ofs-trust {
  /* A third of the seam belongs on this side. With the whole 96 sitting in
   * the dark block the icons started 18px under its edge, which read as the
   * band being stuck to it. */
  /* 40 each side, a quarter more than the 32 it had: the band was reading as
   * a footnote to the footer rather than a section of its own. */
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  /* The footer below is the same dark: without a rule the two blocks merge.
   * On-dark at 12% keeps the seam a hairline, not a stripe. */
  border-bottom: 1px solid rgba(240, 238, 232, 0.12);
}

/* Dark band. .ofs-section paints the light ground, so the pair of classes is
 * what outranks it. */
.cc_vt72n7bb_VwYn6tBHet .ofs-section.ofs-trust {
  background: var(--ofs-dark);
  color: var(--ofs-on-dark);
}

.cc_vt72n7bb_VwYn6tBHet .ofs-trust__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.875rem 1.25rem;
}

.cc_vt72n7bb_VwYn6tBHet .ofs-trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  color: var(--ofs-on-dark);
}

/* The icon sits in a tinted disc rather than floating on the ground: it gives
 * the mark a place to stand and carries the brand yellow without ever putting
 * a yellow field on the page. */
.cc_vt72n7bb_VwYn6tBHet .ofs-trust__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  /* 12% yellow over the dark ground; the icon on it measures 8.65:1. */
  background: rgba(245, 208, 0, 0.12);
  color: var(--ofs-accent);
  font-size: 2rem;
}

.cc_vt72n7bb_VwYn6tBHet .ofs-trust__text {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .cc_vt72n7bb_VwYn6tBHet .ofs-trust__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
  }

  /* Four across have the width for a step up: 72px disc, 36px icon, 17px. */
  .cc_vt72n7bb_VwYn6tBHet .ofs-trust__icon {
    width: 4.5rem;
    height: 4.5rem;
    font-size: 2.25rem;
  }

  .cc_vt72n7bb_VwYn6tBHet .ofs-trust__text {
    font-size: 1.0625rem;
  }

  /* Thin rules between the columns; the first has nothing to its left. */
  .cc_vt72n7bb_VwYn6tBHet .ofs-trust__item + .ofs-trust__item {
    border-left: 1px solid rgba(240, 238, 232, 0.12);
  }
}

/* ===== Entrance (B7) =====
 * The four items arrive in sequence and each disc springs in slightly late,
 * so the band assembles instead of appearing.
 */
/* Items and discs are visible at their resting size by default; the staggered
 * assembly plays only once the band is in view. */
.cc_vt72n7bb_VwYn6tBHet .ofs-trust--in .ofs-trust__item {
  animation: cc_vt72n7bb_VwYn6tBHet_ofs-trust-in 400ms var(--ofs-ease-enter) backwards;
}

.cc_vt72n7bb_VwYn6tBHet .ofs-trust--in .ofs-trust__item:nth-child(1) { animation-delay: 0ms; }
.cc_vt72n7bb_VwYn6tBHet .ofs-trust--in .ofs-trust__item:nth-child(2) { animation-delay: 100ms; }
.cc_vt72n7bb_VwYn6tBHet .ofs-trust--in .ofs-trust__item:nth-child(3) { animation-delay: 200ms; }
.cc_vt72n7bb_VwYn6tBHet .ofs-trust--in .ofs-trust__item:nth-child(4) { animation-delay: 300ms; }

.cc_vt72n7bb_VwYn6tBHet .ofs-trust--in .ofs-trust__icon {
  animation: cc_vt72n7bb_VwYn6tBHet_ofs-trust-icon-in 400ms var(--ofs-ease-spring) backwards;
}

@keyframes cc_vt72n7bb_VwYn6tBHet_ofs-trust-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
}

@keyframes cc_vt72n7bb_VwYn6tBHet_ofs-trust-icon-in {
  from {
    transform: scale(0.8);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cc_vt72n7bb_VwYn6tBHet .ofs-trust--in .ofs-trust__item, .cc_vt72n7bb_VwYn6tBHet .ofs-trust--in .ofs-trust__icon {
    animation: none;
  }

  .cc_vt72n7bb_VwYn6tBHet .ofs-trust__item, .cc_vt72n7bb_VwYn6tBHet .ofs-trust__icon {
    transform: none;
  }
}
