/* Derniers détails : badge médaillon et centrage vertical */

.trust-item {
  display: grid;
  grid-template-rows: 42px auto;
  align-content: center;
  justify-items: center;
  min-height: 130px;
  padding: 14px 16px;
  gap: 8px;
}
.trust-item .trust-icon {
  display: grid;
  place-items: center;
  align-self: center;
  justify-self: center;
  margin: 0;
}
.trust-item > div {
  align-self: center;
  justify-self: center;
  text-align: center;
}

/* Badge inspiré du médaillon doré fourni */
.hero-sticker {
  position: absolute;
  z-index: 5;
  display: grid;
  place-content: center;
  width: 116px;
  height: 116px;
  padding: 12px;
  border: 1px solid #a77d38;
  border-radius: 50%;
  color: #26351f;
  background: radial-gradient(circle at 36% 26%, #fff4c9 0%, #ead190 51%, #c59b4d 100%);
  box-shadow: 0 10px 18px rgba(55,42,19,.18), inset 0 0 0 4px rgba(255,249,218,.58), inset 0 0 0 5px rgba(155,112,45,.58);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .58rem;
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: .13em;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(7deg);
}
.hero-sticker::before {
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(119,84,27,.55);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}
.hero-sticker strong {
  position: relative;
  display: block;
  margin: 5px 0 4px;
  color: #26351f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.26rem;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1;
}
.hero-sticker small {
  position: relative;
  color: #705321;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: .47rem;
  font-weight: 800;
  letter-spacing: .1em;
}

@media (max-width: 940px) {
  .trust-item { min-height: 125px; }
}

@media (max-width: 660px) {
  .trust-item {
    min-height: 120px;
    padding: 12px 10px;
  }
  .hero-sticker {
    top: 0;
    right: -5px;
    width: 88px;
    height: 88px;
    padding: 8px;
    font-size: .43rem;
    letter-spacing: .09em;
  }
  .hero-sticker::before { inset: 7px; }
  .hero-sticker strong { margin: 3px 0; font-size: .9rem; }
  .hero-sticker small { font-size: .36rem; letter-spacing: .06em; }
}
