@media screen and (min-width: 0px) {
    .roadmaps-list {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 1em;
    }
}

@media screen and (min-width: 1390px) {
    .roadmaps-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
        width: 100%;
        gap: 1em;
    }
}

.roadmaps-inner {
    display: flex;
    flex-direction: column;
    gap: 0.4em;
}

.roadmaps-items {
    display: flex;
    justify-items: stretch;
    align-items: center;
    justify-content: space-between;
    padding: 1em;
    border-radius: 8px;
    background: #ffffff08;
}

.roadmaps-items p {
    margin-bottom: 0;
}

.wrap {
    max-width: 90%;
    margin: 0 auto;
}

.roadmaps-items .material-symbols-rounded {
    font-size: 24px;
}