



.usp-item {

    display: inline-flex;
    gap: 15px;

    &.center {
        align-items: center;
    }


    .item-icon {
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }

    .item-title {
        display: block;
        margin-bottom: 5px;
    }

    .item-content {
        display: inline-flex;
        flex-direction:  column;
        flex: 1 1;
    }

    .item-content, .article {
        line-height: 1.35em;
    }

}




/* USP Items Slate */

.usp-items.slate {
    gap: 20px;
}

.usp-item.slate {

    .item-icon {
        color: var(--theme-slate-text);
        background-color: var(--theme-slate-color);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        width: var(--48px);
        height: var(--48px);
        border-radius: 999px;
        flex: 0 0 auto;

        /*margin-right: 0.5em;*/

    }

}





