.home-trust {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 18px 0 0;
    border-top: 1px solid #d9dcdf;
    border-bottom: 1px solid #d9dcdf;
    background: #fff;
}

.home-trust__item {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 108px;
    padding: 18px 20px;
    border-top: 3px solid transparent;
    color: #252525;
    text-decoration: none;
}

.home-trust__item + .home-trust__item {
    border-left: 1px solid #e2e4e6;
}

.home-trust__item:hover,
.home-trust__item:focus {
    border-top-color: #f2c500;
    background: #f7f8f8;
    text-decoration: none;
    outline: none;
}

.home-trust__item:focus-visible {
    box-shadow: inset 0 0 0 3px rgba(7, 86, 165, .25);
}

.home-trust__item strong {
    display: block;
    margin-bottom: 6px;
    color: #1b1b1b;
    font-size: 14px;
    line-height: 20px;
}

.home-trust__item span {
    display: block;
    color: #5b6064;
    font-size: 12px;
    line-height: 18px;
}

@media all and (max-width: 760px) {
    .home-trust {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 0;
    }

    .home-trust__item:nth-child(3) {
        border-left: 0;
    }

    .home-trust__item:nth-child(n+3) {
        border-top-color: #e2e4e6;
    }

    .home-trust__item:nth-child(n+3):hover,
    .home-trust__item:nth-child(n+3):focus {
        border-top-color: #f2c500;
    }
}

@media all and (max-width: 500px) {
    .home-trust {
        grid-template-columns: minmax(0, 1fr);
        margin-left: 14px;
        margin-right: 14px;
    }

    .home-trust__item {
        min-height: 0;
        padding: 15px 4px;
    }

    .home-trust__item + .home-trust__item,
    .home-trust__item:nth-child(3) {
        border-left: 0;
        border-top-color: #e2e4e6;
    }
}
