.step-block {
    position: relative;
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-sizing: border-box;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.step-block-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.step-block-badge {
    display: inline-block;
    font-family: 'Commissioner', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(14px, calc(14px + (18 - 14) * ((100vw - 575px) / (1920 - 575))), 18px);
    line-height: 100%;
    letter-spacing: -4%;
    color: #fff;
    background: #353331;
    border-radius: 7px;
    padding: 10px 18px;
    text-align: center;
    leading-trim: CAP_HEIGHT;
    margin-bottom: 24px;
    width: fit-content;
}
.step-block-icon-wrap-bg {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 64px;
    height: 64px;
    background: #f5f5f5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-block-icon-wing-left {
    position: absolute;
    top: 0;
    right: 54px;
    width: 10px;
    height: 10px;
    transform: rotate(270deg);
}
.step-block-icon-wing-bottom {
    position: absolute;
    top: 54px;
    right: 0;
    transform: rotate(270deg);
    width: 10px;
    height: 10px;
}
.step-block-icon-wing-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.step-block-icon-wrap {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
    background: #D9D9D9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px -2px 4px 0px #00000040 inset, 0px 2px 4px 0px #FFFFFF66 inset;
}
.step-block-icon-wrap img {
    width: 25px;
    height: 25px;
    display: block;
}
.step-block-subtitle {
    font-family: 'Commissioner', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(26px, calc(26px + (32 - 26) * ((100vw - 575px) / (1920 - 575))), 32px);
    line-height: 85%;
    letter-spacing: -3%;
    color: #353331;
    leading-trim: CAP_HEIGHT;
    margin-bottom: 16px;
    margin-top: 0;
}
.step-block-text {
    font-family: 'Commissioner', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(16px, calc(16px + (22 - 16) * ((100vw - 575px) / (1920 - 575))), 22px);
    line-height: 90%;
    letter-spacing: -3%;
    color: #9C9B9A;
    leading-trim: CAP_HEIGHT;
    margin: 0;
}
.partners-steps-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 991px) {
    .step-block {
        padding: 30px;
    }
    .step-block-badge {
        font-size: 18px;
    }
    .step-block-subtitle {
        font-size: 32px;
    }
    .step-block-text {
        font-size: 22px;
    }
    .partners-steps-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}
@media (max-width: 575px) {
    .step-block {
        padding: 20px;
    }
    .step-block-badge {
        font-size: 14px;
        padding: 10px 14px;
    }
    .step-block-subtitle {
        font-size: 26px;
    }
    .step-block-text {
        font-size: 16px;
    }
    .step-block-icon-wrap {
        width: 36px;
        height: 36px;
        top: 10px;
        right: 10px;
    }
} 