.trust_stack {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    background: var(--jd-white);
    border: 1px solid var(--jd-border);
    border-radius: var(--jd-radius-lg);
    overflow: hidden;
    box-shadow: var(--jd-shadow-sm);
	margin-bottom: 65px;
}

.trust_item {
    padding: 1.35rem 1rem;
    text-align: center;
    border-right: 1px solid var(--jd-grey-200);
}

.trust_item:last-child {
    border-right: 0;
}

.trust_item strong {
    display: block;
    margin-bottom: var(--space-xs);
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 2vw, 1.65rem);
    font-weight: var(--weight-bold);
    color: var(--jd-black);
}

.trust_item span {
    display: block;
    font-size: 0.94rem;
    color: var(--jd-grey-500);
    line-height: 1.45;
}

@media (max-width: 1023px) {
    .trust_stack {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust_item {
        border-right: 1px solid var(--jd-grey-200);
        border-bottom: 1px solid var(--jd-grey-200);
    }

    .trust_item:nth-child(2n) {
        border-right: 0;
    }

    .trust_item:last-child {
        grid-column: 1 / -1;
        border-right: 0;
        border-bottom: 0;
    }
}

@media (max-width: 767px) {
    .trust_stack {
        grid-template-columns: 1fr;
    }

    .trust_item,
    .trust_item:nth-child(2n),
    .trust_item:last-child {
        border-right: 0;
        border-bottom: 1px solid var(--jd-grey-200);
    }

    .trust_item:last-child {
        border-bottom: 0;
    }
}
