This was quite a challenge. I'm relieved I was able to do this project.
I would like to fix/improve some details that are quite not similar to the design preview in my code:
- I was unable to separate the Instruction bullet point and the Info. As you can see in the preview there are two columns in the Instruction part. One for the bullets points and another for the Info. I tried to do that part with grid-properties.
.list-item {
.list-item {
display: grid;
grid-template-columns: 1fr auto;
But it didn't work. That is why I only commented it.
Also, I would appreciate any kind of advice and improvements!