/**
 * PVG Trustbar v1.0.0
 * Uses a real list so all benefits remain available without JavaScript.
 */

.pvg-trustbar {
  --pvg-trustbar-text: var(--pvg-hero-text, var(--pvg-lp-color-text, #14293b));
  --pvg-trustbar-accent-dark: var(--pvg-hero-secondary-dark, #14775f);

  display: grid;
  gap: 0.625rem;
  margin: 0;
  padding: 1rem;
  color: var(--pvg-trustbar-text);
  background: rgb(88 189 156 / 10%);
  border: 1px solid rgb(88 189 156 / 35%);
  border-radius: 1rem;
  list-style: none;
}

.pvg-trustbar__item,
.pvg-trustbar > li {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  min-width: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
}

.pvg-trustbar svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--pvg-trustbar-accent-dark);
  fill: none;
  stroke: currentcolor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@container pvg-hero (min-width: 48rem) {
  .pvg-trustbar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Viewport fallback when the Trustbar is used outside a named Hero container. */
@supports not (container-type: inline-size) {
  @media (min-width: 48rem) {
    .pvg-trustbar {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
}
