.trusted-wrapper {
    display: grid;
    grid-gap: 24px;
}

.trusted--title {
    font-weight: 700;
    font-size: 15px;
    line-height: 1.5;
    color: #E8F4FC;
    text-align: center;
    margin: 0 auto;
    opacity: .8;
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
    row-gap: 24px;
}

.client-logo--link {
    display: flex;
}

.client-logo {
    max-width: 108px;
    height: auto;
}

.client-logo path {
    fill-opacity: .8;
}

.frame-centered {
    display: flex;
}

.frame-custom {
    display: none;
}

@media (min-width: 576px) {
    .client-logo {
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .frame-centered {
        display: none;
    }

    .frame-custom {
        display: flex;
    }
}

@media (min-width: 992px) {
    .client-logos {
        display: grid;
        grid-template-columns: repeat(8, auto);
        justify-items: center;
        justify-content: space-between;
        align-items: center;
        margin: 0 auto;
        gap: 8px;
        width: 100%;
    }
}

@media (min-width: 1200px) {
    .trusted-wrapper {
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: center;
        justify-content: flex-start;
        grid-gap: 40px;
    }
}
