@media screen and (min-width: 1260px) {
    /* Default variant (with background image) */
    .sh-smarts-iconblock {
        margin-bottom: 0;
        background: url('/images/smart-big.png') no-repeat left top;
        background-size: cover;
        height: 530px;

        padding: 50px 0;
        display: grid;
        grid-template-rows: 1fr;
        grid-template-columns: repeat(12, 1fr);
        gap: 1px 24px;
    }

    .sh-smarts-iconblock-list {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        grid-column: 6/13;
    }

    .sh-smarts-iconblock-pic {
        display: none;
    }

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

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

    /* Gray variant */
    .sh-smarts-iconblock--gray {
        padding: 60px 0px 60px 0px;
        display: grid;
        grid-template-rows: 1fr;
        grid-template-columns: repeat(12, 1fr);
        gap: 1px 60px;
        margin-bottom: 0;
        background: none;
        height: auto;
    }

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

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

    /* Black variant */
    .sh-smarts-iconblock--black {
        margin-bottom: 0;
        background: url('/images/smart-big-2.png') no-repeat left top;
        background-size: cover;
        height: 530px;

        padding: 50px 0;
        display: grid;
        grid-template-rows: 1fr;
        grid-template-columns: repeat(12, 1fr);
        gap: 1px 24px;
    }

    .sh-smarts-iconblock--black .sh-smarts-iconblock-list {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        grid-column: 6/13;
    }

    .sh-smarts-iconblock--black .sh-smarts-iconblock-pic {
        display: none;
    }

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