.yc-shcode--work-steps .--short--code--title {
    position: relative;
    width: fit-content;
    margin: 0 0 14px !important;
    padding-bottom: 12px;
    color: var(--primary-text);
    font-size: 30px;
    line-height: 1.35;
    font-weight: 900;
    letter-spacing: -.35px;
}

.yc-shcode--work-steps .--short--code--title::after {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    bottom: 0;
    width: 46px;
    height: 3px;
    border-radius: 999px;
    background: var(--uicolor);
}

.yc-shcode--work-steps .--short--code--content {
    margin-bottom: 22px;
    color: var(--secondarytext);
    font-size: 16px;
    line-height: 1.85;
}

.yc-shcode--steps--items {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 32px;
    counter-reset: worksteps;
}

.yc-shcode--single-worksteps-item {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: block;
    min-width: 0;
    min-height: 100%;
    padding: 28px !important;
    border: 1px solid rgb(0 0 0 / 7%);
    border-radius: 24px;
    background:
        radial-gradient(circle at 0 0, rgb(255 111 0 / 7%) 0, transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #fffaf2 100%);
    box-shadow: 0 14px 36px rgb(0 0 0 / 6%);
    cursor: pointer;
    text-align: start;
    transition:
        transform .28s ease,
        box-shadow .28s ease,
        border-color .28s ease;
}

.yc-shcode--single-worksteps-item::before {
    content: "";
    position: absolute;
    inset-block: 22px;
    inset-inline-start: 0;
    width: 4px;
    border-radius: 999px;
    background: var(--uicolor);
    opacity: 0;
    transition: opacity .25s ease;
}

.yc-shcode--single-worksteps-item::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset-inline-end: -64px;
    top: -64px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgb(255 111 0 / 6%);
    pointer-events: none;
}

.yc-shcode--single-worksteps-item:hover {
    transform: translateY(-7px);
    border-color: rgb(255 111 0 / 18%);
    box-shadow: 0 26px 62px rgb(0 0 0 / 13%);
}

.yc-shcode--single-worksteps-item:hover::before {
    opacity: 1;
}

.yc-shortcode-worksteps--image {
    position: relative;
    width: 88px;
    height: 88px;
    margin: 0 0 22px !important;
    border: 1px solid rgb(255 111 0 / 10%);
    border-radius: 24px;
    background:
        linear-gradient(180deg, #ffffff 0%, #fffaf2 100%);
    color: var(--uicolor);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-number);
    font-size: 42px;
    line-height: 1;
    font-weight: 900;
    box-shadow: 0 14px 32px rgb(0 0 0 / 7%);
    transition:
        transform .28s ease,
        background-color .28s ease,
        color .28s ease,
        border-color .28s ease,
        box-shadow .28s ease;
}

.yc-shortcode-worksteps--image::before {
    content: "";
    position: absolute;
    inset: -7px;
    border: 1px solid rgb(255 111 0 / 8%);
    border-radius: 29px;
    pointer-events: none;
}

.yc-shcode--single-worksteps-item:hover .yc-shortcode-worksteps--image {
    transform: translateY(-4px) rotate(-3deg);
    border-color: var(--uicolor);
    background: var(--uicolor);
    color: #ffffff;
    box-shadow: 0 22px 46px rgb(255 111 0 / 24%);
}

.yc-shcode--worksteps--info {
    position: relative;
    z-index: 2;
    display: block;
}

.yc-shcode--worksteps--info h3 {
    margin: 0 0 10px;
    color: var(--primary-text);
    font-size: 22px;
    line-height: 1.4;
    font-weight: 900;
    transition: color .25s ease;
}

.yc-shcode--single-worksteps-item:hover .yc-shcode--worksteps--info h3 {
    color: var(--uicolor);
}

.yc-shcode--worksteps--info p {
    margin: 0 !important;
    color: var(--secondarytext);
    font-size: 16px;
    line-height: 1.85;
    font-weight: 500;
}

@media (max-width: 1100px) {
    .yc-shcode--steps--items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .yc-shcode--single-worksteps-item {
        padding: 24px !important;
    }

    .yc-shortcode-worksteps--image {
        width: 78px;
        height: 78px;
        border-radius: 22px;
        font-size: 36px;
    }

    .yc-shortcode-worksteps--image::before {
        border-radius: 27px;
    }

    .yc-shcode--worksteps--info h3 {
        font-size: 20px;
    }
}

@media (max-width: 700px) {
    .yc-shcode--steps--items {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 26px;
    }

    .yc-shcode--single-worksteps-item {
        padding: 22px 18px !important;
        border-radius: 20px;
    }

    .yc-shortcode-worksteps--image {
        width: 68px;
        height: 68px;
        margin-bottom: 18px !important;
        border-radius: 20px;
        font-size: 31px;
    }

    .yc-shortcode-worksteps--image::before {
        border-radius: 25px;
    }

    .yc-shcode--worksteps--info h3 {
        font-size: 18px;
    }

    .yc-shcode--worksteps--info p {
        font-size: 14px;
        line-height: 1.75;
    }

    .yc-shcode--work-steps .--short--code--title {
        font-size: 24px;
    }

    .yc-shcode--work-steps .--short--code--content {
        font-size: 15px;
    }
}

@media (max-width: 420px) {
    .yc-shcode--single-worksteps-item {
        padding: 20px 15px !important;
        border-radius: 18px;
    }

    .yc-shortcode-worksteps--image {
        width: 60px;
        height: 60px;
        border-radius: 17px;
        font-size: 27px;
    }

    .yc-shortcode-worksteps--image::before {
        inset: -6px;
        border-radius: 22px;
    }

    .yc-shcode--worksteps--info h3 {
        font-size: 17px;
    }

    .yc-shcode--worksteps--info p {
        font-size: 13px;
    }
}