.miko-process-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    position: relative;
}

.miko-step-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.miko-step-number {
    font-size: 90px;
    font-weight: 800;
    color: #d9e48b;
    line-height: 1;
    margin-bottom: -40px;
}

.miko-step-image{
    text-align: center;
}

.miko-step-image .avatar{
    display: inline-block;
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #F7FAF9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    border: 1px solid #0F3D3E;
    overflow: hidden;
}
.miko-step-image .avatar img{
    width: 100%;
    height: 100%;
    object-fit: none;
    position: absolute;
    top: 0;
    left: 0;
}

.miko-step-title {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.miko-step-desc {
    font-size: 15px;
    color: #555;
    max-width: 280px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .miko-process-wrapper{
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .miko-step-image .avatar{
        margin-bottom: 1rem;
    }
}