.m-steps__item-text {
    font-size:clamp(1rem, 3vw, 24px);
}

.m-steps__header {
    margin: 0 auto 3rem;
    text-align: center;
}

.m-steps__text {
    max-width: 940px;
    margin: 0 auto;
}

.m-steps__text p:last-child {
    margin-bottom: 0;
}

.m-steps__list {
    justify-content: center;
    row-gap: 2.5rem;
}

.m-steps__item {
    text-align: center;
}

.m-steps__card {
    height: 100%;
}

.m-steps__number {
   font-family: 'CabinetGrotesk-Variable', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    background: var(--vt-color-primary);
    color: #fff;
    font-weight: 800;
    font-size: 2.4rem;
    line-height: 1;
    box-shadow: var(--vt-box-shadow-normal);
}

@media (max-width: 991.98px) {
    .m-steps__header {
        margin-bottom: 2.5rem;
    }

}

@media (max-width: 767.98px) {
    .m-steps__number {
        width: 68px;
        height: 68px;
    }

}