/* 30-Day guarantee (v2 #39). Copy on the left, seal on the right; the seal
   drops under the copy on a phone rather than squeezing it. */

.guarantee-panel__inner {
  display: grid;
  max-width: 1280px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
}

.guarantee-panel__copy {
  max-width: 720px;
}

.guarantee-panel__heading {
  margin: 0 0 18px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 700;
  line-height: 1.2;
  color: rgba(var(--color-text));
  text-wrap: balance;
}

.guarantee-panel__heading-lead {
  display: block;
}

.guarantee-panel__copy p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(var(--color-light-text));
}

.guarantee-panel__policy {
  color: inherit;
  border-bottom: 1px solid currentcolor;
}

.guarantee-panel__items {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
  gap: 12px 28px;
}

.guarantee-panel__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(var(--color-text));
}

.guarantee-panel__item-icon {
  display: block;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.guarantee-panel__seal {
  display: grid;
  place-items: center;
}

.guarantee-panel__seal svg {
  display: block;
  width: clamp(140px, 16vw, 186px);
  height: auto;
  color: rgba(var(--color-text));
}

@media (max-width: 759px) {
  .guarantee-panel__inner {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    text-align: center;
  }

  /* Aug 31 #32: the three trust items wrapped onto three lines — each ran
     ~200px wide in a ~350px container. Stacking the icon over its label makes
     them narrow enough to share one row, so the band reads as a single strip
     rather than a list. nowrap holds that even if a label is translated long;
     the labels are three words at most, so the text wraps inside its own item. */
  .guarantee-panel__items {
    justify-content: center;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 14px;
  }

  .guarantee-panel__item {
    flex: 1 1 0;
    flex-direction: column;
    gap: 8px;
    font-size: 10.5px;
    letter-spacing: 0.04em;
    line-height: 1.35;
    text-align: center;
  }
}
