/* Home: Trust Badges Block */

.home-trust-badges {
    background-color: #fff;
    padding: 3.5rem 0;
    text-align: center;
}

.home-trust-badges__container {
    max-width: 1140px;
    margin: 0 auto;
}

.home-trust-badges__heading {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.5px;
    color: #0A1A1C;
    max-width: 480px;
    margin: 0 auto 2.5rem;
}

.home-trust-badges__heading em {
    color: #E84E0F;
    font-style: normal;
}

.home-trust-badges__grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.home-trust-badges__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.home-trust-badges__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid #D8E5E7;
}

.home-trust-badges__icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.home-trust-badges__label {
    font-size: 14px;
    font-weight: 600;
    color: #0A1A1C;
}

/* sm: 640px — badges in a row */
@media (min-width: 640px) {
    .home-trust-badges__grid {
        flex-direction: row;
        justify-content: center;
        gap: 3rem;
    }
}

/* md: 768px */
@media (min-width: 768px) {
    .home-trust-badges {
        padding: 4.5rem 0;
    }

    .home-trust-badges__heading {
        font-size: 32px;
        max-width: 560px;
    }

    .home-trust-badges__grid {
        gap: 4rem;
    }
}
