.trust-bar {
    padding: 5vh 0;
}

.trust-bar .trust-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
    margin: 0 auto;
    padding: 0 5vw;
}

.trust-image {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.trust-image img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

.trust-bar h4 {
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.trust-bar p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.4;
}

.trust-bar p a {
    color: var(--black);
    text-underline-offset: 2px;
}

@media (min-width: 768px) {
    .trust-bar .trust-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }
}

@media (min-width: 1024px) {
    .trust-bar h4 {
        font-size: 13px;
    }

    .trust-bar p {
        font-size: 13px;
    }
}