/* Three compact trust marks presented as a layered separator ribbon. */
.gb-privacy-ribbon {
  position: relative;
  z-index: 3;
  scroll-margin-top: 4.25rem;
  padding: 1.15rem max(2rem, calc((100vw - 1360px) / 2)) 1.35rem;
  border-block: 1px solid #cbd4dc;
  background: linear-gradient(180deg, #f2f4f6 0%, #e8ecef 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 12px 28px rgba(31, 52, 75, 0.1);
  color: #1b2e40;
}

.gb-privacy-ribbon::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 2%, rgb(var(--page-blue-rgb) / 0.48) 28%, rgb(var(--page-blue-rgb) / 0.12) 72%, transparent 98%);
}

.gb-privacy-ribbon-inner {
  width: min(100%, 1180px);
  min-height: 7.25rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.gb-privacy-feature {
  min-width: 0;
  margin: 0;
  padding: 0 clamp(1.5rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #53677a;
  text-align: center;
}

.gb-privacy-feature + .gb-privacy-feature {
  border-left: 1px solid #c8d1da;
}

.gb-privacy-feature-icon {
  width: 3.35rem;
  height: 3.35rem;
  margin-bottom: 0.55rem;
  display: grid;
  place-items: center;
  border: 1px solid rgb(var(--page-blue-rgb) / 0.48);
  border-radius: 50%;
  color: var(--page-blue);
  background: rgba(255, 255, 255, 0.38);
}

.gb-privacy-feature-icon svg {
  width: 1.72rem;
  height: 1.72rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.gb-privacy-feature:first-child .gb-privacy-feature-icon svg {
  width: 1.58rem;
  height: 1.82rem;
  stroke-width: 5;
}

.gb-privacy-feature:nth-child(3) .gb-privacy-feature-icon svg {
  width: 1.95rem;
  height: 1.95rem;
}

.gb-privacy-feature strong {
  display: block;
  color: #2e4357;
  font-size: 0.84rem;
  font-weight: 680;
  line-height: 1.25;
}

.gb-privacy-feature p {
  max-width: 20rem;
  margin: 0.3rem 0 0;
  color: #6a7b8b;
  font-size: 0.68rem;
  line-height: 1.42;
}

.gb-privacy-link {
  position: absolute;
  right: max(1.2rem, calc((100vw - 1360px) / 2));
  bottom: 0.4rem;
  padding: 0.18rem 0;
  border-bottom: 1px solid #c2ccd5;
  color: #83909d;
  font-size: 0.62rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.gb-privacy-link:hover {
  border-bottom-color: var(--page-blue);
  color: var(--page-blue);
}

.gb-privacy-link span {
  margin-left: 0.2rem;
  color: var(--page-blue);
}

@media (max-width: 820px) {
  .gb-privacy-ribbon-inner {
    width: 100%;
  }

  .gb-privacy-feature {
    padding-inline: 1rem;
  }
}

@media (max-width: 640px) {
  .gb-privacy-ribbon {
    padding: 1rem 1.1rem 2rem;
  }

  .gb-privacy-ribbon-inner {
    display: block;
  }

  .gb-privacy-feature {
    min-height: 6.25rem;
    padding: 0.85rem 0;
    display: grid;
    grid-template-columns: 3.1rem minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 1rem;
    justify-items: start;
    text-align: left;
  }

  .gb-privacy-feature + .gb-privacy-feature {
    border-top: 1px solid #c8d1da;
    border-left: 0;
  }

  .gb-privacy-feature-icon {
    width: 3rem;
    height: 3rem;
    margin: 0;
    grid-row: 1 / 3;
  }

  .gb-privacy-feature strong {
    align-self: end;
  }

  .gb-privacy-feature p {
    align-self: start;
    margin-top: 0.2rem;
  }

  .gb-privacy-link {
    right: 1.1rem;
    bottom: 0.55rem;
  }
}
