/*
 * Trust strip on product archives (template-parts/shop-trust-bar.php).
 *
 * Deliberately thin: colour, weight and size come from the theme's own
 * utilities on the markup - .text-heading (which master.css already remaps for
 * the dark skin), .fw-500, .font-14, .flx-align - so this file only has to
 * supply layout and the check glyph. The glyph matches the one in the deals
 * hero rather than introducing a second check mark to the design.
 */
.wpbay-shop-trust {
    gap: 12px 28px;
    justify-content: center;
    margin: 0 0 32px;
}

.wpbay-shop-trust__icon {
    width: 17px;
    height: 17px;
    flex: none;
    fill: none;
    stroke: var(--main-color-one);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Narrow screens: one claim per line reads better than a ragged centred wrap. */
@media only screen and (max-width: 575px) {
    .wpbay-shop-trust {
        justify-content: flex-start;
        gap: 10px 20px;
    }

    .wpbay-shop-trust__item {
        width: 100%;
    }
}
