/* ---------------------------------------------
	Text item border & SVG
---------------------------------------------- */

.trust-tag__text {
    font-weight: 400;
    border-radius: 8px;
    border: 1px solid var(--color-stroke);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 5px 1rem;
    line-height: 5px;
}

.trust-tag__text::before {
    content: '';
    display: block; 
    width: 24px;
    height: 24px;
    background: url('../../images/icons/trust_tick.svg') no-repeat center center;
    background-size: contain;
    flex-shrink: 0; 
}