.step-card {
    background: #ECECEC;
    padding: 20px;
    overflow: hidden;
    border-radius: 16px;
}
.step-card + .step-card {
    margin-top: 12px;
}

.step-card-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.step-card-text {
    padding: 4px 0 4px 4px;
    width: 100%;
}

.step-card-image {
    height: 100%;
    width: 100%;
    flex: none;
    max-width: 130px;
    border-radius: 13px;
    overflow: hidden;
}

.step-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.step-numb {
    border: 2px solid #1B1918;
    color: #1B1918;
    text-align: center;
    font-family: "DejaVu Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    border-radius: 500px;
    padding: 8px 12px;
}

.step-card-top h2 {
    font-family: "DejaVu Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    color: #1B1918;
    margin: 0;
    padding: 0;
}

.step-description {
    font-family: "DejaVu Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: rgb(27 25 24 / 40%);
}