



.usp-item {

    display: inline-flex;
    gap: 15px;

    &.flex {
        display: flex;
    }

    &.center {
        align-items: center;
    }

    &.full-height {
        height: 100%;
    }


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

    .item-title {
        display: block;
        line-height: 1.25;
        margin-bottom: 3px;
    }

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

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


    &.segment {
        padding: 15px;
        background-color: var(--theme-white);
        border-radius: 9px;

        &.border {
            border: 1px solid var(--theme-shadow-border, #efefef);
        }

        &.shadow {
            box-shadow: 0 8px 12px var(--theme-shadow-color, rgba(152, 152, 152, .125));
        }

    }



}




/* 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;*/

    }

}





