.julius-trust-badges {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: 100%;
    margin: 18px 0 6px;
    padding: 10px 0;
    background: #ffffff;
    border: 1px solid #e8eaee;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.julius-trust-badge {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    padding: 14px 12px;
    text-align: center;
}

.julius-trust-badge:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 18%;
    right: 0;
    width: 1px;
    height: 64%;
    background: #e8eaee;
}

.julius-trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 10px;
    color: #c7922e;
    background: #fffaf0;
    border: 1px solid #dca93f;
    border-radius: 50%;
}

.julius-trust-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.julius-trust-title {
    display: block;
    min-height: 34px;
    margin-bottom: 5px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    color: #101827;
}

.julius-trust-text {
    display: block;
    font-size: 10.5px;
    font-weight: 400;
    line-height: 1.45;
    color: #687180;
}

@media (max-width: 900px) {
    .julius-trust-badges {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .julius-trust-badge::after {
        display: none;
    }

    .julius-trust-badge {
        border-bottom: 1px solid #e8eaee;
    }

    .julius-trust-badge:last-child {
        grid-column: 1 / -1;
        border-bottom: 0;
    }
}

@media (max-width: 560px) {
    .julius-trust-badges {
        grid-template-columns: 1fr;
    }

    .julius-trust-badge {
        display: grid;
        grid-template-columns: 46px 1fr;
        column-gap: 12px;
        text-align: left;
    }

    .julius-trust-icon {
        grid-row: 1 / 3;
        margin: 0;
    }

    .julius-trust-title {
        min-height: 0;
        margin: 0 0 3px;
    }

    .julius-trust-badge:last-child {
        grid-column: auto;
    }
}