.sbc-uw-image-cards {
    background-color: #fff;
    padding-top: 30px;
    padding-bottom: 30px;
}

.sbc-uw-image-cards__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.sbc-uw-image-cards__cards__card {
    background-color: #F7F7F7;
    padding: 25px 30px 30px;
}

.sbc-uw-image-cards__cards__card.sbc-uw-image-cards__cards__card__link {
    cursor: pointer;
}

.sbc-uw-image-cards__cards__card__image {
    height: 252px;
}

.sbc-uw-image-cards__cards__card__text {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    line-height: 32px;
    color: #000;
    font-weight: 400;
}

/* **************************************************************************************************************** */
/* **************************************************************************************************************** */
/* **************************************************************************************************************** */
/* **************************************************************************************************************** */
/* **************************************************************************************************************** */
/* **************************************************************************************************************** */
/* **************************************************************************************************************** */
/* **************************************************************************************************************** */
/* **************************************************************************************************************** */
/* **************************************************************************************************************** */
/* **************************************************************************************************************** */
/* **************************************************************************************************************** */
/* **************************************************************************************************************** */
/* **************************************************************************************************************** */
/* **************************************************************************************************************** */
/* **************************************************************************************************************** */
/* **************************************************************************************************************** */
/* **************************************************************************************************************** */
/* **************************************************************************************************************** */
/* **************************************************************************************************************** */
/* **************************************************************************************************************** */
/* **************************************************************************************************************** */

@media (max-width: 1440px){
    
}

@media (max-width: 1199px){
    .sbc-uw-image-cards__cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .sbc-uw-image-cards__cards__card__image {
        height: 302px;
    }
}

@media ( max-width: 991px ){
    .sbc-uw-image-cards__cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .sbc-uw-image-cards__cards__card__image {
        height: 355px;
    }
}

@media ( max-width: 767px ){ 
    .sbc-uw-image-cards__cards {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }

    .sbc-uw-image-cards__cards__card {
        padding: 0;
        display: flex;
        align-items: center;
        min-height: 88px;
    }

    .sbc-uw-image-cards__cards__card__image {
        order: 0;
        height: 100%;
        flex-basis: 110px;
    }

    .sbc-uw-image-cards__cards__card__text {
        order: 1;
        flex-basis: calc(100% - 110px);
        margin-bottom: 0;
        padding: 15px;
        font-size: 18px;
        line-height: 26px;
    }
}

@media (max-width: 359px){
    .sbc-uw-image-cards__cards__card__image {
        flex-basis: 80px;
        min-height: 68px;
    }

    .sbc-uw-image-cards__cards__card__text {
        flex-basis: calc(100% - 80px);
    }
}