    .ss-app-card-block-img {
        display: flex;
        justify-content: center;
        margin: 20px 0;
    }
    
    .ss-app-card-block-img {
        display: grid;
        place-items: center;
        height: 100px;
    }
    
    .ss-app-card-block-img img {
        height: 100%;
        max-height: 100px;
        width: 100%;
        max-width: 100px;
    }
    
    .ss-app-card-block-title {
        font-weight: bold;
        height: 50px;
        color: #03234b;
        text-align: center;
    }
    
    .ss-app-card-blocks {
        display: flex;
        flex-wrap: wrap;
    }
    
    .ss-app-card-block-list ul li::before {
        display: none;
    }
    
    .ss-app-card-block-list ul li {
        padding-left: 0;
        font-size: 14px;
    }
    
    .ss-app-card-block-list {
        text-align: center;
    }
    
    figcaption {
        font-size: 13px;
        font-style: italic;
    }
    /*  PRODUCT TYPES   */
    
    .ss-card {
        display: flex;
        margin-top: 25px;
        transition: all .3s ease;
        -webkit-box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
        box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
    }
    
    .ss-card:hover {
        border-color: rgba(2, 171, 245, .4);
        -webkit-box-shadow: 0 0 15px 0 rgba(2, 171, 245, .3);
        box-shadow: 0 0 15px 0 rgba(2, 171, 245, .3);
        outline: 0;
        cursor: pointer;
    }
    
    .ss-card-left {
        padding: 20px;
        font-weight: bold;
        height: 100%;
        display: grid;
        place-items: center;
        text-align: center;
        min-width: 260px;
    }
    
    .ss-card-left img {
        height: 100%;
        max-height: 150px;
    }
    
    .ss-card-right {
        padding: 10px;
        padding-left: 20px;
        width: 100%;
    }
    
    .ss-card-title {
        font-weight: bold;
    }
    
    .ss-card-cta {
        float: right;
        margin-right: 30px;
        margin-top: 10px;
    }
    
    .st-link .st-link__icon--arrow-small,
    a .st-link__icon--arrow-small {
        width: 6px;
        height: 15px;
    }
    
    @media only screen and (max-width: 600px) {
        /* For mobile phones: */
        .ss-card {
            display: grid;
        }
    }
    /* END  */