@media screen and (max-width: 767px) {
    /* Default variant — убираем desktop bg-image, оставляем только цвет */
    .sh-smarts-iconblock {
        margin-bottom: 50px;
        background: #F6F6F8;
        background-image: none !important;
        height: auto !important;

        display: grid;
        grid-template-rows: 1fr;
        grid-template-columns: repeat(8, 1fr);
        gap: 1px 24px;
    }

    .sh-smarts-iconblock-list {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        grid-column: 1/9;
        padding: 0px 16px 0px 16px;
        margin-bottom: 40px;
    }

    .sh-smarts-iconblock-pic {
        grid-column: 1/9;
    }

    .icon-smarts {
        position: relative;
        padding-left: 55px !important;
    }

    .icon-smarts::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0px;
        font-size: 17px;
        width: 40px;
        height: 40px;
        background-size: contain;
        background-repeat: no-repeat;
    }

    /* Gray variant */
    .sh-smarts-iconblock--gray {
        padding: 40px 16px 40px 16px;
        display: grid;
        grid-template-rows: 1fr;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px 16px;
        margin-bottom: 0;
        background-color: transparent;
    }

    .sh-smarts-iconblock--gray .sh-smarts-iconblock-item:nth-child(1) {
        grid-column: 1/5;
    }

    .sh-smarts-iconblock--gray .sh-smarts-iconblock-item:nth-child(2) {
        grid-column: 1/5;
    }

    /* Black variant — убираем desktop bg-image */
    .sh-smarts-iconblock--black {
        margin-bottom: 50px;
        background: #000000;
        background-image: none !important;
        height: auto !important;

        display: grid;
        grid-template-rows: 1fr;
        grid-template-columns: repeat(8, 1fr);
        gap: 1px 24px;
    }

    .sh-smarts-iconblock--black .sh-smarts-iconblock-list {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        grid-column: 1/9;
        padding: 0px 16px 0px 16px;
        margin-bottom: 40px;
    }

    .sh-smarts-iconblock--black .sh-smarts-iconblock-pic {
        grid-column: 1/9;
    }

    /* Default variant typography */
    .sh-smarts-iconblock .sh-iconblock-title {
        font-family: 'InterMedium', 'Inter', sans-serif;
        font-size: 16px;
        line-height: 22px;
        color: #0E0F11;
        text-transform: uppercase;
    }

    .sh-smarts-iconblock .sh-iconblock-body {
        font-family: 'Inter', sans-serif;
        font-size: 16px;
        line-height: 20px;
        color: #0E0F11;
    }

    /* Black variant typography */
    .sh-smarts-iconblock--black .sh-iconblock-title {
        font-family: 'InterMedium', 'Inter', sans-serif;
        font-size: 16px;
        line-height: 22px;
        color: #D3D5DE;
        text-transform: uppercase;
    }

    .sh-smarts-iconblock--black .sh-iconblock-body {
        font-family: 'Inter', sans-serif;
        font-size: 16px;
        line-height: 20px;
        color: #E0E2E8;
    }

    /* Gray variant item typography */
    .sh-smarts-iconblock--gray .sh-smarts-iconblock-item {
        font-family: 'Inter', sans-serif;
        font-size: 16px;
        line-height: 20px;
        color: #0E0F11;
    }

    /* Gray variant icon size: 50px per Figma */
    .sh-smarts-iconblock--gray .icon-smarts::before {
        width: 50px;
        height: 50px;
    }

    .sh-smarts-iconblock--gray .icon-smarts {
        padding-left: 65px !important;
    }
}