.spice-process {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    padding: 42px 46px 44px;
    background: #ffffff;
    border: 1px solid #d9d9d9;
    border-radius: 16px;
    box-shadow: 0 7px 26px rgba(0, 0, 0, .025);
    font-family: inherit;
    overflow: hidden;
}

.spice-process::before {
    content: "";
    position: absolute;
    top: 0;
    left: 46px;
    width: 58px;
    height: 3px;
    background: #333333;
}

.spice-process__eyebrow {
    display: block;
    margin: 0 0 12px;
    font-size: 9px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .20em;
    text-transform: uppercase;
    color: #9b9d9f;
}

.spice-process__title {
    display: block;
    margin: 0;
    font-size: clamp(25px, 2.7vw, 34px);
    line-height: 1.12;
    font-weight: 500;
    letter-spacing: -.035em;
    color: #303030;
}

.spice-process__intro {
    display: block;
    max-width: 780px;
    margin: 14px 0 0;
    font-size: 14px;
    line-height: 1.72;
    color: #858789;
}

.spice-process__intro a,
.spice-process__step-text a {
    color: #3d3d3d;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.spice-process__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 14px;
    margin-top: 31px;
}

.spice-process__step {
    position: relative;
    min-width: 0;
    box-sizing: border-box;
    padding: 22px 20px 23px;
    background: #f7f7f7;
    border: 1px solid #dedede;
    border-radius: 13px;
    overflow: hidden;
}

.spice-process__step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #d2d2d2;
}

.spice-process__step-head {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
}

.spice-process__number {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    border: 1px solid #cfcfcf;
    border-radius: 50%;
    background: #ffffff;
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .08em;
    color: #555759;
}

.spice-process__step-title {
    min-width: 0;
    margin: 0;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 550;
    letter-spacing: -.02em;
    color: #343434;
}

.spice-process__step-text {
    margin: 15px 0 0;
    font-size: 13px;
    line-height: 1.68;
    color: #7c7e80;
}

@media (max-width: 760px) {
    .spice-process {
        padding: 36px 30px 38px;
    }

    .spice-process::before {
        left: 30px;
    }

    .spice-process__steps {
        grid-template-columns: 1fr;
    }

    .spice-process__step {
        padding: 20px 19px 21px;
    }
}

@media (max-width: 580px) {
    .spice-process {
        padding: 34px 24px 35px;
        border-radius: 14px;
    }

    .spice-process::before {
        left: 24px;
    }

    .spice-process__title {
        font-size: 25px;
    }

    .spice-process__intro {
        font-size: 13px;
    }

    .spice-process__steps {
        gap: 11px;
        margin-top: 26px;
    }

    .spice-process__number {
        width: 36px;
        height: 36px;
        font-size: 9px;
    }

    .spice-process__step-title {
        font-size: 16px;
    }

    .spice-process__step-text {
        margin-top: 12px;
    }
}
